├── .devcontainer
├── README.md
└── devcontainer.json
├── .editorconfig
├── .gitattributes
├── .github
├── ISSUE_TEMPLATE
│ └── bug_report.md
├── problem-matchers
│ ├── markdown-link-check.json
│ └── markdownlint.json
└── workflows
│ ├── .config
│ └── dotnet-tools.json
│ ├── NuGet.Config
│ ├── Test-SampleLayout.ps1
│ ├── check-pull-request.yml
│ ├── devskim.yml
│ ├── filter_sample_frontmatter.csx
│ ├── gh-sync.yml
│ ├── hosted-notebook-samples-check.yml
│ ├── link-check-config.json
│ ├── lock-master.yml
│ ├── omnisharp.json
│ ├── prebuild-docker.yml
│ ├── prepare-samples.yml
│ └── test-docker-image-build.yml
├── .gitignore
├── .markdownlint.yaml
├── .pre-commit-config.yaml
├── .sscignore
├── .vscode
├── extensions.json
└── settings.json
├── Build
├── build.ps1
├── check_indents.py
├── clean.ps1
├── images
│ └── samples
│ │ └── Dockerfile
├── pack.ps1
├── qdk-tools.psm1
├── set-env.ps1
├── steps.yml
└── test.ps1
├── CONTRIBUTING.md
├── Chemistry
└── Schema
│ ├── README.md
│ ├── broombridge-0.1.schema.json
│ ├── broombridge-0.2.schema.json
│ ├── requirements.txt
│ └── validator.py
├── Dockerfile
├── LICENSE.txt
├── NuGet.config
├── README.md
├── binder-index.md
├── cspell.json
├── docs
└── images
│ └── Codespaces_settings.png
├── global.json
├── samples
├── algorithms
│ ├── README.md
│ ├── algorithms.sln
│ ├── chsh-game
│ │ ├── CHSHGame.csproj
│ │ ├── Game.qs
│ │ ├── Program.qs
│ │ └── README.md
│ ├── database-search
│ │ ├── Database Search.ipynb
│ │ ├── DatabaseSearch.qs
│ │ ├── DatabaseSearchSample.csproj
│ │ ├── Program.qs
│ │ ├── README.md
│ │ └── environment.yml
│ ├── integer-factorization
│ │ ├── Compare.qs
│ │ ├── FlameGraphCounter.cs
│ │ ├── FlameGraphResourcesEstimator.cs
│ │ ├── IntegerFactorization.csproj
│ │ ├── Modular.qs
│ │ ├── Program.cs
│ │ ├── QuantumVizCounter.cs
│ │ ├── QuantumVizEstimator.cs
│ │ ├── README.md
│ │ ├── Shor.qs
│ │ ├── Utils.qs
│ │ └── host.py
│ ├── noisy-amp-est
│ │ ├── NoisyAmpEst.ipynb
│ │ └── README.md
│ ├── noisy-dj
│ │ ├── Deutsch–Jozsa with Noise.ipynb
│ │ └── README.md
│ ├── oracle-synthesis
│ │ ├── OracleSynthesis.csproj
│ │ ├── OracleSynthesis.qs
│ │ ├── Program.qs
│ │ └── README.md
│ ├── order-finding
│ │ ├── OrderFinding.csproj
│ │ ├── OrderFinding.qs
│ │ ├── Program.qs
│ │ └── README.md
│ ├── order_finding.py
│ ├── repeat-until-success
│ │ ├── Program.qs
│ │ ├── README.md
│ │ ├── RUS.png
│ │ ├── RepeatUntilSuccess.csproj
│ │ ├── SimpleRUS.png
│ │ ├── SimpleRUS.qs
│ │ └── VGateRUS.qs
│ ├── reversible-logic-synthesis
│ │ ├── Host.qs
│ │ ├── README.md
│ │ ├── ReversibleLogicSynthesis.csproj
│ │ ├── ReversibleLogicSynthesis.qs
│ │ └── host.py
│ ├── simple-grover
│ │ ├── README.md
│ │ ├── Reflections.qs
│ │ ├── SimpleGrover.qs
│ │ └── SimpleGroverSample.csproj
│ ├── sudoku-grover
│ │ ├── ColoringGroverWithConstraints.qs
│ │ ├── Program.cs
│ │ ├── README.md
│ │ ├── Sudoku.qs
│ │ ├── SudokuClassic.cs
│ │ ├── SudokuGroverSample.csproj
│ │ └── SudokuQuantum.cs
│ └── variational-algorithms
│ │ ├── .iqsharp-config.json
│ │ ├── Optimization.qs
│ │ ├── README.md
│ │ ├── Variational Quantum Algorithms.ipynb
│ │ ├── VariationalAlgorithms.csproj
│ │ └── environment.yml
├── arithmetic
│ └── quantum-adders
│ │ ├── AdderExample.ipynb
│ │ └── README.md
├── azure-quantum
│ ├── CONTRIBUTING.md
│ ├── README.md
│ ├── adapting-code
│ │ ├── README.md
│ │ └── adapting-qiskit-sample.ipynb
│ ├── azure-quantum.sln
│ ├── check-ghz
│ │ ├── CheckGHZ.csproj
│ │ ├── CheckGHZ.ipynb
│ │ ├── CheckGHZ.qs
│ │ └── README.md
│ ├── chemistry
│ │ ├── Hamiltonian
│ │ │ ├── Approximate Energy using Jordan-Wigner transformation.ipynb
│ │ │ ├── GetHamiltonianTerm.qs
│ │ │ ├── Hamiltonian.csproj
│ │ │ └── NuGet.config
│ │ ├── QuantumPhaseEstimation
│ │ │ ├── GetEnergyQPE.qs
│ │ │ ├── GetEnergyVQE.qs
│ │ │ ├── Molecule.csproj
│ │ │ └── Molecule.ipynb
│ │ ├── README.md
│ │ └── data
│ │ │ ├── broombridge
│ │ │ ├── HHO.yaml
│ │ │ ├── caffeine.yaml
│ │ │ ├── hydrogen_0.2.yaml
│ │ │ └── pyridine.yaml
│ │ │ └── xyz
│ │ │ ├── Pb3O4_vib.xyz
│ │ │ ├── bcarotine.xyz
│ │ │ ├── c2h410.xyz
│ │ │ ├── caffeine.xyz
│ │ │ ├── femoco.xyz
│ │ │ ├── h2.xyz
│ │ │ └── pyridine.xyz
│ ├── grover
│ │ ├── Grover.csproj
│ │ ├── Grover.ipynb
│ │ ├── README.md
│ │ ├── Reflections.qs
│ │ └── SimpleGrover.qs
│ ├── hello-world
│ │ ├── HW-ionq-cirq.ipynb
│ │ ├── HW-ionq-qiskit.ipynb
│ │ ├── HW-ionq-qsharp.ipynb
│ │ ├── HW-quantinuum-cirq.ipynb
│ │ ├── HW-quantinuum-qiskit.ipynb
│ │ ├── HW-quantinuum-qsharp.ipynb
│ │ ├── HW-rigetti-qiskit.ipynb
│ │ ├── HW-rigetti-qsharp.ipynb
│ │ └── README.md
│ ├── hidden-shift
│ │ ├── HiddenShift.csproj
│ │ ├── HiddenShift.qs
│ │ ├── README.md
│ │ └── hidden-shift.ipynb
│ ├── ising-model
│ │ ├── IsingModel.csproj
│ │ ├── IsingModel.qs
│ │ └── README.md
│ ├── iterative-phase-estimation
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── iterative-phase-estimation.csproj
│ │ ├── iterative-phase-estimation.ipynb
│ │ └── iterative-phase-estimation.qs
│ ├── parallel-qrng
│ │ ├── ParallelQrng.csproj
│ │ ├── ParallelQrng.ipynb
│ │ ├── ParallelQrng.qs
│ │ ├── README.md
│ │ ├── demo.md
│ │ └── parallel_qrng.py
│ ├── qsp
│ │ ├── README.md
│ │ └── qsp.ipynb
│ ├── repeat-until-success
│ │ ├── README.md
│ │ └── repeat-until-success.ipynb
│ ├── resource-estimation
│ │ ├── README.md
│ │ ├── advanced-estimation.ipynb
│ │ ├── estimation-chemistry.ipynb
│ │ ├── estimation-dynamics.ipynb
│ │ ├── estimation-factoring.ipynb
│ │ ├── estimation-profiling.ipynb
│ │ ├── estimation-qir.ipynb
│ │ ├── estimation-qiskit.ipynb
│ │ ├── estimation-qsharp.ipynb
│ │ ├── estimation-time-qubits-constraints.ipynb
│ │ ├── integer-factorization-with-cli
│ │ │ ├── Program.qs
│ │ │ ├── README.md
│ │ │ ├── integer-factorization.csproj
│ │ │ ├── jobParams.json
│ │ │ └── jobParamsBatching.json
│ │ ├── profile_cla_qubits.png
│ │ ├── profile_cla_runtime.png
│ │ ├── profile_rca_qubits.png
│ │ ├── profile_rca_runtime.png
│ │ └── resource-estimation.sln
│ ├── sessions
│ │ ├── README.md
│ │ └── introduction-to-sessions.ipynb
│ ├── shorter-quantum-circuits
│ │ ├── README.md
│ │ └── shorter-quantum-circuits-dataset.ipynb
│ ├── teleport
│ │ ├── README.md
│ │ ├── Teleport.csproj
│ │ └── Teleport.qs
│ ├── three-qubit-repetition-code
│ │ ├── README.md
│ │ ├── ThreeQubitRepetitionCode.csproj
│ │ ├── ThreeQubitRepetitionCode.ipynb
│ │ └── ThreeQubitRepetitionCode.qs
│ ├── utilities
│ │ ├── README.md
│ │ └── storage-data-management.ipynb
│ └── variational-quantum-eigensolver
│ │ ├── README.md
│ │ ├── VQE-qiskit-hydrogen-ionq-sim.ipynb
│ │ ├── VQE-qiskit-hydrogen-quantinuum-emulator.ipynb
│ │ └── VQE-qiskit-hydrogen-session.ipynb
├── characterization
│ ├── README.md
│ ├── characterization.sln
│ ├── phase-estimation
│ │ ├── BayesianPhaseEstimation.qs
│ │ ├── PhaseEstimationSample.csproj
│ │ ├── Program.qs
│ │ └── README.md
│ ├── process-tomography
│ │ ├── README.md
│ │ ├── environment.yml
│ │ └── tomography-sample.ipynb
│ └── randomized-benchmarking
│ │ ├── Inference.qs
│ │ ├── Math.qs
│ │ ├── README.md
│ │ ├── RandomizedBenchmarking.csproj
│ │ ├── environment.yml
│ │ └── randomized-benchmarking.ipynb
├── chemistry
│ ├── AnalyzeHamiltonian
│ │ ├── 1-AnalyzeHamiltonian.csproj
│ │ ├── Program.cs
│ │ └── host.py
│ ├── CreateHubbardHamiltonian
│ │ ├── CreateHubbardHamiltonian.csproj
│ │ ├── Program.cs
│ │ └── README.md
│ ├── GetGateCount
│ │ ├── .gitignore
│ │ ├── 3-GetGateCount.csproj
│ │ ├── Configuration.cs
│ │ ├── Extensions.cs
│ │ ├── GetGateCount.cs
│ │ ├── Operation.qs
│ │ ├── Out-Plot.ps1
│ │ ├── PowerShellIntegration.cs
│ │ ├── Program.cs
│ │ └── README.md
│ ├── IntegralData
│ │ ├── Broombridge_v0.2
│ │ │ ├── H2_sto-3g.yaml
│ │ │ ├── LiH_sto-3g.yaml
│ │ │ ├── broombridge_v0.2.yaml
│ │ │ └── broombridge_v0.2_minimal.yaml
│ │ ├── Liquid
│ │ │ ├── AL_sto6g.dat
│ │ │ ├── Ar_sto6g.dat
│ │ │ ├── B_sto6g.dat
│ │ │ ├── BeH2_sto6g_14.dat
│ │ │ ├── Be_sto6g_10.dat
│ │ │ ├── CH4frz_sto6g_16.dat
│ │ │ ├── C_sto6g.dat
│ │ │ ├── Cl_sto6g.dat
│ │ │ ├── Coalesce.7z
│ │ │ ├── F2_sto6g_20.dat
│ │ │ ├── ch4_sto6g_18.dat
│ │ │ ├── co2_dzvp_90.dat
│ │ │ ├── co2_p321_54.dat
│ │ │ ├── co2_p631ss_90.dat
│ │ │ ├── co2_sto3g_30.dat
│ │ │ ├── co_sto6g_20.dat
│ │ │ ├── dbg.dat
│ │ │ ├── dis_F2.dat
│ │ │ ├── dis_H2.dat
│ │ │ ├── dis_H2O.dat
│ │ │ ├── dis_H2Oc1.dat
│ │ │ ├── dis_N2.dat
│ │ │ ├── dis_O2.dat
│ │ │ ├── dis_o3.dat
│ │ │ ├── distketen_tzvp_14_12.dat
│ │ │ ├── distketen_tzvp_6_8.dat
│ │ │ ├── fe2s2_sto3g.dat
│ │ │ ├── h2_sto3g_4.dat
│ │ │ ├── h2o_sto6g_14.dat
│ │ │ ├── h2s_sto6g_22.dat
│ │ │ └── nitrogenase_tzvp_54.dat
│ │ ├── LiquidSelected
│ │ │ ├── AL_sto6g
│ │ │ ├── Ar_sto6g
│ │ │ ├── B_sto6g
│ │ │ ├── BeH2_sto6g
│ │ │ ├── Be_sto6g
│ │ │ ├── C_sto6g
│ │ │ ├── Cl_sto6g
│ │ │ ├── F2_sto6g
│ │ │ ├── ch4_sto6g
│ │ │ ├── co_sto6g
│ │ │ └── h2o_sto6g
│ │ ├── README.md
│ │ └── YAML
│ │ │ ├── Ar
│ │ │ └── ar_ccpvdz.yaml
│ │ │ ├── BETA_CAROTENE
│ │ │ └── beta_carotene_6_311G_eomccsd_16_4_4.yaml
│ │ │ ├── B_6_31G_FCI
│ │ │ └── b_6-31g_fci.yaml
│ │ │ ├── BeH2_6-31g_FCI
│ │ │ └── beh2_6-31g_fci.yaml
│ │ │ ├── Be_631G_FCI
│ │ │ └── be_6-31g_fci.yaml
│ │ │ ├── Be_ccpvdz
│ │ │ └── be_ccpvdz.yaml
│ │ │ ├── C20
│ │ │ ├── c20_bowl_ccpvdz_17_7_7.yaml
│ │ │ ├── c20_bowl_sto3g.nw.out.yaml
│ │ │ ├── c20_fullerene_ccpvdz_17_7_7.yaml
│ │ │ ├── c20_fullerene_sto3g.nw.out.yaml
│ │ │ ├── c20_ring_ccpvdz_17_7_7.yaml
│ │ │ └── c20_ring_sto3g.nw.out.yaml
│ │ │ ├── CH4_STO6G_FCI
│ │ │ └── ch4_sto6g_fci.yaml
│ │ │ ├── CYTOSINE
│ │ │ └── cytosine_6-31g.yaml
│ │ │ ├── F2
│ │ │ └── f2_6-31g.yaml
│ │ │ ├── H2O
│ │ │ ├── h2o_oh0.7_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh0.8_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh0.9572_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh0.9_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh1.0_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh1.1_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh1.3_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh1.5_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh1.7_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh2.0_sto3g.nw.out.yaml
│ │ │ ├── h2o_oh2.5_sto3g.nw.out.yaml
│ │ │ └── h2o_oh3.0_sto3g.nw.out.yaml
│ │ │ ├── H2O_PES
│ │ │ ├── h2o_oh0.7_sto3g.yaml
│ │ │ ├── h2o_oh0.8_sto3g.yaml
│ │ │ ├── h2o_oh0.9572_sto3g.yaml
│ │ │ ├── h2o_oh0.9_sto3g.yaml
│ │ │ ├── h2o_oh1.0_sto3g.yaml
│ │ │ ├── h2o_oh1.1_sto3g.yaml
│ │ │ ├── h2o_oh1.3_sto3g.yaml
│ │ │ ├── h2o_oh1.5_sto3g.yaml
│ │ │ ├── h2o_oh1.7_sto3g.yaml
│ │ │ ├── h2o_oh2.0_sto3g.yaml
│ │ │ ├── h2o_oh2.5_sto3g.yaml
│ │ │ └── h2o_oh3.0_sto3g.yaml
│ │ │ ├── H2_n
│ │ │ ├── h2_2_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_2_sto6g_1.0au.yaml
│ │ │ ├── h2_3_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_3_sto6g_1.0au.yaml
│ │ │ ├── h2_4_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_4_sto6g_1.0au.yaml
│ │ │ ├── h2_5_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_5_sto6g_1.0au.yaml
│ │ │ ├── h2_6_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_6_sto6g_1.0au.yaml
│ │ │ ├── h2_7_sto6g_1.0au.nw.out.yaml
│ │ │ ├── h2_7_sto6g_1.0au.yaml
│ │ │ ├── h2_8_sto6g_1.0au.nw.out.yaml
│ │ │ └── h2_8_sto6g_1.0au.yaml
│ │ │ ├── H4
│ │ │ ├── h4_sto6g_0.000.nw.out.yaml
│ │ │ ├── h4_sto6g_0.000.yaml
│ │ │ ├── h4_sto6g_0.001.nw.out.yaml
│ │ │ ├── h4_sto6g_0.001.yaml
│ │ │ ├── h4_sto6g_0.010.nw.out.yaml
│ │ │ ├── h4_sto6g_0.010.yaml
│ │ │ ├── h4_sto6g_0.050.nw.out.yaml
│ │ │ ├── h4_sto6g_0.050.yaml
│ │ │ ├── h4_sto6g_0.100.nw.out.yaml
│ │ │ ├── h4_sto6g_0.100.yaml
│ │ │ ├── h4_sto6g_0.200.nw.out.yaml
│ │ │ ├── h4_sto6g_0.200.yaml
│ │ │ ├── h4_sto6g_0.300.nw.out.yaml
│ │ │ ├── h4_sto6g_0.300.yaml
│ │ │ ├── h4_sto6g_0.400.nw.out.yaml
│ │ │ ├── h4_sto6g_0.400.yaml
│ │ │ ├── h4_sto6g_0.500.nw.out.yaml
│ │ │ └── h4_sto6g_0.500.yaml
│ │ │ ├── H4_dimer_FCI
│ │ │ ├── h4_dimer_10000au_fci_sto6g.yaml
│ │ │ ├── h4_dimer_1000au_fci_sto6g.yaml
│ │ │ ├── h4_dimer_100au_fci_sto6g.yaml
│ │ │ ├── h4_dimer_10au_fci_sto6g.yaml
│ │ │ ├── h4_dimer_4au_fci_sto6g.yaml
│ │ │ ├── h4_dimer_6au_fci_sto6g.yaml
│ │ │ └── h4_dimer_8au_fci_sto6g.yaml
│ │ │ ├── LiH+_FCI_sto_3g
│ │ │ └── lih_sto-3g_fci_doublet.yaml
│ │ │ ├── LiHData
│ │ │ ├── integrals_lih_sto-3g_0.800.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.400.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.550.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.580.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.600.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.624.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.640.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.680.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.700.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.800.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.700.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_4.000.nw.out.yaml
│ │ │ └── integrals_lih_sto-3g_5.000.nw.out.yaml
│ │ │ ├── LiH_sto3g_FCI
│ │ │ ├── lih_sto-3g_fci_0.800.yaml
│ │ │ ├── lih_sto-3g_fci_1.000.yaml
│ │ │ ├── lih_sto-3g_fci_1.200.yaml
│ │ │ ├── lih_sto-3g_fci_1.400.yaml
│ │ │ ├── lih_sto-3g_fci_1.500.yaml
│ │ │ ├── lih_sto-3g_fci_1.550.yaml
│ │ │ ├── lih_sto-3g_fci_1.580.yaml
│ │ │ ├── lih_sto-3g_fci_1.600.yaml
│ │ │ ├── lih_sto-3g_fci_1.624.yaml
│ │ │ ├── lih_sto-3g_fci_1.640.yaml
│ │ │ ├── lih_sto-3g_fci_1.680.yaml
│ │ │ ├── lih_sto-3g_fci_1.700.yaml
│ │ │ ├── lih_sto-3g_fci_1.800.yaml
│ │ │ ├── lih_sto-3g_fci_2.000.yaml
│ │ │ ├── lih_sto-3g_fci_2.200.yaml
│ │ │ ├── lih_sto-3g_fci_2.500.yaml
│ │ │ ├── lih_sto-3g_fci_2.700.yaml
│ │ │ ├── lih_sto-3g_fci_3.000.yaml
│ │ │ ├── lih_sto-3g_fci_3.200.yaml
│ │ │ ├── lih_sto-3g_fci_3.500.yaml
│ │ │ ├── lih_sto-3g_fci_4.000.yaml
│ │ │ └── lih_sto-3g_fci_5.000.yaml
│ │ │ ├── N2
│ │ │ ├── n2_0_75Re_sto3g.nw.out.yaml
│ │ │ ├── n2_0_75Re_sto3g.yaml
│ │ │ ├── n2_1_00Re_sto3g.nw.out.yaml
│ │ │ ├── n2_1_00Re_sto3g.yaml
│ │ │ ├── n2_1_50Re_sto3g.nw.out.yaml
│ │ │ ├── n2_1_50Re_sto3g.yaml
│ │ │ ├── n2_2_00Re_sto3g.nw.out.yaml
│ │ │ ├── n2_2_00Re_sto3g.yaml
│ │ │ ├── n2_4_00Re_sto3g.nw.out.yaml
│ │ │ └── n2_4_00Re_sto3g.yaml
│ │ │ ├── O3
│ │ │ ├── o3_13_6_6_100deg.yaml
│ │ │ ├── o3_13_6_6_110deg.yaml
│ │ │ ├── o3_13_6_6_120deg.yaml
│ │ │ ├── o3_13_6_6_130deg.yaml
│ │ │ ├── o3_13_6_6_140deg.yaml
│ │ │ ├── o3_13_6_6_70deg.yaml
│ │ │ ├── o3_13_6_6_80deg.yaml
│ │ │ └── o3_13_6_6_90deg.yaml
│ │ │ ├── O3_ccpvtz
│ │ │ ├── o3_13_6_6_100deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_110deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_120deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_130deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_140deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_70deg_ccpvtz.yaml
│ │ │ ├── o3_13_6_6_80deg_ccpvtz.yaml
│ │ │ └── o3_13_6_6_90deg_ccvtz.yaml
│ │ │ ├── README.md
│ │ │ ├── broombridge_v0.1.yaml
│ │ │ ├── h2.yaml
│ │ │ ├── integrals_lih_sto-3g_0.800.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.400.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.550.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.580.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.600.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.624.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.640.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.680.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.700.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_1.800.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_2.700.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.200.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_3.500.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_4.000.nw.out.yaml
│ │ │ ├── integrals_lih_sto-3g_5.000.nw.out.yaml
│ │ │ ├── lih_sto-3g_0.800_int.yaml
│ │ │ ├── out.yaml
│ │ │ └── schema-example.yaml
│ ├── LithiumHydrideGUI
│ │ ├── LithiumHydrideGUI.csproj
│ │ ├── Program.cs
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── main.js
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── preload.js
│ │ └── renderer.js
│ ├── MolecularHydrogen
│ │ ├── HydrogenSimulation.qs
│ │ ├── MolecularHydrogen.csproj
│ │ ├── Program.cs
│ │ └── package-lock.json
│ ├── MolecularHydrogenGUI
│ │ ├── MolecularHydrogenGUI.csproj
│ │ ├── Program.cs
│ │ ├── README.md
│ │ ├── dis_H2.dat
│ │ ├── index.html
│ │ ├── main.js
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── preload.js
│ │ └── renderer.js
│ ├── PythonIntegration
│ │ ├── README.md
│ │ ├── broombridge.yaml
│ │ ├── chemistry_sample.py
│ │ ├── h2.yaml
│ │ └── quantum.qs
│ ├── README.md
│ ├── RunSimulation
│ │ ├── 2-RunSimulation.csproj
│ │ ├── Operation.qs
│ │ └── Program.cs
│ ├── SimulateHubbardHamiltonian
│ │ ├── HubbardSimulation.qs
│ │ ├── Program.cs
│ │ └── SimulateHubbardHamiltonian.csproj
│ └── chemistry.sln
├── diagnostics
│ ├── README.md
│ ├── diagnostics.sln
│ ├── dumping
│ │ ├── Dumping States and Operations.ipynb
│ │ └── README.md
│ ├── facts-and-assertions
│ │ ├── Facts and Assertions.ipynb
│ │ └── README.md
│ ├── unit-testing
│ │ ├── CCNOTCircuits.qs
│ │ ├── CCNOTCircuitsMetrics.cs
│ │ ├── CCNOTCircuitsTests.qs
│ │ ├── ControlledSWAP.qs
│ │ ├── ControlledSWAPMetrics.cs
│ │ ├── ControlledSWAPTests.qs
│ │ ├── MetricCalculationUtils.cs
│ │ ├── MultiControlledNOT.qs
│ │ ├── MultiControlledNOTMetrics.cs
│ │ ├── MultiControlledNOTTests.qs
│ │ ├── MultiControlledXBorrow.png
│ │ ├── MultiTargetCNOT.qs
│ │ ├── MultiTargetCNOTTests.qs
│ │ ├── QuantumSimulatorTestTargets.cs
│ │ ├── README.md
│ │ ├── RepeatUntilSuccessCircuits.qs
│ │ ├── RepeatUntilSuccessCircuitsMetrics.cs
│ │ ├── RepeatUntilSuccessCircuitsTests.qs
│ │ ├── SuperdenseCoding.qs
│ │ ├── SuperdenseCodingTests.qs
│ │ ├── Teleportation.qs
│ │ ├── TeleportationTests.qs
│ │ └── UnitTesting.csproj
│ └── visualization
│ │ ├── README.md
│ │ └── Visualizing Quantum Programs.ipynb
├── error-correction
│ ├── README.md
│ ├── bit-flip-code
│ │ ├── BitFlipCode.csproj
│ │ ├── BitFlipCode.qs
│ │ ├── Program.qs
│ │ └── README.md
│ ├── error-correction.sln
│ └── syndrome
│ │ ├── README.md
│ │ ├── Syndrome.csproj
│ │ └── Syndrome.qs
├── getting-started
│ ├── README.md
│ ├── azure-quantum
│ │ ├── azure-quantum-resource-id.png
│ │ ├── cirq
│ │ │ ├── Getting-started-with-Cirq-and-IonQ-on-Azure-Quantum.ipynb
│ │ │ ├── Getting-started-with-Cirq-and-Quantinuum-on-Azure-Quantum.ipynb
│ │ │ └── README.md
│ │ ├── provider-specific
│ │ │ ├── Getting-started-with-IonQ-and-JSON-on-Azure-Quantum.ipynb
│ │ │ ├── Getting-started-with-Quantinuum-and-OpenQASM-2.0-on-Azure-Quantum.ipynb
│ │ │ └── README.md
│ │ └── qiskit
│ │ │ ├── Getting-started-with-Qiskit-and-IonQ-on-Azure-Quantum.ipynb
│ │ │ ├── Getting-started-with-Qiskit-and-Quantinuum-on-Azure-Quantum.ipynb
│ │ │ └── README.md
│ ├── getting-started.sln
│ ├── intro-to-iqsharp
│ │ ├── Notebook.ipynb
│ │ ├── Operations.qs
│ │ └── README.md
│ ├── measurement
│ │ ├── Measurement.csproj
│ │ ├── Measurement.qs
│ │ └── README.md
│ ├── qrng
│ │ ├── Qrng.csproj
│ │ ├── Qrng.qs
│ │ ├── README.md
│ │ └── host.py
│ ├── simple-algorithms
│ │ ├── BernsteinVazirani.qs
│ │ ├── DeutschJozsa.qs
│ │ ├── HiddenShift.qs
│ │ ├── Program.qs
│ │ ├── README.md
│ │ └── SimpleAlgorithms.csproj
│ ├── simulation
│ │ ├── LargeSimulation.ipynb
│ │ └── README.md
│ └── teleportation
│ │ ├── Program.qs
│ │ ├── README.md
│ │ ├── TeleportationSample.csproj
│ │ ├── TeleportationSample.qs
│ │ └── Utils.qs
├── interoperability
│ ├── README.md
│ ├── dotnet
│ │ ├── README.md
│ │ ├── csharp
│ │ │ ├── Host.cs
│ │ │ └── csharp.csproj
│ │ ├── dotnet.sln
│ │ ├── fsharp
│ │ │ ├── Host.fs
│ │ │ └── fsharp.fsproj
│ │ └── qsharp
│ │ │ ├── Operations.qs
│ │ │ └── qsharp.csproj
│ ├── interoperability.sln
│ ├── python
│ │ ├── Operations.qs
│ │ ├── README.md
│ │ ├── environment.yml
│ │ ├── python-qsharp-interop.ipynb
│ │ └── python.csproj
│ └── qrng
│ │ ├── Host.cs
│ │ ├── Qrng.csproj
│ │ ├── Qrng.qs
│ │ ├── README.md
│ │ └── host.py
├── machine-learning
│ ├── README.md
│ ├── half-moons
│ │ ├── HalfMoons.csproj
│ │ ├── HalfMoons.ipynb
│ │ ├── Host.cs
│ │ ├── README.md
│ │ ├── Training.qs
│ │ ├── data.json
│ │ ├── environment.yml
│ │ └── host.py
│ ├── machine-learning.sln
│ ├── parallel-half-moons
│ │ ├── Host.cs
│ │ ├── ParallelHalfMoons.csproj
│ │ ├── README.md
│ │ ├── Training.qs
│ │ └── data.json
│ └── wine
│ │ ├── Host.cs
│ │ ├── README.md
│ │ ├── Training.qs
│ │ ├── Wine.csproj
│ │ └── host.py
├── numerics
│ ├── README.md
│ ├── custom-mod-add
│ │ ├── CustomModAdd.csproj
│ │ ├── CustomModAdd.qs
│ │ ├── Program.qs
│ │ └── README.md
│ ├── evaluating-functions
│ │ ├── EvaluatePolynomial.qs
│ │ ├── EvaluatingFunctions.csproj
│ │ ├── Program.qs
│ │ ├── README.md
│ │ └── remez.py
│ ├── numerics.sln
│ └── resource-counting
│ │ ├── Program.cs
│ │ ├── Program.qs
│ │ ├── README.md
│ │ ├── ResourceCounting.csproj
│ │ ├── ResourceCounting.qs
│ │ └── ResourcesEstimator.cs
├── qir
│ └── oracle-generator
│ │ ├── .clang-format
│ │ ├── .gitignore
│ │ ├── CMakeLists.txt
│ │ ├── README.md
│ │ ├── host
│ │ ├── CMakeLists.txt
│ │ └── main.cpp
│ │ ├── oracle-generator
│ │ ├── CMakeLists.txt
│ │ ├── oracle_generator.cpp
│ │ ├── read_qir.hpp
│ │ └── write_qir.hpp
│ │ └── qsharp
│ │ ├── Program.qs
│ │ ├── project.csproj
│ │ └── project.sln
├── runtime
│ ├── README.md
│ ├── autosubstitution
│ │ ├── AutoSubstitution.csproj
│ │ ├── AutoSubstitution.qs
│ │ └── README.md
│ ├── oracle-emulation
│ │ ├── Driver.cs
│ │ ├── Operations.qs
│ │ ├── OracleEmulation.csproj
│ │ ├── PermutationOracle.cs
│ │ ├── PermutationOracle.qs
│ │ └── README.md
│ ├── qpic-simulator
│ │ ├── README.md
│ │ ├── host
│ │ │ ├── Program.qs
│ │ │ └── host.csproj
│ │ ├── simulator
│ │ │ ├── Formatter.cs
│ │ │ ├── Library.qs
│ │ │ ├── Processor.cs
│ │ │ ├── Simulator.Barrier.cs
│ │ │ ├── Simulator.SavePicture.cs
│ │ │ ├── Simulator.cs
│ │ │ └── simulator.csproj
│ │ └── t-injection.png
│ ├── reversible-simulator-advanced
│ │ ├── README.md
│ │ ├── host
│ │ │ ├── Program.qs
│ │ │ └── host.csproj
│ │ └── simulator
│ │ │ ├── Simulator.cs
│ │ │ └── simulator.csproj
│ ├── reversible-simulator-simple
│ │ ├── Driver.cs
│ │ ├── Operation.qs
│ │ ├── README.md
│ │ ├── ReversibleSimulator.csproj
│ │ └── Simulator.cs
│ ├── runtime.sln
│ ├── simulator-with-overrides
│ │ ├── FaultyMeasurementsSimulator.cs
│ │ ├── Host.cs
│ │ ├── Operations.qs
│ │ ├── README.md
│ │ └── SimulatorWithOverrides.csproj
│ └── state-visualizer
│ │ ├── .gitignore
│ │ ├── Hubs.cs
│ │ ├── Program.cs
│ │ ├── README.md
│ │ ├── Startup.cs
│ │ ├── StateVisualizer.cs
│ │ ├── StateVisualizer.csproj
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── tsconfig.json
│ │ ├── webpack.config.js
│ │ └── websrc
│ │ ├── app.ts
│ │ ├── css
│ │ └── main.css
│ │ └── index.html
├── simulation
│ ├── README.md
│ ├── gaussian-initial-state
│ │ ├── PrepareGaussian.qs
│ │ ├── Program.qs
│ │ ├── README.md
│ │ ├── gaussian-initial-state.csproj
│ │ ├── gaussian_definition.jpg
│ │ ├── host.py
│ │ └── wavefunction_recursive.png
│ ├── h2
│ │ ├── command-line
│ │ │ ├── H2SimulationSampleCmdLine.csproj
│ │ │ ├── Operations.qs
│ │ │ ├── Program.qs
│ │ │ └── README.md
│ │ └── gui
│ │ │ ├── H2SimulationGUI.csproj
│ │ │ ├── H2SimulationOperations.qs
│ │ │ ├── Program.cs
│ │ │ ├── README.md
│ │ │ ├── index.html
│ │ │ ├── main.js
│ │ │ ├── package-lock.json
│ │ │ ├── package.json
│ │ │ ├── preload.js
│ │ │ └── renderer.js
│ ├── hubbard
│ │ ├── HubbardSimulation.qs
│ │ ├── HubbardSimulationSample.csproj
│ │ ├── Program.qs
│ │ └── README.md
│ ├── ising
│ │ ├── IsingSamples.csproj
│ │ ├── README.md
│ │ ├── adiabatic
│ │ │ ├── AdiabaticIsing.qs
│ │ │ └── Program.qs
│ │ ├── generators
│ │ │ ├── IsingGenerators.qs
│ │ │ └── Program.qs
│ │ ├── phase-estimation
│ │ │ ├── IsingPhaseEstimation.qs
│ │ │ └── Program.qs
│ │ ├── simple
│ │ │ ├── Program.qs
│ │ │ └── SimpleIsing.qs
│ │ └── trotter-evolution
│ │ │ ├── IsingTrotter.qs
│ │ │ └── Program.qs
│ ├── qaoa
│ │ ├── QAOA.csproj
│ │ ├── QAOA.qs
│ │ ├── README.md
│ │ ├── hamil1.png
│ │ └── hamil2.png
│ └── simulation.sln
└── tests
│ ├── sample-tests
│ ├── BayesianPETests.qs
│ ├── BitFlipTests.qs
│ ├── DatabaseSearchTests.qs
│ ├── EnumerationTests.qs
│ ├── MeasurementTests.qs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── README.md
│ ├── RepeatUntilSuccessTests.qs
│ ├── SampleTests.csproj
│ ├── SimpleAlgorithmsTests.qs
│ ├── Simulation
│ │ ├── IsingTests.qs
│ │ └── Tests.qs
│ ├── SimulatorTestTargets.cs
│ └── app.config
│ └── tests.sln
└── utilities
├── InvokeNWChem.psm1
├── README.md
├── sync.cmd
└── updateQDKVersion.sh
/.devcontainer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.devcontainer/README.md
--------------------------------------------------------------------------------
/.devcontainer/devcontainer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.devcontainer/devcontainer.json
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.gitattributes
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/ISSUE_TEMPLATE/bug_report.md
--------------------------------------------------------------------------------
/.github/problem-matchers/markdown-link-check.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/problem-matchers/markdown-link-check.json
--------------------------------------------------------------------------------
/.github/problem-matchers/markdownlint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/problem-matchers/markdownlint.json
--------------------------------------------------------------------------------
/.github/workflows/.config/dotnet-tools.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/.config/dotnet-tools.json
--------------------------------------------------------------------------------
/.github/workflows/NuGet.Config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/NuGet.Config
--------------------------------------------------------------------------------
/.github/workflows/Test-SampleLayout.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/Test-SampleLayout.ps1
--------------------------------------------------------------------------------
/.github/workflows/check-pull-request.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/check-pull-request.yml
--------------------------------------------------------------------------------
/.github/workflows/devskim.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/devskim.yml
--------------------------------------------------------------------------------
/.github/workflows/filter_sample_frontmatter.csx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/filter_sample_frontmatter.csx
--------------------------------------------------------------------------------
/.github/workflows/gh-sync.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/gh-sync.yml
--------------------------------------------------------------------------------
/.github/workflows/hosted-notebook-samples-check.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/hosted-notebook-samples-check.yml
--------------------------------------------------------------------------------
/.github/workflows/link-check-config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/link-check-config.json
--------------------------------------------------------------------------------
/.github/workflows/lock-master.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/lock-master.yml
--------------------------------------------------------------------------------
/.github/workflows/omnisharp.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/omnisharp.json
--------------------------------------------------------------------------------
/.github/workflows/prebuild-docker.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/prebuild-docker.yml
--------------------------------------------------------------------------------
/.github/workflows/prepare-samples.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/prepare-samples.yml
--------------------------------------------------------------------------------
/.github/workflows/test-docker-image-build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.github/workflows/test-docker-image-build.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.gitignore
--------------------------------------------------------------------------------
/.markdownlint.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.markdownlint.yaml
--------------------------------------------------------------------------------
/.pre-commit-config.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.pre-commit-config.yaml
--------------------------------------------------------------------------------
/.sscignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.sscignore
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.vscode/extensions.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/Build/build.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/build.ps1
--------------------------------------------------------------------------------
/Build/check_indents.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/check_indents.py
--------------------------------------------------------------------------------
/Build/clean.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/clean.ps1
--------------------------------------------------------------------------------
/Build/images/samples/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/images/samples/Dockerfile
--------------------------------------------------------------------------------
/Build/pack.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/pack.ps1
--------------------------------------------------------------------------------
/Build/qdk-tools.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/qdk-tools.psm1
--------------------------------------------------------------------------------
/Build/set-env.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/set-env.ps1
--------------------------------------------------------------------------------
/Build/steps.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/steps.yml
--------------------------------------------------------------------------------
/Build/test.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Build/test.ps1
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/Chemistry/Schema/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Chemistry/Schema/README.md
--------------------------------------------------------------------------------
/Chemistry/Schema/broombridge-0.1.schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Chemistry/Schema/broombridge-0.1.schema.json
--------------------------------------------------------------------------------
/Chemistry/Schema/broombridge-0.2.schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Chemistry/Schema/broombridge-0.2.schema.json
--------------------------------------------------------------------------------
/Chemistry/Schema/requirements.txt:
--------------------------------------------------------------------------------
1 | ruamel.yaml
2 | jsonschema
3 | click
4 |
--------------------------------------------------------------------------------
/Chemistry/Schema/validator.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Chemistry/Schema/validator.py
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/Dockerfile
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/LICENSE.txt
--------------------------------------------------------------------------------
/NuGet.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/NuGet.config
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/README.md
--------------------------------------------------------------------------------
/binder-index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/binder-index.md
--------------------------------------------------------------------------------
/cspell.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/cspell.json
--------------------------------------------------------------------------------
/docs/images/Codespaces_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/docs/images/Codespaces_settings.png
--------------------------------------------------------------------------------
/global.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/global.json
--------------------------------------------------------------------------------
/samples/algorithms/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/README.md
--------------------------------------------------------------------------------
/samples/algorithms/algorithms.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/algorithms.sln
--------------------------------------------------------------------------------
/samples/algorithms/chsh-game/CHSHGame.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/chsh-game/CHSHGame.csproj
--------------------------------------------------------------------------------
/samples/algorithms/chsh-game/Game.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/chsh-game/Game.qs
--------------------------------------------------------------------------------
/samples/algorithms/chsh-game/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/chsh-game/Program.qs
--------------------------------------------------------------------------------
/samples/algorithms/chsh-game/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/chsh-game/README.md
--------------------------------------------------------------------------------
/samples/algorithms/database-search/Database Search.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/Database Search.ipynb
--------------------------------------------------------------------------------
/samples/algorithms/database-search/DatabaseSearch.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/DatabaseSearch.qs
--------------------------------------------------------------------------------
/samples/algorithms/database-search/DatabaseSearchSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/DatabaseSearchSample.csproj
--------------------------------------------------------------------------------
/samples/algorithms/database-search/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/Program.qs
--------------------------------------------------------------------------------
/samples/algorithms/database-search/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/README.md
--------------------------------------------------------------------------------
/samples/algorithms/database-search/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/database-search/environment.yml
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/Compare.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/Compare.qs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/FlameGraphCounter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/FlameGraphCounter.cs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/FlameGraphResourcesEstimator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/FlameGraphResourcesEstimator.cs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/IntegerFactorization.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/IntegerFactorization.csproj
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/Modular.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/Modular.qs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/Program.cs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/QuantumVizCounter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/QuantumVizCounter.cs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/QuantumVizEstimator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/QuantumVizEstimator.cs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/README.md
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/Shor.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/Shor.qs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/Utils.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/Utils.qs
--------------------------------------------------------------------------------
/samples/algorithms/integer-factorization/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/integer-factorization/host.py
--------------------------------------------------------------------------------
/samples/algorithms/noisy-amp-est/NoisyAmpEst.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/noisy-amp-est/NoisyAmpEst.ipynb
--------------------------------------------------------------------------------
/samples/algorithms/noisy-amp-est/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/noisy-amp-est/README.md
--------------------------------------------------------------------------------
/samples/algorithms/noisy-dj/Deutsch–Jozsa with Noise.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/noisy-dj/Deutsch–Jozsa with Noise.ipynb
--------------------------------------------------------------------------------
/samples/algorithms/noisy-dj/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/noisy-dj/README.md
--------------------------------------------------------------------------------
/samples/algorithms/oracle-synthesis/OracleSynthesis.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/oracle-synthesis/OracleSynthesis.csproj
--------------------------------------------------------------------------------
/samples/algorithms/oracle-synthesis/OracleSynthesis.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/oracle-synthesis/OracleSynthesis.qs
--------------------------------------------------------------------------------
/samples/algorithms/oracle-synthesis/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/oracle-synthesis/Program.qs
--------------------------------------------------------------------------------
/samples/algorithms/oracle-synthesis/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/oracle-synthesis/README.md
--------------------------------------------------------------------------------
/samples/algorithms/order-finding/OrderFinding.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/order-finding/OrderFinding.csproj
--------------------------------------------------------------------------------
/samples/algorithms/order-finding/OrderFinding.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/order-finding/OrderFinding.qs
--------------------------------------------------------------------------------
/samples/algorithms/order-finding/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/order-finding/Program.qs
--------------------------------------------------------------------------------
/samples/algorithms/order-finding/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/order-finding/README.md
--------------------------------------------------------------------------------
/samples/algorithms/order_finding.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/order_finding.py
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/Program.qs
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/README.md
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/RUS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/RUS.png
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/RepeatUntilSuccess.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/RepeatUntilSuccess.csproj
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/SimpleRUS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/SimpleRUS.png
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/SimpleRUS.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/SimpleRUS.qs
--------------------------------------------------------------------------------
/samples/algorithms/repeat-until-success/VGateRUS.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/repeat-until-success/VGateRUS.qs
--------------------------------------------------------------------------------
/samples/algorithms/reversible-logic-synthesis/Host.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/reversible-logic-synthesis/Host.qs
--------------------------------------------------------------------------------
/samples/algorithms/reversible-logic-synthesis/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/reversible-logic-synthesis/README.md
--------------------------------------------------------------------------------
/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.csproj
--------------------------------------------------------------------------------
/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/reversible-logic-synthesis/ReversibleLogicSynthesis.qs
--------------------------------------------------------------------------------
/samples/algorithms/reversible-logic-synthesis/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/reversible-logic-synthesis/host.py
--------------------------------------------------------------------------------
/samples/algorithms/simple-grover/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/simple-grover/README.md
--------------------------------------------------------------------------------
/samples/algorithms/simple-grover/Reflections.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/simple-grover/Reflections.qs
--------------------------------------------------------------------------------
/samples/algorithms/simple-grover/SimpleGrover.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/simple-grover/SimpleGrover.qs
--------------------------------------------------------------------------------
/samples/algorithms/simple-grover/SimpleGroverSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/simple-grover/SimpleGroverSample.csproj
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/ColoringGroverWithConstraints.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/ColoringGroverWithConstraints.qs
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/Program.cs
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/README.md
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/Sudoku.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/Sudoku.qs
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/SudokuClassic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/SudokuClassic.cs
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/SudokuGroverSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/SudokuGroverSample.csproj
--------------------------------------------------------------------------------
/samples/algorithms/sudoku-grover/SudokuQuantum.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/sudoku-grover/SudokuQuantum.cs
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/.iqsharp-config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/.iqsharp-config.json
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/Optimization.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/Optimization.qs
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/README.md
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/Variational Quantum Algorithms.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/Variational Quantum Algorithms.ipynb
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/VariationalAlgorithms.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/VariationalAlgorithms.csproj
--------------------------------------------------------------------------------
/samples/algorithms/variational-algorithms/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/algorithms/variational-algorithms/environment.yml
--------------------------------------------------------------------------------
/samples/arithmetic/quantum-adders/AdderExample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/arithmetic/quantum-adders/AdderExample.ipynb
--------------------------------------------------------------------------------
/samples/arithmetic/quantum-adders/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/arithmetic/quantum-adders/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/CONTRIBUTING.md
--------------------------------------------------------------------------------
/samples/azure-quantum/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/adapting-code/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/adapting-code/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/adapting-code/adapting-qiskit-sample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/adapting-code/adapting-qiskit-sample.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/azure-quantum.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/azure-quantum.sln
--------------------------------------------------------------------------------
/samples/azure-quantum/check-ghz/CheckGHZ.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/check-ghz/CheckGHZ.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/check-ghz/CheckGHZ.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/check-ghz/CheckGHZ.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/check-ghz/CheckGHZ.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/check-ghz/CheckGHZ.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/check-ghz/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/check-ghz/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/Hamiltonian/GetHamiltonianTerm.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/Hamiltonian/GetHamiltonianTerm.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/Hamiltonian/Hamiltonian.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/Hamiltonian/Hamiltonian.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/Hamiltonian/NuGet.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/Hamiltonian/NuGet.config
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/QuantumPhaseEstimation/GetEnergyQPE.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/QuantumPhaseEstimation/GetEnergyQPE.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/QuantumPhaseEstimation/GetEnergyVQE.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/QuantumPhaseEstimation/GetEnergyVQE.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/QuantumPhaseEstimation/Molecule.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/QuantumPhaseEstimation/Molecule.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/QuantumPhaseEstimation/Molecule.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/QuantumPhaseEstimation/Molecule.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/broombridge/HHO.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/broombridge/HHO.yaml
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/broombridge/caffeine.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/broombridge/caffeine.yaml
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/broombridge/hydrogen_0.2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/broombridge/hydrogen_0.2.yaml
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/broombridge/pyridine.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/broombridge/pyridine.yaml
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/Pb3O4_vib.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/Pb3O4_vib.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/bcarotine.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/bcarotine.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/c2h410.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/c2h410.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/caffeine.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/caffeine.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/femoco.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/femoco.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/h2.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/h2.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/chemistry/data/xyz/pyridine.xyz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/chemistry/data/xyz/pyridine.xyz
--------------------------------------------------------------------------------
/samples/azure-quantum/grover/Grover.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/grover/Grover.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/grover/Grover.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/grover/Grover.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/grover/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/grover/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/grover/Reflections.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/grover/Reflections.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/grover/SimpleGrover.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/grover/SimpleGrover.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-ionq-cirq.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-ionq-cirq.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-ionq-qiskit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-ionq-qiskit.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-ionq-qsharp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-ionq-qsharp.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-quantinuum-cirq.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-quantinuum-cirq.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-quantinuum-qiskit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-quantinuum-qiskit.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-quantinuum-qsharp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-quantinuum-qsharp.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-rigetti-qiskit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-rigetti-qiskit.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/HW-rigetti-qsharp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/HW-rigetti-qsharp.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/hello-world/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hello-world/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/hidden-shift/HiddenShift.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hidden-shift/HiddenShift.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/hidden-shift/HiddenShift.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hidden-shift/HiddenShift.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/hidden-shift/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hidden-shift/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/hidden-shift/hidden-shift.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/hidden-shift/hidden-shift.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/ising-model/IsingModel.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/ising-model/IsingModel.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/ising-model/IsingModel.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/ising-model/IsingModel.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/ising-model/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/ising-model/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/iterative-phase-estimation/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/iterative-phase-estimation/LICENSE.txt
--------------------------------------------------------------------------------
/samples/azure-quantum/iterative-phase-estimation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/iterative-phase-estimation/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/iterative-phase-estimation/iterative-phase-estimation.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/ParallelQrng.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/ParallelQrng.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/ParallelQrng.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/ParallelQrng.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/ParallelQrng.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/ParallelQrng.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/demo.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/demo.md
--------------------------------------------------------------------------------
/samples/azure-quantum/parallel-qrng/parallel_qrng.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/parallel-qrng/parallel_qrng.py
--------------------------------------------------------------------------------
/samples/azure-quantum/qsp/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/qsp/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/qsp/qsp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/qsp/qsp.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/repeat-until-success/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/repeat-until-success/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/repeat-until-success/repeat-until-success.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/repeat-until-success/repeat-until-success.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/advanced-estimation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/advanced-estimation.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-chemistry.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-chemistry.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-dynamics.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-dynamics.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-factoring.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-factoring.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-profiling.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-profiling.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-qir.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-qir.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-qiskit.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-qiskit.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-qsharp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-qsharp.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/estimation-time-qubits-constraints.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/estimation-time-qubits-constraints.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/integer-factorization-with-cli/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/integer-factorization-with-cli/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/profile_cla_qubits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/profile_cla_qubits.png
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/profile_cla_runtime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/profile_cla_runtime.png
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/profile_rca_qubits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/profile_rca_qubits.png
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/profile_rca_runtime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/profile_rca_runtime.png
--------------------------------------------------------------------------------
/samples/azure-quantum/resource-estimation/resource-estimation.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/resource-estimation/resource-estimation.sln
--------------------------------------------------------------------------------
/samples/azure-quantum/sessions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/sessions/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/sessions/introduction-to-sessions.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/sessions/introduction-to-sessions.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/shorter-quantum-circuits/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/shorter-quantum-circuits/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/teleport/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/teleport/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/teleport/Teleport.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/teleport/Teleport.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/teleport/Teleport.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/teleport/Teleport.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/three-qubit-repetition-code/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/three-qubit-repetition-code/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.csproj
--------------------------------------------------------------------------------
/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/three-qubit-repetition-code/ThreeQubitRepetitionCode.qs
--------------------------------------------------------------------------------
/samples/azure-quantum/utilities/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/utilities/README.md
--------------------------------------------------------------------------------
/samples/azure-quantum/utilities/storage-data-management.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/utilities/storage-data-management.ipynb
--------------------------------------------------------------------------------
/samples/azure-quantum/variational-quantum-eigensolver/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/azure-quantum/variational-quantum-eigensolver/README.md
--------------------------------------------------------------------------------
/samples/characterization/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/README.md
--------------------------------------------------------------------------------
/samples/characterization/characterization.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/characterization.sln
--------------------------------------------------------------------------------
/samples/characterization/phase-estimation/BayesianPhaseEstimation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/phase-estimation/BayesianPhaseEstimation.qs
--------------------------------------------------------------------------------
/samples/characterization/phase-estimation/PhaseEstimationSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/phase-estimation/PhaseEstimationSample.csproj
--------------------------------------------------------------------------------
/samples/characterization/phase-estimation/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/phase-estimation/Program.qs
--------------------------------------------------------------------------------
/samples/characterization/phase-estimation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/phase-estimation/README.md
--------------------------------------------------------------------------------
/samples/characterization/process-tomography/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/process-tomography/README.md
--------------------------------------------------------------------------------
/samples/characterization/process-tomography/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/process-tomography/environment.yml
--------------------------------------------------------------------------------
/samples/characterization/process-tomography/tomography-sample.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/process-tomography/tomography-sample.ipynb
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/Inference.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/Inference.qs
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/Math.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/Math.qs
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/README.md
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/RandomizedBenchmarking.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/RandomizedBenchmarking.csproj
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/environment.yml
--------------------------------------------------------------------------------
/samples/characterization/randomized-benchmarking/randomized-benchmarking.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/characterization/randomized-benchmarking/randomized-benchmarking.ipynb
--------------------------------------------------------------------------------
/samples/chemistry/AnalyzeHamiltonian/1-AnalyzeHamiltonian.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/AnalyzeHamiltonian/1-AnalyzeHamiltonian.csproj
--------------------------------------------------------------------------------
/samples/chemistry/AnalyzeHamiltonian/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/AnalyzeHamiltonian/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/AnalyzeHamiltonian/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/AnalyzeHamiltonian/host.py
--------------------------------------------------------------------------------
/samples/chemistry/CreateHubbardHamiltonian/CreateHubbardHamiltonian.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/CreateHubbardHamiltonian/CreateHubbardHamiltonian.csproj
--------------------------------------------------------------------------------
/samples/chemistry/CreateHubbardHamiltonian/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/CreateHubbardHamiltonian/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/CreateHubbardHamiltonian/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/CreateHubbardHamiltonian/README.md
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/.gitignore:
--------------------------------------------------------------------------------
1 | *.csv
2 |
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/3-GetGateCount.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/3-GetGateCount.csproj
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/Configuration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/Configuration.cs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/Extensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/Extensions.cs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/GetGateCount.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/GetGateCount.cs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/Operation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/Operation.qs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/Out-Plot.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/Out-Plot.ps1
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/PowerShellIntegration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/PowerShellIntegration.cs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/GetGateCount/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/GetGateCount/README.md
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Broombridge_v0.2/H2_sto-3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Broombridge_v0.2/H2_sto-3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Broombridge_v0.2/LiH_sto-3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Broombridge_v0.2/LiH_sto-3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Broombridge_v0.2/broombridge_v0.2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Broombridge_v0.2/broombridge_v0.2.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Broombridge_v0.2/broombridge_v0.2_minimal.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Broombridge_v0.2/broombridge_v0.2_minimal.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/AL_sto6g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/AL_sto6g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/Ar_sto6g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/Ar_sto6g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/B_sto6g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/B_sto6g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/BeH2_sto6g_14.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/BeH2_sto6g_14.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/Be_sto6g_10.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/Be_sto6g_10.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/CH4frz_sto6g_16.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/CH4frz_sto6g_16.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/C_sto6g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/C_sto6g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/Cl_sto6g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/Cl_sto6g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/Coalesce.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/Coalesce.7z
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/F2_sto6g_20.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/F2_sto6g_20.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/ch4_sto6g_18.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/ch4_sto6g_18.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/co2_dzvp_90.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/co2_dzvp_90.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/co2_p321_54.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/co2_p321_54.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/co2_p631ss_90.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/co2_p631ss_90.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/co2_sto3g_30.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/co2_sto3g_30.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/co_sto6g_20.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/co_sto6g_20.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dbg.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dbg.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_F2.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_F2.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_H2.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_H2.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_H2O.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_H2O.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_H2Oc1.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_H2Oc1.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_N2.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_N2.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_O2.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_O2.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/dis_o3.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/dis_o3.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/distketen_tzvp_14_12.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/distketen_tzvp_14_12.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/distketen_tzvp_6_8.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/distketen_tzvp_6_8.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/fe2s2_sto3g.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/fe2s2_sto3g.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/h2_sto3g_4.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/h2_sto3g_4.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/h2o_sto6g_14.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/h2o_sto6g_14.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/h2s_sto6g_22.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/h2s_sto6g_22.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/Liquid/nitrogenase_tzvp_54.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/Liquid/nitrogenase_tzvp_54.dat
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/AL_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/AL_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/Ar_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/Ar_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/B_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/B_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/BeH2_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/BeH2_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/Be_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/Be_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/C_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/C_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/Cl_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/Cl_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/F2_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/F2_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/ch4_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/ch4_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/co_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/co_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/LiquidSelected/h2o_sto6g:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/LiquidSelected/h2o_sto6g
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/README.md
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/Ar/ar_ccpvdz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/Ar/ar_ccpvdz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/B_6_31G_FCI/b_6-31g_fci.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/B_6_31G_FCI/b_6-31g_fci.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/BeH2_6-31g_FCI/beh2_6-31g_fci.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/BeH2_6-31g_FCI/beh2_6-31g_fci.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/Be_631G_FCI/be_6-31g_fci.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/Be_631G_FCI/be_6-31g_fci.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/Be_ccpvdz/be_ccpvdz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/Be_ccpvdz/be_ccpvdz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_bowl_ccpvdz_17_7_7.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_bowl_ccpvdz_17_7_7.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_bowl_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_bowl_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_fullerene_ccpvdz_17_7_7.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_fullerene_ccpvdz_17_7_7.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_fullerene_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_fullerene_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_ring_ccpvdz_17_7_7.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_ring_ccpvdz_17_7_7.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/C20/c20_ring_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/C20/c20_ring_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/CH4_STO6G_FCI/ch4_sto6g_fci.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/CH4_STO6G_FCI/ch4_sto6g_fci.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/CYTOSINE/cytosine_6-31g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/CYTOSINE/cytosine_6-31g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/F2/f2_6-31g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/F2/f2_6-31g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.7_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.7_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.8_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.8_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.9572_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.9572_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.9_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh0.9_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.0_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.0_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.1_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.1_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.3_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.3_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.5_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.5_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.7_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh1.7_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh2.0_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh2.0_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh2.5_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh2.5_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O/h2o_oh3.0_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O/h2o_oh3.0_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.7_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.7_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.8_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.8_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.9572_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.9572_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.9_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh0.9_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.0_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.0_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.1_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.1_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.3_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.3_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.5_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.5_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.7_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh1.7_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh2.0_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh2.0_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh2.5_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh2.5_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh3.0_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2O_PES/h2o_oh3.0_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_2_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_2_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_2_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_2_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_3_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_3_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_3_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_3_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_4_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_4_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_4_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_4_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_5_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_5_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_5_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_5_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_6_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_6_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_6_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_6_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_7_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_7_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_7_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_7_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_8_sto6g_1.0au.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_8_sto6g_1.0au.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H2_n/h2_8_sto6g_1.0au.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H2_n/h2_8_sto6g_1.0au.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.001.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.001.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.001.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.001.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.010.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.010.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.010.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.010.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.050.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.050.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.050.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.050.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.100.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.100.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.100.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.100.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.200.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.200.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.300.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.300.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.300.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.300.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.400.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.400.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.400.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.400.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.500.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.500.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.500.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4/h4_sto6g_0.500.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_10000au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_10000au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_1000au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_1000au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_100au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_100au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_10au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_10au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_4au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_4au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_6au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_6au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_8au_fci_sto6g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/H4_dimer_FCI/h4_dimer_8au_fci_sto6g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH+_FCI_sto_3g/lih_sto-3g_fci_doublet.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH+_FCI_sto_3g/lih_sto-3g_fci_doublet.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_0.800.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_0.800.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.400.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.400.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.500.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.500.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.550.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.550.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.580.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.580.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.600.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.600.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.624.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.624.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.640.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.640.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.680.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.680.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.700.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.700.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.800.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_1.800.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_2.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_2.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_2.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiHData/integrals_lih_sto-3g_2.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_0.800.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_0.800.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.200.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.200.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.400.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.400.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.500.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.500.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.550.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.550.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.580.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.580.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.600.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.600.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.624.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.624.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.640.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.640.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.680.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.680.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.700.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.700.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.800.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_1.800.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.200.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.200.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.500.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.500.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.700.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_2.700.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.200.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.200.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.500.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_3.500.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_4.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_4.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_5.000.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/LiH_sto3g_FCI/lih_sto-3g_fci_5.000.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_0_75Re_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_0_75Re_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_0_75Re_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_0_75Re_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_1_00Re_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_1_00Re_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_1_00Re_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_1_00Re_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_1_50Re_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_1_50Re_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_1_50Re_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_1_50Re_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_2_00Re_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_2_00Re_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_2_00Re_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_2_00Re_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_4_00Re_sto3g.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_4_00Re_sto3g.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/N2/n2_4_00Re_sto3g.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/N2/n2_4_00Re_sto3g.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_100deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_100deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_110deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_110deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_120deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_120deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_130deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_130deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_140deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_140deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_70deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_70deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_80deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_80deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_90deg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3/o3_13_6_6_90deg.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_100deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_100deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_110deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_110deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_120deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_120deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_130deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_130deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_140deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_140deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_70deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_70deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_80deg_ccpvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_80deg_ccpvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_90deg_ccvtz.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/O3_ccpvtz/o3_13_6_6_90deg_ccvtz.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/README.md
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/broombridge_v0.1.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/broombridge_v0.1.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/h2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/h2.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_0.800.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_0.800.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.400.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.400.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.500.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.500.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.550.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.550.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.580.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.580.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.600.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.600.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.624.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.624.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.640.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.640.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.680.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.680.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.700.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.700.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.800.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_1.800.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.500.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.500.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.700.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_2.700.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.200.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.200.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.500.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_3.500.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_4.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_4.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_5.000.nw.out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/integrals_lih_sto-3g_5.000.nw.out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/lih_sto-3g_0.800_int.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/lih_sto-3g_0.800_int.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/out.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/out.yaml
--------------------------------------------------------------------------------
/samples/chemistry/IntegralData/YAML/schema-example.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/IntegralData/YAML/schema-example.yaml
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/LithiumHydrideGUI.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/LithiumHydrideGUI.csproj
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/README.md
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/index.html
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/main.js
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/package-lock.json
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/package.json
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/preload.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/preload.js
--------------------------------------------------------------------------------
/samples/chemistry/LithiumHydrideGUI/renderer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/LithiumHydrideGUI/renderer.js
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogen/HydrogenSimulation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogen/HydrogenSimulation.qs
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogen/MolecularHydrogen.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogen/MolecularHydrogen.csproj
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogen/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogen/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogen/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "lockfileVersion": 1
3 | }
4 |
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/MolecularHydrogenGUI.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/MolecularHydrogenGUI.csproj
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/README.md
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/dis_H2.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/dis_H2.dat
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/index.html
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/main.js
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/package-lock.json
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/package.json
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/preload.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/preload.js
--------------------------------------------------------------------------------
/samples/chemistry/MolecularHydrogenGUI/renderer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/MolecularHydrogenGUI/renderer.js
--------------------------------------------------------------------------------
/samples/chemistry/PythonIntegration/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/PythonIntegration/README.md
--------------------------------------------------------------------------------
/samples/chemistry/PythonIntegration/broombridge.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/PythonIntegration/broombridge.yaml
--------------------------------------------------------------------------------
/samples/chemistry/PythonIntegration/chemistry_sample.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/PythonIntegration/chemistry_sample.py
--------------------------------------------------------------------------------
/samples/chemistry/PythonIntegration/h2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/PythonIntegration/h2.yaml
--------------------------------------------------------------------------------
/samples/chemistry/PythonIntegration/quantum.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/PythonIntegration/quantum.qs
--------------------------------------------------------------------------------
/samples/chemistry/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/README.md
--------------------------------------------------------------------------------
/samples/chemistry/RunSimulation/2-RunSimulation.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/RunSimulation/2-RunSimulation.csproj
--------------------------------------------------------------------------------
/samples/chemistry/RunSimulation/Operation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/RunSimulation/Operation.qs
--------------------------------------------------------------------------------
/samples/chemistry/RunSimulation/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/RunSimulation/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/SimulateHubbardHamiltonian/HubbardSimulation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/SimulateHubbardHamiltonian/HubbardSimulation.qs
--------------------------------------------------------------------------------
/samples/chemistry/SimulateHubbardHamiltonian/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/SimulateHubbardHamiltonian/Program.cs
--------------------------------------------------------------------------------
/samples/chemistry/SimulateHubbardHamiltonian/SimulateHubbardHamiltonian.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/SimulateHubbardHamiltonian/SimulateHubbardHamiltonian.csproj
--------------------------------------------------------------------------------
/samples/chemistry/chemistry.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/chemistry/chemistry.sln
--------------------------------------------------------------------------------
/samples/diagnostics/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/README.md
--------------------------------------------------------------------------------
/samples/diagnostics/diagnostics.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/diagnostics.sln
--------------------------------------------------------------------------------
/samples/diagnostics/dumping/Dumping States and Operations.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/dumping/Dumping States and Operations.ipynb
--------------------------------------------------------------------------------
/samples/diagnostics/dumping/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/dumping/README.md
--------------------------------------------------------------------------------
/samples/diagnostics/facts-and-assertions/Facts and Assertions.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/facts-and-assertions/Facts and Assertions.ipynb
--------------------------------------------------------------------------------
/samples/diagnostics/facts-and-assertions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/facts-and-assertions/README.md
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/CCNOTCircuits.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/CCNOTCircuits.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/CCNOTCircuitsMetrics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/CCNOTCircuitsMetrics.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/CCNOTCircuitsTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/CCNOTCircuitsTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/ControlledSWAP.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/ControlledSWAP.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/ControlledSWAPMetrics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/ControlledSWAPMetrics.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/ControlledSWAPTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/ControlledSWAPTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MetricCalculationUtils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MetricCalculationUtils.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiControlledNOT.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiControlledNOT.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiControlledNOTMetrics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiControlledNOTMetrics.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiControlledNOTTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiControlledNOTTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiControlledXBorrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiControlledXBorrow.png
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiTargetCNOT.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiTargetCNOT.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/MultiTargetCNOTTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/MultiTargetCNOTTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/QuantumSimulatorTestTargets.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/QuantumSimulatorTestTargets.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/README.md
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuits.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuits.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuitsMetrics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuitsMetrics.cs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuitsTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/RepeatUntilSuccessCircuitsTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/SuperdenseCoding.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/SuperdenseCoding.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/SuperdenseCodingTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/SuperdenseCodingTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/Teleportation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/Teleportation.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/TeleportationTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/TeleportationTests.qs
--------------------------------------------------------------------------------
/samples/diagnostics/unit-testing/UnitTesting.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/unit-testing/UnitTesting.csproj
--------------------------------------------------------------------------------
/samples/diagnostics/visualization/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/visualization/README.md
--------------------------------------------------------------------------------
/samples/diagnostics/visualization/Visualizing Quantum Programs.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/diagnostics/visualization/Visualizing Quantum Programs.ipynb
--------------------------------------------------------------------------------
/samples/error-correction/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/README.md
--------------------------------------------------------------------------------
/samples/error-correction/bit-flip-code/BitFlipCode.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/bit-flip-code/BitFlipCode.csproj
--------------------------------------------------------------------------------
/samples/error-correction/bit-flip-code/BitFlipCode.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/bit-flip-code/BitFlipCode.qs
--------------------------------------------------------------------------------
/samples/error-correction/bit-flip-code/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/bit-flip-code/Program.qs
--------------------------------------------------------------------------------
/samples/error-correction/bit-flip-code/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/bit-flip-code/README.md
--------------------------------------------------------------------------------
/samples/error-correction/error-correction.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/error-correction.sln
--------------------------------------------------------------------------------
/samples/error-correction/syndrome/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/syndrome/README.md
--------------------------------------------------------------------------------
/samples/error-correction/syndrome/Syndrome.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/syndrome/Syndrome.csproj
--------------------------------------------------------------------------------
/samples/error-correction/syndrome/Syndrome.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/error-correction/syndrome/Syndrome.qs
--------------------------------------------------------------------------------
/samples/getting-started/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/README.md
--------------------------------------------------------------------------------
/samples/getting-started/azure-quantum/azure-quantum-resource-id.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/azure-quantum/azure-quantum-resource-id.png
--------------------------------------------------------------------------------
/samples/getting-started/azure-quantum/cirq/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/azure-quantum/cirq/README.md
--------------------------------------------------------------------------------
/samples/getting-started/azure-quantum/provider-specific/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/azure-quantum/provider-specific/README.md
--------------------------------------------------------------------------------
/samples/getting-started/azure-quantum/qiskit/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/azure-quantum/qiskit/README.md
--------------------------------------------------------------------------------
/samples/getting-started/getting-started.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/getting-started.sln
--------------------------------------------------------------------------------
/samples/getting-started/intro-to-iqsharp/Notebook.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/intro-to-iqsharp/Notebook.ipynb
--------------------------------------------------------------------------------
/samples/getting-started/intro-to-iqsharp/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/intro-to-iqsharp/Operations.qs
--------------------------------------------------------------------------------
/samples/getting-started/intro-to-iqsharp/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/intro-to-iqsharp/README.md
--------------------------------------------------------------------------------
/samples/getting-started/measurement/Measurement.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/measurement/Measurement.csproj
--------------------------------------------------------------------------------
/samples/getting-started/measurement/Measurement.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/measurement/Measurement.qs
--------------------------------------------------------------------------------
/samples/getting-started/measurement/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/measurement/README.md
--------------------------------------------------------------------------------
/samples/getting-started/qrng/Qrng.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/qrng/Qrng.csproj
--------------------------------------------------------------------------------
/samples/getting-started/qrng/Qrng.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/qrng/Qrng.qs
--------------------------------------------------------------------------------
/samples/getting-started/qrng/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/qrng/README.md
--------------------------------------------------------------------------------
/samples/getting-started/qrng/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/qrng/host.py
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/BernsteinVazirani.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/BernsteinVazirani.qs
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/DeutschJozsa.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/DeutschJozsa.qs
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/HiddenShift.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/HiddenShift.qs
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/Program.qs
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/README.md
--------------------------------------------------------------------------------
/samples/getting-started/simple-algorithms/SimpleAlgorithms.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simple-algorithms/SimpleAlgorithms.csproj
--------------------------------------------------------------------------------
/samples/getting-started/simulation/LargeSimulation.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simulation/LargeSimulation.ipynb
--------------------------------------------------------------------------------
/samples/getting-started/simulation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/simulation/README.md
--------------------------------------------------------------------------------
/samples/getting-started/teleportation/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/teleportation/Program.qs
--------------------------------------------------------------------------------
/samples/getting-started/teleportation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/teleportation/README.md
--------------------------------------------------------------------------------
/samples/getting-started/teleportation/TeleportationSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/teleportation/TeleportationSample.csproj
--------------------------------------------------------------------------------
/samples/getting-started/teleportation/TeleportationSample.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/teleportation/TeleportationSample.qs
--------------------------------------------------------------------------------
/samples/getting-started/teleportation/Utils.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/getting-started/teleportation/Utils.qs
--------------------------------------------------------------------------------
/samples/interoperability/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/README.md
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/README.md
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/csharp/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/csharp/Host.cs
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/csharp/csharp.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/csharp/csharp.csproj
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/dotnet.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/dotnet.sln
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/fsharp/Host.fs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/fsharp/Host.fs
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/fsharp/fsharp.fsproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/fsharp/fsharp.fsproj
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/qsharp/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/qsharp/Operations.qs
--------------------------------------------------------------------------------
/samples/interoperability/dotnet/qsharp/qsharp.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/dotnet/qsharp/qsharp.csproj
--------------------------------------------------------------------------------
/samples/interoperability/interoperability.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/interoperability.sln
--------------------------------------------------------------------------------
/samples/interoperability/python/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/python/Operations.qs
--------------------------------------------------------------------------------
/samples/interoperability/python/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/python/README.md
--------------------------------------------------------------------------------
/samples/interoperability/python/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/python/environment.yml
--------------------------------------------------------------------------------
/samples/interoperability/python/python-qsharp-interop.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/python/python-qsharp-interop.ipynb
--------------------------------------------------------------------------------
/samples/interoperability/python/python.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/python/python.csproj
--------------------------------------------------------------------------------
/samples/interoperability/qrng/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/qrng/Host.cs
--------------------------------------------------------------------------------
/samples/interoperability/qrng/Qrng.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/qrng/Qrng.csproj
--------------------------------------------------------------------------------
/samples/interoperability/qrng/Qrng.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/qrng/Qrng.qs
--------------------------------------------------------------------------------
/samples/interoperability/qrng/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/qrng/README.md
--------------------------------------------------------------------------------
/samples/interoperability/qrng/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/interoperability/qrng/host.py
--------------------------------------------------------------------------------
/samples/machine-learning/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/README.md
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/HalfMoons.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/HalfMoons.csproj
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/HalfMoons.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/HalfMoons.ipynb
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/Host.cs
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/README.md
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/Training.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/Training.qs
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/data.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/data.json
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/environment.yml
--------------------------------------------------------------------------------
/samples/machine-learning/half-moons/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/half-moons/host.py
--------------------------------------------------------------------------------
/samples/machine-learning/machine-learning.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/machine-learning.sln
--------------------------------------------------------------------------------
/samples/machine-learning/parallel-half-moons/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/parallel-half-moons/Host.cs
--------------------------------------------------------------------------------
/samples/machine-learning/parallel-half-moons/ParallelHalfMoons.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/parallel-half-moons/ParallelHalfMoons.csproj
--------------------------------------------------------------------------------
/samples/machine-learning/parallel-half-moons/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/parallel-half-moons/README.md
--------------------------------------------------------------------------------
/samples/machine-learning/parallel-half-moons/Training.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/parallel-half-moons/Training.qs
--------------------------------------------------------------------------------
/samples/machine-learning/parallel-half-moons/data.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/parallel-half-moons/data.json
--------------------------------------------------------------------------------
/samples/machine-learning/wine/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/wine/Host.cs
--------------------------------------------------------------------------------
/samples/machine-learning/wine/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/wine/README.md
--------------------------------------------------------------------------------
/samples/machine-learning/wine/Training.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/wine/Training.qs
--------------------------------------------------------------------------------
/samples/machine-learning/wine/Wine.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/wine/Wine.csproj
--------------------------------------------------------------------------------
/samples/machine-learning/wine/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/machine-learning/wine/host.py
--------------------------------------------------------------------------------
/samples/numerics/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/README.md
--------------------------------------------------------------------------------
/samples/numerics/custom-mod-add/CustomModAdd.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/custom-mod-add/CustomModAdd.csproj
--------------------------------------------------------------------------------
/samples/numerics/custom-mod-add/CustomModAdd.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/custom-mod-add/CustomModAdd.qs
--------------------------------------------------------------------------------
/samples/numerics/custom-mod-add/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/custom-mod-add/Program.qs
--------------------------------------------------------------------------------
/samples/numerics/custom-mod-add/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/custom-mod-add/README.md
--------------------------------------------------------------------------------
/samples/numerics/evaluating-functions/EvaluatePolynomial.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/evaluating-functions/EvaluatePolynomial.qs
--------------------------------------------------------------------------------
/samples/numerics/evaluating-functions/EvaluatingFunctions.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/evaluating-functions/EvaluatingFunctions.csproj
--------------------------------------------------------------------------------
/samples/numerics/evaluating-functions/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/evaluating-functions/Program.qs
--------------------------------------------------------------------------------
/samples/numerics/evaluating-functions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/evaluating-functions/README.md
--------------------------------------------------------------------------------
/samples/numerics/evaluating-functions/remez.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/evaluating-functions/remez.py
--------------------------------------------------------------------------------
/samples/numerics/numerics.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/numerics.sln
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/Program.cs
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/Program.qs
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/README.md
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/ResourceCounting.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/ResourceCounting.csproj
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/ResourceCounting.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/ResourceCounting.qs
--------------------------------------------------------------------------------
/samples/numerics/resource-counting/ResourcesEstimator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/numerics/resource-counting/ResourcesEstimator.cs
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/.clang-format
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/.gitignore
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/CMakeLists.txt
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/README.md
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/host/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/host/CMakeLists.txt
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/host/main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/host/main.cpp
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/oracle-generator/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/oracle-generator/CMakeLists.txt
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/oracle-generator/oracle_generator.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/oracle-generator/oracle_generator.cpp
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/oracle-generator/read_qir.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/oracle-generator/read_qir.hpp
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/oracle-generator/write_qir.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/oracle-generator/write_qir.hpp
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/qsharp/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/qsharp/Program.qs
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/qsharp/project.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/qsharp/project.csproj
--------------------------------------------------------------------------------
/samples/qir/oracle-generator/qsharp/project.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/qir/oracle-generator/qsharp/project.sln
--------------------------------------------------------------------------------
/samples/runtime/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/README.md
--------------------------------------------------------------------------------
/samples/runtime/autosubstitution/AutoSubstitution.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/autosubstitution/AutoSubstitution.csproj
--------------------------------------------------------------------------------
/samples/runtime/autosubstitution/AutoSubstitution.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/autosubstitution/AutoSubstitution.qs
--------------------------------------------------------------------------------
/samples/runtime/autosubstitution/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/autosubstitution/README.md
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/Driver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/Driver.cs
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/Operations.qs
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/OracleEmulation.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/OracleEmulation.csproj
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/PermutationOracle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/PermutationOracle.cs
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/PermutationOracle.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/PermutationOracle.qs
--------------------------------------------------------------------------------
/samples/runtime/oracle-emulation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/oracle-emulation/README.md
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/README.md
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/host/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/host/Program.qs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/host/host.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/host/host.csproj
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Formatter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Formatter.cs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Library.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Library.qs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Processor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Processor.cs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Simulator.Barrier.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Simulator.Barrier.cs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Simulator.SavePicture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Simulator.SavePicture.cs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/Simulator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/Simulator.cs
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/simulator/simulator.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/simulator/simulator.csproj
--------------------------------------------------------------------------------
/samples/runtime/qpic-simulator/t-injection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/qpic-simulator/t-injection.png
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-advanced/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-advanced/README.md
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-advanced/host/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-advanced/host/Program.qs
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-advanced/host/host.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-advanced/host/host.csproj
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-advanced/simulator/Simulator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-advanced/simulator/Simulator.cs
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-advanced/simulator/simulator.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-advanced/simulator/simulator.csproj
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-simple/Driver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-simple/Driver.cs
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-simple/Operation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-simple/Operation.qs
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-simple/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-simple/README.md
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-simple/ReversibleSimulator.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-simple/ReversibleSimulator.csproj
--------------------------------------------------------------------------------
/samples/runtime/reversible-simulator-simple/Simulator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/reversible-simulator-simple/Simulator.cs
--------------------------------------------------------------------------------
/samples/runtime/runtime.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/runtime.sln
--------------------------------------------------------------------------------
/samples/runtime/simulator-with-overrides/FaultyMeasurementsSimulator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/simulator-with-overrides/FaultyMeasurementsSimulator.cs
--------------------------------------------------------------------------------
/samples/runtime/simulator-with-overrides/Host.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/simulator-with-overrides/Host.cs
--------------------------------------------------------------------------------
/samples/runtime/simulator-with-overrides/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/simulator-with-overrides/Operations.qs
--------------------------------------------------------------------------------
/samples/runtime/simulator-with-overrides/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/simulator-with-overrides/README.md
--------------------------------------------------------------------------------
/samples/runtime/simulator-with-overrides/SimulatorWithOverrides.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/simulator-with-overrides/SimulatorWithOverrides.csproj
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/.gitignore:
--------------------------------------------------------------------------------
1 | wwwroot
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/Hubs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/Hubs.cs
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/Program.cs
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/README.md
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/Startup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/Startup.cs
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/StateVisualizer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/StateVisualizer.cs
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/StateVisualizer.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/StateVisualizer.csproj
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/appsettings.Development.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/appsettings.Development.json
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/appsettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/appsettings.json
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/package-lock.json
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/package.json
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/tsconfig.json
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/webpack.config.js
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/websrc/app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/websrc/app.ts
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/websrc/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/websrc/css/main.css
--------------------------------------------------------------------------------
/samples/runtime/state-visualizer/websrc/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/runtime/state-visualizer/websrc/index.html
--------------------------------------------------------------------------------
/samples/simulation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/README.md
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/PrepareGaussian.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/PrepareGaussian.qs
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/README.md
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/gaussian-initial-state.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/gaussian-initial-state.csproj
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/gaussian_definition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/gaussian_definition.jpg
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/host.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/host.py
--------------------------------------------------------------------------------
/samples/simulation/gaussian-initial-state/wavefunction_recursive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/gaussian-initial-state/wavefunction_recursive.png
--------------------------------------------------------------------------------
/samples/simulation/h2/command-line/H2SimulationSampleCmdLine.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/command-line/H2SimulationSampleCmdLine.csproj
--------------------------------------------------------------------------------
/samples/simulation/h2/command-line/Operations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/command-line/Operations.qs
--------------------------------------------------------------------------------
/samples/simulation/h2/command-line/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/command-line/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/h2/command-line/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/command-line/README.md
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/H2SimulationGUI.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/H2SimulationGUI.csproj
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/H2SimulationOperations.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/H2SimulationOperations.qs
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/Program.cs
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/README.md
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/index.html
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/main.js
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/package-lock.json
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/package.json
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/preload.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/preload.js
--------------------------------------------------------------------------------
/samples/simulation/h2/gui/renderer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/h2/gui/renderer.js
--------------------------------------------------------------------------------
/samples/simulation/hubbard/HubbardSimulation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/hubbard/HubbardSimulation.qs
--------------------------------------------------------------------------------
/samples/simulation/hubbard/HubbardSimulationSample.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/hubbard/HubbardSimulationSample.csproj
--------------------------------------------------------------------------------
/samples/simulation/hubbard/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/hubbard/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/hubbard/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/hubbard/README.md
--------------------------------------------------------------------------------
/samples/simulation/ising/IsingSamples.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/IsingSamples.csproj
--------------------------------------------------------------------------------
/samples/simulation/ising/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/README.md
--------------------------------------------------------------------------------
/samples/simulation/ising/adiabatic/AdiabaticIsing.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/adiabatic/AdiabaticIsing.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/adiabatic/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/adiabatic/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/generators/IsingGenerators.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/generators/IsingGenerators.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/generators/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/generators/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/phase-estimation/IsingPhaseEstimation.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/phase-estimation/IsingPhaseEstimation.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/phase-estimation/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/phase-estimation/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/simple/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/simple/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/simple/SimpleIsing.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/simple/SimpleIsing.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/trotter-evolution/IsingTrotter.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/trotter-evolution/IsingTrotter.qs
--------------------------------------------------------------------------------
/samples/simulation/ising/trotter-evolution/Program.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/ising/trotter-evolution/Program.qs
--------------------------------------------------------------------------------
/samples/simulation/qaoa/QAOA.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/qaoa/QAOA.csproj
--------------------------------------------------------------------------------
/samples/simulation/qaoa/QAOA.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/qaoa/QAOA.qs
--------------------------------------------------------------------------------
/samples/simulation/qaoa/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/qaoa/README.md
--------------------------------------------------------------------------------
/samples/simulation/qaoa/hamil1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/qaoa/hamil1.png
--------------------------------------------------------------------------------
/samples/simulation/qaoa/hamil2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/qaoa/hamil2.png
--------------------------------------------------------------------------------
/samples/simulation/simulation.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/simulation/simulation.sln
--------------------------------------------------------------------------------
/samples/tests/sample-tests/BayesianPETests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/BayesianPETests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/BitFlipTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/BitFlipTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/DatabaseSearchTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/DatabaseSearchTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/EnumerationTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/EnumerationTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/MeasurementTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/MeasurementTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/Properties/AssemblyInfo.cs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/README.md
--------------------------------------------------------------------------------
/samples/tests/sample-tests/RepeatUntilSuccessTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/RepeatUntilSuccessTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/SampleTests.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/SampleTests.csproj
--------------------------------------------------------------------------------
/samples/tests/sample-tests/SimpleAlgorithmsTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/SimpleAlgorithmsTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/Simulation/IsingTests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/Simulation/IsingTests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/Simulation/Tests.qs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/Simulation/Tests.qs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/SimulatorTestTargets.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/SimulatorTestTargets.cs
--------------------------------------------------------------------------------
/samples/tests/sample-tests/app.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/sample-tests/app.config
--------------------------------------------------------------------------------
/samples/tests/tests.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/samples/tests/tests.sln
--------------------------------------------------------------------------------
/utilities/InvokeNWChem.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/utilities/InvokeNWChem.psm1
--------------------------------------------------------------------------------
/utilities/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/utilities/README.md
--------------------------------------------------------------------------------
/utilities/sync.cmd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/utilities/sync.cmd
--------------------------------------------------------------------------------
/utilities/updateQDKVersion.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/microsoft/Quantum/HEAD/utilities/updateQDKVersion.sh
--------------------------------------------------------------------------------