Replace references to branch master with main (#423)

* Replace master with main

* lingering references
This commit is contained in:
Andres Paz 2020-09-16 13:10:14 -07:00 коммит произвёл GitHub
Родитель 834ed952db
Коммит ce9842d8f6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
214 изменённых файлов: 264 добавлений и 263 удалений

Просмотреть файл

@ -1,5 +1,5 @@
{
// Use the latest Docker image built from the master branch of this repo.
// Use the latest Docker image built from the main branch of this repo.
// You may also prefer to use the Dockerfile for that image directly if you
// would like to make and test local changes to that image. To do so,
// the "image" property with:

2
.github/workflows/main.yml поставляемый
Просмотреть файл

@ -3,7 +3,7 @@ name: Prebuild Docker image
on:
push:
branches:
- master
- main
jobs:
build:

Просмотреть файл

@ -5,7 +5,7 @@ repos:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: no-commit-to-branch
args: [-b, "master"]
args: [-b, "main"]
- id: check-yaml
- repo: local
hooks:

Просмотреть файл

@ -1,5 +1,5 @@
# Start from the IQ# base image. The definition for this image can be found at
# https://github.com/microsoft/iqsharp/blob/master/images/iqsharp-base/Dockerfile.
# https://github.com/microsoft/iqsharp/blob/main/images/iqsharp-base/Dockerfile.
# As per Binder documentation, we choose to use an SHA sum here instead of a
# tag.
FROM mcr.microsoft.com/quantum/iqsharp-base:0.12.20082513

Просмотреть файл

@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json",
"$id": "https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json",
"title": "Broombridge Schema",
"definitions": {
@ -70,7 +70,7 @@
"$schema": {
"type": "string",
"enum": [
"https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json"
"https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json"
]
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json",
"$id": "https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json",
"title": "Broombridge Schema",
"definitions": {
@ -70,7 +70,7 @@
"$schema": {
"type": "string",
"enum": [
"https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json"
"https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json"
]
},

Просмотреть файл

@ -2,11 +2,12 @@
# Build configuration file to run build on azure-pipelines
#
name: $(Build.Major).$(Build.Minor).$(BuildId)
trigger:
- master
- main
pr:
- master
- main
- feature/*
variables:

Просмотреть файл

@ -65,10 +65,10 @@ Press Start in Visual Studio to run the sample.
## Manifest
- [Game.qs](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/chsh-game/Game.qs): Q# code implementing the game.
- [host.py](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/chsh-game/host.py): Python host program to call into the Q# sample.
- [Host.cs](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/chsh-game/Host.cs): C# code to call the operations defined in Q#.
- [CHSHGame.csproj](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/chsh-game/CHSHGame.csproj): Main C# project for the sample.
- [Game.qs](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/chsh-game/Game.qs): Q# code implementing the game.
- [host.py](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/chsh-game/host.py): Python host program to call into the Q# sample.
- [Host.cs](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/chsh-game/Host.cs): C# code to call the operations defined in Q#.
- [CHSHGame.csproj](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/chsh-game/CHSHGame.csproj): Main C# project for the sample.
## Further resources

Просмотреть файл

@ -19,7 +19,7 @@ ancillas](http://iopscience.iop.org/article/10.1088/1367-2630/16/3/033040/meta),
*New J. of Phys.* **16**, 033040, 2014].
This sample describes in detail the underlying concepts that were used to implement
the following operations from the [Q# Standard library](https://github.com/microsoft/QuantumLibraries/tree/master/Standard):
the following operations from the [Q# Standard library](https://github.com/microsoft/QuantumLibraries/tree/main/Standard):
- [Microsoft.Quantum.Canon.ApplyAnd](https://docs.microsoft.com/qsharp/api/qsharp/microsoft.quantum.canon.applyand)
- [Microsoft.Quantum.Synthesis.ApplyXControlledOnTruthTable](https://docs.microsoft.com/qsharp/api/qsharp/microsoft.quantum.synthesis.applyxcontrolledontruthtable)

Просмотреть файл

@ -60,6 +60,6 @@ Press Start in Visual Studio to run the sample.
## Manifest
- [ReversibleLogicSynthesis.qs](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.qs): Main Q# code for this sample.
- [host.py](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/reversible-logic-synthesis/host.py): Python host program to call into the Q# sample.
- [ReversibleLogicSynthesis.csproj](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/reversible-logic-synthesis/CHSHGame.csproj): Main Q# project for the sample.
- [ReversibleLogicSynthesis.qs](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.qs): Main Q# code for this sample.
- [host.py](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/reversible-logic-synthesis/host.py): Python host program to call into the Q# sample.
- [ReversibleLogicSynthesis.csproj](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/reversible-logic-synthesis/CHSHGame.csproj): Main Q# project for the sample.

Просмотреть файл

@ -23,7 +23,7 @@ namespace Microsoft.Quantum.Samples.ReversibleLogicSynthesis {
/// Details on reversible logic synthesis and the operation
/// that applies a permutation to the quantum state can be found
/// in the Q# Standard library:
/// https://github.com/microsoft/QuantumLibraries/blob/master/Standard/src/Synthesis/TransformationBased.qs
/// https://github.com/microsoft/QuantumLibraries/blob/main/Standard/src/Synthesis/TransformationBased.qs
///
/// # Input
/// ## perm

Просмотреть файл

@ -11,11 +11,11 @@ description: "This sample implements Grover's search algorithm, an example of a
This sample implements Grover's search algorithm, an example of a quantum development technique known as _amplitude amplification_.
Oracles implementing the database are explicitly constructed together with all steps of the algorithm.
See the [DatabaseSearch](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/database-search/README.md) sample for and extended version and the [Grover Search Kata](https://github.com/microsoft/QuantumKatas/tree/master/GroversAlgorithm) to learn more about Grover's algorithm and how to implement it in Q#.
See the [DatabaseSearch](https://github.com/microsoft/Quantum/blobmain/samples/algorithms/database-search/README.md) sample for and extended version and the [Grover Search Kata](https://github.com/microsoft/QuantumKatas/tree/main/GroversAlgorithm) to learn more about Grover's algorithm and how to implement it in Q#.
This sample uses the example of an operation that marks inputs of the form "010101…", then uses Grover's algorithm to find these inputs given only the ability to call that operation.
In this case, the sample uses a hard-coded operation, but operations and functions in the [Microsoft.Quantum.AmplitudeAmplification namespace](https://docs.microsoft.com/qsharp/api/qsharp/microsoft.quantum.amplitudeamplification) can be used to efficiently and easily construct different inputs to Grover's algorithm, and to quickly build up useful variations of amplitude amplification for different applications.
For examples of how to solve more general problems using amplitude amplification, check out the more in-depth [database search sample](https://github.com/microsoft/Quantum/tree/master/samples/algorithms/database-search).
For examples of how to solve more general problems using amplitude amplification, check out the more in-depth [database search sample](https://github.com/microsoft/Quantum/tree/main/samples/algorithms/database-search).
## Prerequisites ##
@ -42,6 +42,6 @@ Press Start in Visual Studio to run the sample.
## Manifest ##
- [SimpleGrover.qs](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/simple-grover/SimpleGrover.qs): Q# code implementing quantum operations for this sample.
- [Reflections.qs](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/simple-grover/Reflections.qs): Q# code implementing quantum operations for this sample.
- [SimpleGroverSample.csproj](https://github.com/microsoft/Quantum/blob/master/samples/algorithms/simple-grover/SimpleGroverSample.csproj): Main Q# project for the sample.
- [SimpleGrover.qs](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/simple-grover/SimpleGrover.qs): Q# code implementing quantum operations for this sample.
- [Reflections.qs](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/simple-grover/Reflections.qs): Q# code implementing quantum operations for this sample.
- [SimpleGroverSample.csproj](https://github.com/microsoft/Quantum/blob/main/samples/algorithms/simple-grover/SimpleGroverSample.csproj): Main Q# project for the sample.

Просмотреть файл

@ -314,7 +314,7 @@ namespace Microsoft.Quantum.Samples.ColoringGroverWithConstraints {
/// Int Array giving the color of each vertex.
///
/// # Remarks
/// See https://github.com/microsoft/QuantumKatas/tree/master/SolveSATWithGrover
/// See https://github.com/microsoft/QuantumKatas/tree/main/SolveSATWithGrover
/// for original implementation in SolveSATWithGrover Kata.
operation FindColorsWithGrover (numVertices : Int, bitsPerColor : Int, maxIterations : Int,
oracle : ((Qubit[], Qubit) => Unit is Adj)) : Int[] {
@ -360,7 +360,7 @@ namespace Microsoft.Quantum.Samples.ColoringGroverWithConstraints {
/// The oracle which will mark the valid solutions.
///
/// # Remarks
/// See https://github.com/microsoft/QuantumKatas/tree/master/SolveSATWithGrover
/// See https://github.com/microsoft/QuantumKatas/tree/main/SolveSATWithGrover
/// for the original implementation from the SolveSATWithGrover kata.
operation ApplyPhaseOracle (oracle : ((Qubit[], Qubit) => Unit is Adj),
register : Qubit[]) : Unit is Adj {

Просмотреть файл

@ -73,7 +73,7 @@ However, trying to use more than 8 qubits (2 empty squares) in a simulation beco
so here we only run it for 1 or 2 missing squares in a 9x9 puzzle.
The graph coloring code is based on the [Graph Coloring Kata](https://github.com/microsoft/QuantumKatas/tree/master/GraphColoring)
The graph coloring code is based on the [Graph Coloring Kata](https://github.com/microsoft/QuantumKatas/tree/main/GraphColoring)
with the following changes
- allow for varying qubits per color

Просмотреть файл

@ -24,6 +24,6 @@ To run the sample, use the `dotnet run` command from your terminal.
## Manifest
- [PhaseEstimationSample.csproj](https://github.com/microsoft/Quantum/tree/master/samples/characterization/phase-estimation/PhaseEstimationSample.csproj): Main Q# project for the example.
- [BayesianPhaseEstimation.qs](https://github.com/microsoft/Quantum/tree/master/samples/characterization/phase-estimation/BayesianPhaseEstimation.qs): The Q# implementation of iterative phase estimation and Bayesian inference.
- [Program.qs](https://github.com/microsoft/Quantum/tree/master/samples/characterization/phase-estimation/Program.qs): Q# entry point to interact with and print out results of the Q# operations for this sample.
- [PhaseEstimationSample.csproj](https://github.com/microsoft/Quantum/tree/main/samples/characterization/phase-estimation/PhaseEstimationSample.csproj): Main Q# project for the example.
- [BayesianPhaseEstimation.qs](https://github.com/microsoft/Quantum/tree/main/samples/characterization/phase-estimation/BayesianPhaseEstimation.qs): The Q# implementation of iterative phase estimation and Bayesian inference.
- [Program.qs](https://github.com/microsoft/Quantum/tree/main/samples/characterization/phase-estimation/Program.qs): Q# entry point to interact with and print out results of the Q# operations for this sample.

Просмотреть файл

@ -1,4 +1,4 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json
bibliography:
- {url: 'https://'}
format: {version: '0.2'}

Просмотреть файл

@ -1,4 +1,4 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,6 +1,6 @@
# <20> Microsoft
# MIT license
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json
format:
version: "0.2" # required. Must match exactly

Просмотреть файл

@ -1,6 +1,6 @@
# This is a minimal example of valid Broombridge containing only required parameters.
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.2.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.2.schema.json
format:
version: "0.2"

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Просмотреть файл

@ -1,5 +1,5 @@
"$schema": https://raw.githubusercontent.com/Microsoft/Quantum/master/Chemistry/Schema/broombridge-0.1.schema.json
"$schema": https://raw.githubusercontent.com/microsoft/Quantum/main/Chemistry/Schema/broombridge-0.1.schema.json
bibliography:
- {url: 'https://www.nwchem-sw.org'}

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше