├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── apt-system-requirements.txt ├── check ├── mypy ├── pylint ├── pytest ├── pytest-and-incremental-coverage ├── pytest-changed-files └── pytest2 ├── cirq ├── __init__.py ├── _version.py ├── abc.py ├── api │ └── google │ │ └── v1 │ │ ├── operations.proto │ │ ├── params.proto │ │ └── program.proto ├── circuits │ ├── __init__.py │ ├── circuit.py │ ├── circuit_dag.py │ ├── circuit_dag_test.py │ ├── circuit_test.py │ ├── convert_to_cz_and_single_gates.py │ ├── convert_to_cz_and_single_gates_test.py │ ├── drop_empty_moments.py │ ├── drop_empty_moments_test.py │ ├── drop_negligible.py │ ├── drop_negligible_test.py │ ├── expand_composite.py │ ├── expand_composite_test.py │ ├── insert_strategy.py │ ├── insert_strategy_test.py │ ├── merge_interactions.py │ ├── merge_interactions_test.py │ ├── merge_single_qubit_gates.py │ ├── merge_single_qubit_gates_test.py │ ├── moment.py │ ├── moment_test.py │ ├── optimization_pass.py │ ├── optimization_pass_test.py │ ├── qasm_output.py │ ├── qasm_output_test.py │ ├── text_diagram_drawer.py │ └── text_diagram_drawer_test.py ├── contrib │ ├── __init__.py │ ├── acquaintance │ │ ├── __init__.py │ │ ├── devices.py │ │ ├── devices_test.py │ │ ├── executor.py │ │ ├── executor_test.py │ │ ├── gates.py │ │ ├── gates_test.py │ │ ├── permutation.py │ │ ├── permutation_test.py │ │ ├── shift.py │ │ ├── shift_test.py │ │ ├── strategy.py │ │ └── strategy_test.py │ ├── contrib-requirements.txt │ ├── jobs │ │ ├── __init__.py │ │ ├── depolarizer_channel.py │ │ ├── depolarizer_channel_test.py │ │ ├── job.py │ │ └── job_test.py │ ├── paulistring │ │ ├── __init__.py │ │ ├── clifford_optimize.py │ │ ├── clifford_optimize_test.py │ │ ├── convert_gate_set.py │ │ ├── convert_gate_set_test.py │ │ ├── convert_to_clifford_gates.py │ │ ├── convert_to_clifford_gates_test.py │ │ ├── convert_to_pauli_string_phasors.py │ │ ├── convert_to_pauli_string_phasors_test.py │ │ ├── optimize.py │ │ ├── optimize_test.py │ │ ├── pauli_string_dag.py │ │ ├── pauli_string_dag_test.py │ │ ├── pauli_string_optimize.py │ │ ├── pauli_string_optimize_test.py │ │ ├── pauli_string_phasor.py │ │ ├── pauli_string_phasor_test.py │ │ ├── pauli_string_raw_types.py │ │ ├── pauli_string_raw_types_test.py │ │ ├── recombine.py │ │ ├── recombine_test.py │ │ ├── separate.py │ │ └── separate_test.py │ ├── qcircuit │ │ ├── __init__.py │ │ ├── qcircuit_diagram.py │ │ ├── qcircuit_diagrammable.py │ │ ├── qcircuit_pdf.py │ │ └── qcircuit_test.py │ └── quirk │ │ ├── __init__.py │ │ ├── export_to_quirk.py │ │ ├── export_to_quirk_test.py │ │ ├── linearize_circuit.py │ │ └── quirk_gate.py ├── decompositions.py ├── decompositions_test.py ├── devices │ ├── __init__.py │ ├── device.py │ ├── grid_qubit.py │ ├── grid_qubit_test.py │ └── unconstrained_device.py ├── extension │ ├── __init__.py │ ├── cast.py │ ├── cast_test.py │ ├── extensions.py │ ├── extensions_test.py │ └── potential_implementation.py ├── google │ ├── __init__.py │ ├── convert_to_xmon_gates.py │ ├── convert_to_xmon_gates_test.py │ ├── decompositions.py │ ├── decompositions_test.py │ ├── eject_full_w.py │ ├── eject_full_w_test.py │ ├── eject_z.py │ ├── eject_z_test.py │ ├── engine │ │ ├── __init__.py │ │ ├── engine.py │ │ ├── engine_test.py │ │ ├── env_config.py │ │ └── env_config_test.py │ ├── known_devices.py │ ├── merge_rotations.py │ ├── merge_rotations_test.py │ ├── optimize.py │ ├── optimize_test.py │ ├── params.py │ ├── params_test.py │ ├── programs.py │ ├── programs_test.py │ ├── sim │ │ ├── __init__.py │ │ ├── mem_manager.py │ │ ├── mem_manager_test.py │ │ ├── xmon_simulator.py │ │ ├── xmon_simulator_test.py │ │ ├── xmon_stepper.py │ │ └── xmon_stepper_test.py │ ├── xmon_device.py │ ├── xmon_device_test.py │ ├── xmon_gate_extensions.py │ ├── xmon_gates.py │ └── xmon_gates_test.py ├── linalg │ ├── __init__.py │ ├── combinators.py │ ├── combinators_test.py │ ├── decompositions.py │ ├── decompositions_test.py │ ├── diagonalize.py │ ├── diagonalize_test.py │ ├── predicates.py │ ├── predicates_test.py │ ├── tolerance.py │ ├── tolerance_test.py │ ├── transformations.py │ └── transformations_test.py ├── line │ ├── __init__.py │ ├── line_qubit.py │ ├── line_qubit_test.py │ └── placement │ │ ├── __init__.py │ │ ├── anneal.py │ │ ├── anneal_test.py │ │ ├── chip.py │ │ ├── chip_test.py │ │ ├── greedy.py │ │ ├── greedy_test.py │ │ ├── line.py │ │ ├── line_test.py │ │ ├── optimization.py │ │ ├── optimization_test.py │ │ ├── place_strategy.py │ │ ├── sequence.py │ │ └── sequence_test.py ├── ops │ ├── __init__.py │ ├── clifford_gate.py │ ├── clifford_gate_test.py │ ├── cnx_borrowed_bit_gate.py │ ├── cnx_linear_gate.py │ ├── common_gates.py │ ├── common_gates_test.py │ ├── controlled_gate.py │ ├── controlled_gate_test.py │ ├── eigen_gate.py │ ├── eigen_gate_test.py │ ├── gate_features.py │ ├── gate_features_test.py │ ├── gate_operation.py │ ├── gate_operation_test.py │ ├── incrementer_borrowedbit_gate.py │ ├── incrementer_inplace_gate.py │ ├── matrix_gates.py │ ├── matrix_gates_test.py │ ├── op_tree.py │ ├── op_tree_test.py │ ├── pauli.py │ ├── pauli_interaction_gate.py │ ├── pauli_interaction_gate_test.py │ ├── pauli_string.py │ ├── pauli_string_test.py │ ├── pauli_test.py │ ├── qubit_order.py │ ├── qubit_order_or_list.py │ ├── qubit_order_test.py │ ├── raw_types.py │ ├── raw_types_test.py │ ├── reversible_composite_gate.py │ ├── reversible_composite_gate_test.py │ ├── three_qubit_gates.py │ └── three_qubit_gates_test.py ├── protocols │ ├── __init__.py │ ├── unitary.py │ └── unitary_test.py ├── qutrit │ ├── __init__.py │ ├── btb_cnx_gate.py │ ├── common_gates.py │ ├── controlled_ternary_gate.py │ ├── evaluate.py │ └── raw_types.py ├── schedules │ ├── __init__.py │ ├── schedule.py │ ├── schedule_test.py │ ├── scheduled_operation.py │ ├── scheduled_operation_test.py │ ├── schedulers.py │ └── schedulers_test.py ├── study │ ├── __init__.py │ ├── resolver.py │ ├── resolver_test.py │ ├── sweepable.py │ ├── sweeps.py │ ├── sweeps_test.py │ ├── trial_result.py │ ├── trial_result_test.py │ ├── visualize.py │ └── visualize_test.py ├── testing │ ├── __init__.py │ ├── circuit_compare.py │ ├── circuit_compare_test.py │ ├── equals_tester.py │ ├── equals_tester_test.py │ ├── file_tester.py │ ├── file_tester_test.py │ ├── lin_alg_utils.py │ ├── lin_alg_utils_test.py │ ├── mock.py │ ├── only_test_in_python3.py │ ├── random_circuit.py │ ├── random_circuit_test.py │ ├── sample_circuits.py │ └── sample_circuits_test.py └── value │ ├── __init__.py │ ├── angle.py │ ├── angle_test.py │ ├── duration.py │ ├── duration_test.py │ ├── symbol.py │ ├── symbol_test.py │ ├── timestamp.py │ └── timestamp_test.py ├── continuous-integration ├── build-docs.sh ├── check.sh └── simple_check.sh ├── dev_tools ├── __init__.py ├── all_checks.py ├── auto_merge.py ├── auto_merge.sh ├── bash_scripts_test.py ├── check.py ├── check_incremental_coverage.py ├── check_pylint.py ├── check_pytest_v2.py ├── check_pytest_with_coverage.py ├── check_typecheck.py ├── conf │ ├── .coveragerc │ ├── .pylintrc │ ├── apt-list-dev-tools.txt │ ├── mypy.ini │ ├── pip-list-dev-tools.txt │ └── pip-list-python2.7-test-tools.txt ├── env_tools.py ├── git_env_tools.py ├── github_repository.py ├── incremental_coverage.py ├── incremental_coverage_test.py ├── prepared_env.py ├── produce-package.sh ├── profiling │ ├── __init__.py │ ├── benchmark_simulators.py │ └── benchmark_simulators_test.py ├── run_checks.py ├── run_pytest_and_incremental_coverage.py ├── run_simple_checks.py ├── shell_tools.py └── shell_tools_test.py ├── docs ├── CircuitMomentOperation.png ├── Cirq_logo_color.svg ├── Makefile ├── __init__.py ├── _templates │ └── autosummary │ │ ├── class.rst │ │ └── module.rst ├── advanced.rst ├── api.rst ├── circuits.md ├── conf.py ├── development.md ├── extensions.md ├── gates.md ├── index.rst ├── install.md ├── optimization.md ├── requirements.txt ├── resources │ ├── EnergyDef.gif │ ├── HamiltonianDef.gif │ └── StateDef.gif ├── schedules.md ├── simulation.md ├── snippets_test.py ├── table_of_contents.md └── tutorial.md ├── examples ├── __init__.py ├── bcs_mean_field.py ├── bell_inequality.py ├── bernstein_vazirani.py ├── examples_test.py ├── grover.py ├── hello_qubit.py ├── phase_estimator.py ├── place_on_bristlecone.py ├── quantum_fourier_transform.py └── supremacy.py ├── main_script.py ├── python2.7-generate.sh ├── python2.7-requirements.txt ├── qutrits-cirq-requirements.txt ├── release.md ├── requirements.txt ├── results ├── README.md ├── crunch_numbers.py ├── fix_data.py ├── pranav_raw_simulation_data │ ├── .DS_Store │ ├── bare-qutrit-1.txt │ ├── bare-qutrit-2.txt │ ├── current-sc-qutrit-1.txt │ ├── current-sc-qutrit-2.txt │ ├── current-sc-qutrit-3.txt │ ├── current-sc-qutrit-4.txt │ ├── dressed-qutrit-1.txt │ ├── dressed-qutrit-2.txt │ ├── future-better-gates-and-t1-qutrit-1.txt │ ├── future-better-gates-and-t1-qutrit-2.txt │ ├── future-better-gates-and-t1-qutrit-3.txt │ ├── future-better-gates-and-t1-qutrit-4.txt │ ├── future-better-gates-qutrit-1.txt │ ├── future-better-gates-qutrit-2.txt │ ├── future-better-gates-qutrit-3.txt │ ├── future-better-gates-qutrit-4.txt │ ├── future-better-t1-qutrit-1.txt │ ├── future-better-t1-qutrit-2.txt │ ├── future-better-t1-qutrit-3.txt │ ├── future-better-t1-qutrit-4.txt │ ├── future-sc-qutrit-1.txt │ ├── future-sc-qutrit-2.txt │ ├── future-sc-qutrit-3.txt │ ├── future-sc-qutrit-4.txt │ ├── new_future-better-gates-and-t1-qutrit-1.txt │ ├── new_future-better-gates-and-t1-qutrit-2.txt │ ├── new_future-better-gates-and-t1-qutrit-3.txt │ ├── new_future-better-gates-and-t1-qutrit-4.txt │ ├── new_future-better-gates-qutrit-1.txt │ ├── new_future-better-gates-qutrit-2.txt │ ├── new_future-better-gates-qutrit-3.txt │ ├── new_future-better-gates-qutrit-4.txt │ ├── new_future-better-t1-qutrit-1.txt │ ├── new_future-better-t1-qutrit-2.txt │ ├── new_future-better-t1-qutrit-3.txt │ ├── new_future-better-t1-qutrit-4.txt │ ├── new_future-sc-qutrit-1.txt │ ├── new_future-sc-qutrit-2.txt │ ├── new_future-sc-qutrit-3.txt │ ├── new_future-sc-qutrit-4.txt │ ├── qubit-sc-1.txt │ ├── qubit-sc-2.txt │ ├── qubit-sc-3.txt │ ├── qubit-sc-4.txt │ ├── qubit-sc-better-gate-1.txt │ ├── qubit-sc-better-gate-2.txt │ ├── qubit-sc-better-gate-3.txt │ ├── qubit-sc-better-gate-4.txt │ ├── qubit-sc-better-gate-and-t1-1.txt │ ├── qubit-sc-better-gate-and-t1-2.txt │ ├── qubit-sc-better-gate-and-t1-4.txt │ ├── qubit-sc-better-t1-1.txt │ ├── qubit-sc-better-t1-2.txt │ ├── qubit-sc-better-t1-3.txt │ ├── qubit-sc-better-t1-4.txt │ └── reformat_pranav_data.py ├── results-2018-11-28 │ ├── results-sim-0000-0000.log │ ├── results-sim-0000-0001.log │ ├── results-sim-0000-0002.log │ ├── results-sim-0000-0003.log │ ├── results-sim-0001-0000.log │ ├── results-sim-0001-0001.log │ ├── results-sim-0001-0002.log │ ├── results-sim-0001-0003.log │ ├── results-sim-0002-0000.log │ ├── results-sim-0002-0001.log │ ├── results-sim-0002-0002.log │ ├── results-sim-0002-0003.log │ ├── results-sim-0003-0000.log │ ├── results-sim-0003-0001.log │ ├── results-sim-0003-0002.log │ ├── results-sim-0003-0003.log │ ├── results-sim-0004-0000.log │ ├── results-sim-0004-0001.log │ ├── results-sim-0004-0002.log │ ├── results-sim-0004-0003.log │ ├── results-sim-0005-0000.log │ ├── results-sim-0005-0001.log │ ├── results-sim-0005-0002.log │ ├── results-sim-0005-0003.log │ ├── results-sim-0006-0000.log │ ├── results-sim-0006-0001.log │ ├── results-sim-0006-0002.log │ ├── results-sim-0006-0003.log │ ├── results-sim-0007-0000.log │ ├── results-sim-0007-0001.log │ ├── results-sim-0007-0002.log │ ├── results-sim-0007-0003.log │ ├── results-sim-0008-0000.log │ ├── results-sim-0008-0001.log │ ├── results-sim-0008-0002.log │ ├── results-sim-0008-0003.log │ ├── results-sim-0009-0000.log │ ├── results-sim-0009-0001.log │ ├── results-sim-0009-0002.log │ ├── results-sim-0009-0003.log │ ├── results-sim-0010-0000.log │ ├── results-sim-0010-0001.log │ ├── results-sim-0010-0002.log │ ├── results-sim-0010-0003.log │ ├── results-sim-0011-0000.log │ ├── results-sim-0011-0001.log │ ├── results-sim-0011-0002.log │ ├── results-sim-0011-0003.log │ ├── results-sim-0012-0000.log │ ├── results-sim-0012-0001.log │ ├── results-sim-0012-0002.log │ ├── results-sim-0012-0003.log │ ├── results-sim-0013-0000.log │ ├── results-sim-0013-0001.log │ ├── results-sim-0013-0002.log │ ├── results-sim-0013-0003.log │ ├── results-sim-0014-0000.log │ ├── results-sim-0014-0001.log │ ├── results-sim-0014-0002.log │ ├── results-sim-0014-0003.log │ ├── results-sim-0015-0000.log │ ├── results-sim-0015-0001.log │ ├── results-sim-0015-0002.log │ └── results-sim-0015-0003.log ├── results-2018-11-30 │ ├── results-sim-0000-0000.log │ ├── results-sim-0000-0001.log │ ├── results-sim-0000-0002.log │ ├── results-sim-0000-0003.log │ ├── results-sim-0001-0000.log │ ├── results-sim-0001-0001.log │ ├── results-sim-0001-0002.log │ ├── results-sim-0001-0003.log │ ├── results-sim-0002-0000.log │ ├── results-sim-0002-0001.log │ ├── results-sim-0002-0002.log │ ├── results-sim-0002-0003.log │ ├── results-sim-0003-0000.log │ ├── results-sim-0003-0001.log │ ├── results-sim-0003-0002.log │ ├── results-sim-0003-0003.log │ ├── results-sim-0004-0000.log │ ├── results-sim-0004-0001.log │ ├── results-sim-0004-0002.log │ ├── results-sim-0004-0003.log │ ├── results-sim-0005-0000.log │ ├── results-sim-0005-0001.log │ ├── results-sim-0005-0002.log │ ├── results-sim-0005-0003.log │ ├── results-sim-0006-0000.log │ ├── results-sim-0006-0001.log │ ├── results-sim-0006-0002.log │ ├── results-sim-0006-0003.log │ ├── results-sim-0007-0000.log │ ├── results-sim-0007-0001.log │ ├── results-sim-0007-0002.log │ ├── results-sim-0007-0003.log │ ├── results-sim-0008-0000.log │ ├── results-sim-0008-0001.log │ ├── results-sim-0008-0002.log │ ├── results-sim-0008-0003.log │ ├── results-sim-0009-0000.log │ ├── results-sim-0009-0001.log │ ├── results-sim-0009-0002.log │ ├── results-sim-0009-0003.log │ ├── results-sim-0010-0000.log │ ├── results-sim-0010-0001.log │ ├── results-sim-0010-0002.log │ ├── results-sim-0010-0003.log │ ├── results-sim-0011-0000.log │ ├── results-sim-0011-0001.log │ ├── results-sim-0011-0002.log │ ├── results-sim-0011-0003.log │ ├── results-sim-0012-0000.log │ ├── results-sim-0012-0001.log │ ├── results-sim-0012-0002.log │ ├── results-sim-0012-0003.log │ ├── results-sim-0013-0000.log │ ├── results-sim-0013-0001.log │ ├── results-sim-0013-0002.log │ ├── results-sim-0013-0003.log │ ├── results-sim-0014-0000.log │ ├── results-sim-0014-0001.log │ ├── results-sim-0014-0002.log │ ├── results-sim-0014-0003.log │ ├── results-sim-0015-0000.log │ ├── results-sim-0015-0001.log │ ├── results-sim-0015-0002.log │ ├── results-sim-0015-0003.log │ ├── results-sim-0016-0000.log │ ├── results-sim-0016-0001.log │ ├── results-sim-0016-0002.log │ ├── results-sim-0016-0003.log │ ├── results-sim-0017-0000.log │ ├── results-sim-0017-0001.log │ ├── results-sim-0017-0002.log │ ├── results-sim-0017-0003.log │ ├── results-sim-0018-0000.log │ ├── results-sim-0018-0001.log │ ├── results-sim-0018-0002.log │ ├── results-sim-0018-0003.log │ ├── results-sim-0019-0000.log │ ├── results-sim-0019-0001.log │ ├── results-sim-0019-0002.log │ ├── results-sim-0019-0003.log │ ├── results-sim-0020-0000.log │ ├── results-sim-0020-0001.log │ ├── results-sim-0020-0002.log │ └── results-sim-0020-0003.log └── results-2018-11-30b │ ├── results-sim-0000-0000.log │ ├── results-sim-0000-0001.log │ ├── results-sim-0000-0002.log │ ├── results-sim-0000-0003.log │ ├── results-sim-0001-0000.log │ ├── results-sim-0001-0001.log │ ├── results-sim-0001-0002.log │ ├── results-sim-0001-0003.log │ ├── results-sim-0002-0000.log │ ├── results-sim-0002-0001.log │ ├── results-sim-0002-0002.log │ ├── results-sim-0002-0003.log │ ├── results-sim-0003-0000.log │ ├── results-sim-0003-0001.log │ ├── results-sim-0003-0002.log │ ├── results-sim-0003-0003.log │ ├── results-sim-0004-0000.log │ ├── results-sim-0004-0001.log │ ├── results-sim-0004-0002.log │ ├── results-sim-0004-0003.log │ ├── results-sim-0005-0000.log │ ├── results-sim-0005-0001.log │ ├── results-sim-0005-0002.log │ ├── results-sim-0005-0003.log │ ├── results-sim-0006-0000.log │ ├── results-sim-0006-0001.log │ ├── results-sim-0006-0002.log │ ├── results-sim-0006-0003.log │ ├── results-sim-0007-0000.log │ ├── results-sim-0007-0001.log │ ├── results-sim-0007-0002.log │ ├── results-sim-0007-0003.log │ ├── results-sim-0008-0000.log │ ├── results-sim-0008-0001.log │ ├── results-sim-0008-0002.log │ ├── results-sim-0008-0003.log │ ├── results-sim-0009-0000.log │ ├── results-sim-0009-0001.log │ ├── results-sim-0009-0002.log │ ├── results-sim-0009-0003.log │ ├── results-sim-0010-0000.log │ ├── results-sim-0010-0001.log │ ├── results-sim-0010-0002.log │ ├── results-sim-0010-0003.log │ ├── results-sim-0011-0000.log │ ├── results-sim-0011-0001.log │ ├── results-sim-0011-0002.log │ ├── results-sim-0011-0003.log │ ├── results-sim-0012-0000.log │ ├── results-sim-0012-0001.log │ ├── results-sim-0012-0002.log │ ├── results-sim-0012-0003.log │ ├── results-sim-0013-0000.log │ ├── results-sim-0013-0001.log │ ├── results-sim-0013-0002.log │ ├── results-sim-0013-0003.log │ ├── results-sim-0014-0000.log │ ├── results-sim-0014-0001.log │ ├── results-sim-0014-0002.log │ ├── results-sim-0014-0003.log │ ├── results-sim-0015-0000.log │ ├── results-sim-0015-0001.log │ ├── results-sim-0015-0002.log │ ├── results-sim-0015-0003.log │ ├── results-sim-0016-0000.log │ ├── results-sim-0016-0001.log │ ├── results-sim-0016-0002.log │ ├── results-sim-0016-0003.log │ ├── results-sim-0017-0000.log │ ├── results-sim-0017-0001.log │ ├── results-sim-0017-0002.log │ ├── results-sim-0017-0003.log │ ├── results-sim-0018-0000.log │ ├── results-sim-0018-0001.log │ ├── results-sim-0018-0002.log │ ├── results-sim-0018-0003.log │ ├── results-sim-0019-0000.log │ ├── results-sim-0019-0001.log │ ├── results-sim-0019-0002.log │ ├── results-sim-0019-0003.log │ ├── results-sim-0020-0000.log │ ├── results-sim-0020-0001.log │ ├── results-sim-0020-0002.log │ ├── results-sim-0020-0003.log │ ├── results-sim-0021-0000.log │ ├── results-sim-0021-0001.log │ ├── results-sim-0021-0002.log │ ├── results-sim-0021-0003.log │ ├── results-sim-0022-0000.log │ ├── results-sim-0022-0001.log │ ├── results-sim-0022-0002.log │ ├── results-sim-0022-0003.log │ ├── results-sim-0023-0000.log │ ├── results-sim-0023-0001.log │ ├── results-sim-0023-0002.log │ ├── results-sim-0023-0003.log │ ├── results-sim-0024-0000.log │ ├── results-sim-0024-0001.log │ ├── results-sim-0024-0002.log │ ├── results-sim-0024-0003.log │ ├── results-sim-0025-0000.log │ ├── results-sim-0025-0001.log │ ├── results-sim-0025-0002.log │ ├── results-sim-0025-0003.log │ ├── results-sim-0026-0000.log │ ├── results-sim-0026-0001.log │ ├── results-sim-0026-0002.log │ ├── results-sim-0026-0003.log │ ├── results-sim-0027-0000.log │ ├── results-sim-0027-0001.log │ ├── results-sim-0027-0002.log │ ├── results-sim-0027-0003.log │ ├── results-sim-0028-0000.log │ ├── results-sim-0028-0001.log │ ├── results-sim-0028-0002.log │ ├── results-sim-0028-0003.log │ ├── results-sim-0029-0000.log │ ├── results-sim-0029-0001.log │ ├── results-sim-0029-0002.log │ ├── results-sim-0029-0003.log │ ├── results-sim-0030-0000.log │ ├── results-sim-0030-0001.log │ ├── results-sim-0030-0002.log │ ├── results-sim-0030-0003.log │ ├── results-sim-0031-0000.log │ ├── results-sim-0031-0001.log │ ├── results-sim-0031-0002.log │ ├── results-sim-0031-0003.log │ ├── results-sim-0032-0000.log │ ├── results-sim-0032-0001.log │ ├── results-sim-0032-0002.log │ ├── results-sim-0032-0003.log │ ├── results-sim-0033-0000.log │ ├── results-sim-0033-0001.log │ ├── results-sim-0033-0002.log │ ├── results-sim-0033-0003.log │ ├── results-sim-0034-0000.log │ ├── results-sim-0034-0001.log │ ├── results-sim-0034-0002.log │ ├── results-sim-0034-0003.log │ ├── results-sim-0035-0000.log │ ├── results-sim-0035-0001.log │ ├── results-sim-0035-0002.log │ ├── results-sim-0035-0003.log │ ├── results-sim-0036-0000.log │ ├── results-sim-0036-0001.log │ ├── results-sim-0036-0002.log │ ├── results-sim-0036-0003.log │ ├── results-sim-0037-0000.log │ ├── results-sim-0037-0001.log │ ├── results-sim-0037-0002.log │ ├── results-sim-0037-0003.log │ ├── results-sim-0038-0000.log │ ├── results-sim-0038-0001.log │ ├── results-sim-0038-0002.log │ ├── results-sim-0038-0003.log │ ├── results-sim-0039-0000.log │ ├── results-sim-0039-0001.log │ ├── results-sim-0039-0002.log │ ├── results-sim-0039-0003.log │ ├── results-sim-0040-0000.log │ ├── results-sim-0040-0001.log │ ├── results-sim-0040-0002.log │ ├── results-sim-0040-0003.log │ ├── results-sim-0041-0000.log │ ├── results-sim-0041-0001.log │ ├── results-sim-0041-0002.log │ ├── results-sim-0041-0003.log │ ├── results-sim-0042-0000.log │ ├── results-sim-0042-0001.log │ ├── results-sim-0042-0002.log │ ├── results-sim-0042-0003.log │ ├── results-sim-0043-0000.log │ ├── results-sim-0043-0001.log │ ├── results-sim-0043-0002.log │ ├── results-sim-0043-0003.log │ ├── results-sim-0044-0000.log │ ├── results-sim-0044-0001.log │ ├── results-sim-0044-0002.log │ ├── results-sim-0044-0003.log │ ├── results-sim-0045-0000.log │ ├── results-sim-0045-0001.log │ ├── results-sim-0045-0002.log │ ├── results-sim-0045-0003.log │ ├── results-sim-0046-0000.log │ ├── results-sim-0046-0001.log │ ├── results-sim-0046-0002.log │ ├── results-sim-0046-0003.log │ ├── results-sim-0047-0000.log │ ├── results-sim-0047-0001.log │ ├── results-sim-0047-0002.log │ ├── results-sim-0047-0003.log │ ├── results-sim-0048-0000.log │ ├── results-sim-0048-0001.log │ ├── results-sim-0048-0002.log │ ├── results-sim-0048-0003.log │ ├── results-sim-0049-0000.log │ ├── results-sim-0049-0001.log │ ├── results-sim-0049-0002.log │ ├── results-sim-0049-0003.log │ ├── results-sim-0050-0000.log │ ├── results-sim-0050-0001.log │ ├── results-sim-0050-0002.log │ ├── results-sim-0050-0003.log │ ├── results-sim-0051-0000.log │ ├── results-sim-0051-0001.log │ ├── results-sim-0051-0002.log │ ├── results-sim-0051-0003.log │ ├── results-sim-0052-0000.log │ ├── results-sim-0052-0001.log │ ├── results-sim-0052-0002.log │ ├── results-sim-0052-0003.log │ ├── results-sim-0053-0000.log │ ├── results-sim-0053-0001.log │ ├── results-sim-0053-0002.log │ ├── results-sim-0053-0003.log │ ├── results-sim-0054-0000.log │ ├── results-sim-0054-0001.log │ ├── results-sim-0054-0002.log │ ├── results-sim-0054-0003.log │ ├── results-sim-0055-0000.log │ ├── results-sim-0055-0001.log │ ├── results-sim-0055-0002.log │ ├── results-sim-0055-0003.log │ ├── results-sim-0056-0000.log │ ├── results-sim-0056-0001.log │ ├── results-sim-0056-0002.log │ ├── results-sim-0056-0003.log │ ├── results-sim-0057-0000.log │ ├── results-sim-0057-0001.log │ ├── results-sim-0057-0002.log │ ├── results-sim-0057-0003.log │ ├── results-sim-0058-0000.log │ ├── results-sim-0058-0001.log │ ├── results-sim-0058-0002.log │ ├── results-sim-0058-0003.log │ ├── results-sim-0059-0000.log │ ├── results-sim-0059-0001.log │ ├── results-sim-0059-0002.log │ ├── results-sim-0059-0003.log │ ├── results-sim-0060-0000.log │ ├── results-sim-0060-0001.log │ ├── results-sim-0060-0002.log │ ├── results-sim-0060-0003.log │ ├── results-sim-0063-0000.log │ ├── results-sim-0063-0001.log │ ├── results-sim-0063-0002.log │ └── results-sim-0063-0003.log ├── setup.cfg ├── setup.py ├── style.md └── third_party └── sphinx ├── LICENSE ├── README.md └── sphinx └── ext └── autosummary └── templates └── autosummary ├── class.rst └── module.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/README.rst -------------------------------------------------------------------------------- /apt-system-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/apt-system-requirements.txt -------------------------------------------------------------------------------- /check/mypy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/mypy -------------------------------------------------------------------------------- /check/pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/pylint -------------------------------------------------------------------------------- /check/pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/pytest -------------------------------------------------------------------------------- /check/pytest-and-incremental-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/pytest-and-incremental-coverage -------------------------------------------------------------------------------- /check/pytest-changed-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/pytest-changed-files -------------------------------------------------------------------------------- /check/pytest2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/check/pytest2 -------------------------------------------------------------------------------- /cirq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/__init__.py -------------------------------------------------------------------------------- /cirq/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/_version.py -------------------------------------------------------------------------------- /cirq/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/abc.py -------------------------------------------------------------------------------- /cirq/api/google/v1/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/api/google/v1/operations.proto -------------------------------------------------------------------------------- /cirq/api/google/v1/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/api/google/v1/params.proto -------------------------------------------------------------------------------- /cirq/api/google/v1/program.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/api/google/v1/program.proto -------------------------------------------------------------------------------- /cirq/circuits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/__init__.py -------------------------------------------------------------------------------- /cirq/circuits/circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/circuit.py -------------------------------------------------------------------------------- /cirq/circuits/circuit_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/circuit_dag.py -------------------------------------------------------------------------------- /cirq/circuits/circuit_dag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/circuit_dag_test.py -------------------------------------------------------------------------------- /cirq/circuits/circuit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/circuit_test.py -------------------------------------------------------------------------------- /cirq/circuits/convert_to_cz_and_single_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/convert_to_cz_and_single_gates.py -------------------------------------------------------------------------------- /cirq/circuits/convert_to_cz_and_single_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/convert_to_cz_and_single_gates_test.py -------------------------------------------------------------------------------- /cirq/circuits/drop_empty_moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/drop_empty_moments.py -------------------------------------------------------------------------------- /cirq/circuits/drop_empty_moments_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/drop_empty_moments_test.py -------------------------------------------------------------------------------- /cirq/circuits/drop_negligible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/drop_negligible.py -------------------------------------------------------------------------------- /cirq/circuits/drop_negligible_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/drop_negligible_test.py -------------------------------------------------------------------------------- /cirq/circuits/expand_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/expand_composite.py -------------------------------------------------------------------------------- /cirq/circuits/expand_composite_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/expand_composite_test.py -------------------------------------------------------------------------------- /cirq/circuits/insert_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/insert_strategy.py -------------------------------------------------------------------------------- /cirq/circuits/insert_strategy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/insert_strategy_test.py -------------------------------------------------------------------------------- /cirq/circuits/merge_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/merge_interactions.py -------------------------------------------------------------------------------- /cirq/circuits/merge_interactions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/merge_interactions_test.py -------------------------------------------------------------------------------- /cirq/circuits/merge_single_qubit_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/merge_single_qubit_gates.py -------------------------------------------------------------------------------- /cirq/circuits/merge_single_qubit_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/merge_single_qubit_gates_test.py -------------------------------------------------------------------------------- /cirq/circuits/moment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/moment.py -------------------------------------------------------------------------------- /cirq/circuits/moment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/moment_test.py -------------------------------------------------------------------------------- /cirq/circuits/optimization_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/optimization_pass.py -------------------------------------------------------------------------------- /cirq/circuits/optimization_pass_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/optimization_pass_test.py -------------------------------------------------------------------------------- /cirq/circuits/qasm_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/qasm_output.py -------------------------------------------------------------------------------- /cirq/circuits/qasm_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/qasm_output_test.py -------------------------------------------------------------------------------- /cirq/circuits/text_diagram_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/text_diagram_drawer.py -------------------------------------------------------------------------------- /cirq/circuits/text_diagram_drawer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/circuits/text_diagram_drawer_test.py -------------------------------------------------------------------------------- /cirq/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/devices.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/devices_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/devices_test.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/executor.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/executor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/executor_test.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/gates.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/gates_test.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/permutation.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/permutation_test.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/shift.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/shift_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/shift_test.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/strategy.py -------------------------------------------------------------------------------- /cirq/contrib/acquaintance/strategy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/acquaintance/strategy_test.py -------------------------------------------------------------------------------- /cirq/contrib/contrib-requirements.txt: -------------------------------------------------------------------------------- 1 | # Runtime requirements for the python 3 version of cirq. 2 | 3 | pylatex==1.3.* 4 | -------------------------------------------------------------------------------- /cirq/contrib/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/jobs/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/jobs/depolarizer_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/jobs/depolarizer_channel.py -------------------------------------------------------------------------------- /cirq/contrib/jobs/depolarizer_channel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/jobs/depolarizer_channel_test.py -------------------------------------------------------------------------------- /cirq/contrib/jobs/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/jobs/job.py -------------------------------------------------------------------------------- /cirq/contrib/jobs/job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/jobs/job_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/clifford_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/clifford_optimize.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/clifford_optimize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/clifford_optimize_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_gate_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_gate_set.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_gate_set_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_gate_set_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_to_clifford_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_to_clifford_gates.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_to_clifford_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_to_clifford_gates_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_to_pauli_string_phasors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_to_pauli_string_phasors.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/convert_to_pauli_string_phasors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/convert_to_pauli_string_phasors_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/optimize.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/optimize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/optimize_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_dag.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_dag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_dag_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_optimize.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_optimize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_optimize_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_phasor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_phasor.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_phasor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_phasor_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_raw_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_raw_types.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/pauli_string_raw_types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/pauli_string_raw_types_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/recombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/recombine.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/recombine_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/recombine_test.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/separate.py -------------------------------------------------------------------------------- /cirq/contrib/paulistring/separate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/paulistring/separate_test.py -------------------------------------------------------------------------------- /cirq/contrib/qcircuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/qcircuit/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/qcircuit/qcircuit_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/qcircuit/qcircuit_diagram.py -------------------------------------------------------------------------------- /cirq/contrib/qcircuit/qcircuit_diagrammable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/qcircuit/qcircuit_diagrammable.py -------------------------------------------------------------------------------- /cirq/contrib/qcircuit/qcircuit_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/qcircuit/qcircuit_pdf.py -------------------------------------------------------------------------------- /cirq/contrib/qcircuit/qcircuit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/qcircuit/qcircuit_test.py -------------------------------------------------------------------------------- /cirq/contrib/quirk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/quirk/__init__.py -------------------------------------------------------------------------------- /cirq/contrib/quirk/export_to_quirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/quirk/export_to_quirk.py -------------------------------------------------------------------------------- /cirq/contrib/quirk/export_to_quirk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/quirk/export_to_quirk_test.py -------------------------------------------------------------------------------- /cirq/contrib/quirk/linearize_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/quirk/linearize_circuit.py -------------------------------------------------------------------------------- /cirq/contrib/quirk/quirk_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/contrib/quirk/quirk_gate.py -------------------------------------------------------------------------------- /cirq/decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/decompositions.py -------------------------------------------------------------------------------- /cirq/decompositions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/decompositions_test.py -------------------------------------------------------------------------------- /cirq/devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/devices/__init__.py -------------------------------------------------------------------------------- /cirq/devices/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/devices/device.py -------------------------------------------------------------------------------- /cirq/devices/grid_qubit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/devices/grid_qubit.py -------------------------------------------------------------------------------- /cirq/devices/grid_qubit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/devices/grid_qubit_test.py -------------------------------------------------------------------------------- /cirq/devices/unconstrained_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/devices/unconstrained_device.py -------------------------------------------------------------------------------- /cirq/extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/__init__.py -------------------------------------------------------------------------------- /cirq/extension/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/cast.py -------------------------------------------------------------------------------- /cirq/extension/cast_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/cast_test.py -------------------------------------------------------------------------------- /cirq/extension/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/extensions.py -------------------------------------------------------------------------------- /cirq/extension/extensions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/extensions_test.py -------------------------------------------------------------------------------- /cirq/extension/potential_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/extension/potential_implementation.py -------------------------------------------------------------------------------- /cirq/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/__init__.py -------------------------------------------------------------------------------- /cirq/google/convert_to_xmon_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/convert_to_xmon_gates.py -------------------------------------------------------------------------------- /cirq/google/convert_to_xmon_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/convert_to_xmon_gates_test.py -------------------------------------------------------------------------------- /cirq/google/decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/decompositions.py -------------------------------------------------------------------------------- /cirq/google/decompositions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/decompositions_test.py -------------------------------------------------------------------------------- /cirq/google/eject_full_w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/eject_full_w.py -------------------------------------------------------------------------------- /cirq/google/eject_full_w_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/eject_full_w_test.py -------------------------------------------------------------------------------- /cirq/google/eject_z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/eject_z.py -------------------------------------------------------------------------------- /cirq/google/eject_z_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/eject_z_test.py -------------------------------------------------------------------------------- /cirq/google/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/engine/__init__.py -------------------------------------------------------------------------------- /cirq/google/engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/engine/engine.py -------------------------------------------------------------------------------- /cirq/google/engine/engine_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/engine/engine_test.py -------------------------------------------------------------------------------- /cirq/google/engine/env_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/engine/env_config.py -------------------------------------------------------------------------------- /cirq/google/engine/env_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/engine/env_config_test.py -------------------------------------------------------------------------------- /cirq/google/known_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/known_devices.py -------------------------------------------------------------------------------- /cirq/google/merge_rotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/merge_rotations.py -------------------------------------------------------------------------------- /cirq/google/merge_rotations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/merge_rotations_test.py -------------------------------------------------------------------------------- /cirq/google/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/optimize.py -------------------------------------------------------------------------------- /cirq/google/optimize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/optimize_test.py -------------------------------------------------------------------------------- /cirq/google/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/params.py -------------------------------------------------------------------------------- /cirq/google/params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/params_test.py -------------------------------------------------------------------------------- /cirq/google/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/programs.py -------------------------------------------------------------------------------- /cirq/google/programs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/programs_test.py -------------------------------------------------------------------------------- /cirq/google/sim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/__init__.py -------------------------------------------------------------------------------- /cirq/google/sim/mem_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/mem_manager.py -------------------------------------------------------------------------------- /cirq/google/sim/mem_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/mem_manager_test.py -------------------------------------------------------------------------------- /cirq/google/sim/xmon_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/xmon_simulator.py -------------------------------------------------------------------------------- /cirq/google/sim/xmon_simulator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/xmon_simulator_test.py -------------------------------------------------------------------------------- /cirq/google/sim/xmon_stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/xmon_stepper.py -------------------------------------------------------------------------------- /cirq/google/sim/xmon_stepper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/sim/xmon_stepper_test.py -------------------------------------------------------------------------------- /cirq/google/xmon_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/xmon_device.py -------------------------------------------------------------------------------- /cirq/google/xmon_device_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/xmon_device_test.py -------------------------------------------------------------------------------- /cirq/google/xmon_gate_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/xmon_gate_extensions.py -------------------------------------------------------------------------------- /cirq/google/xmon_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/xmon_gates.py -------------------------------------------------------------------------------- /cirq/google/xmon_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/google/xmon_gates_test.py -------------------------------------------------------------------------------- /cirq/linalg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/__init__.py -------------------------------------------------------------------------------- /cirq/linalg/combinators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/combinators.py -------------------------------------------------------------------------------- /cirq/linalg/combinators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/combinators_test.py -------------------------------------------------------------------------------- /cirq/linalg/decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/decompositions.py -------------------------------------------------------------------------------- /cirq/linalg/decompositions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/decompositions_test.py -------------------------------------------------------------------------------- /cirq/linalg/diagonalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/diagonalize.py -------------------------------------------------------------------------------- /cirq/linalg/diagonalize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/diagonalize_test.py -------------------------------------------------------------------------------- /cirq/linalg/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/predicates.py -------------------------------------------------------------------------------- /cirq/linalg/predicates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/predicates_test.py -------------------------------------------------------------------------------- /cirq/linalg/tolerance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/tolerance.py -------------------------------------------------------------------------------- /cirq/linalg/tolerance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/tolerance_test.py -------------------------------------------------------------------------------- /cirq/linalg/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/transformations.py -------------------------------------------------------------------------------- /cirq/linalg/transformations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/linalg/transformations_test.py -------------------------------------------------------------------------------- /cirq/line/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/__init__.py -------------------------------------------------------------------------------- /cirq/line/line_qubit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/line_qubit.py -------------------------------------------------------------------------------- /cirq/line/line_qubit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/line_qubit_test.py -------------------------------------------------------------------------------- /cirq/line/placement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/__init__.py -------------------------------------------------------------------------------- /cirq/line/placement/anneal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/anneal.py -------------------------------------------------------------------------------- /cirq/line/placement/anneal_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/anneal_test.py -------------------------------------------------------------------------------- /cirq/line/placement/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/chip.py -------------------------------------------------------------------------------- /cirq/line/placement/chip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/chip_test.py -------------------------------------------------------------------------------- /cirq/line/placement/greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/greedy.py -------------------------------------------------------------------------------- /cirq/line/placement/greedy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/greedy_test.py -------------------------------------------------------------------------------- /cirq/line/placement/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/line.py -------------------------------------------------------------------------------- /cirq/line/placement/line_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/line_test.py -------------------------------------------------------------------------------- /cirq/line/placement/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/optimization.py -------------------------------------------------------------------------------- /cirq/line/placement/optimization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/optimization_test.py -------------------------------------------------------------------------------- /cirq/line/placement/place_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/place_strategy.py -------------------------------------------------------------------------------- /cirq/line/placement/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/sequence.py -------------------------------------------------------------------------------- /cirq/line/placement/sequence_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/line/placement/sequence_test.py -------------------------------------------------------------------------------- /cirq/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/__init__.py -------------------------------------------------------------------------------- /cirq/ops/clifford_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/clifford_gate.py -------------------------------------------------------------------------------- /cirq/ops/clifford_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/clifford_gate_test.py -------------------------------------------------------------------------------- /cirq/ops/cnx_borrowed_bit_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/cnx_borrowed_bit_gate.py -------------------------------------------------------------------------------- /cirq/ops/cnx_linear_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/cnx_linear_gate.py -------------------------------------------------------------------------------- /cirq/ops/common_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/common_gates.py -------------------------------------------------------------------------------- /cirq/ops/common_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/common_gates_test.py -------------------------------------------------------------------------------- /cirq/ops/controlled_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/controlled_gate.py -------------------------------------------------------------------------------- /cirq/ops/controlled_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/controlled_gate_test.py -------------------------------------------------------------------------------- /cirq/ops/eigen_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/eigen_gate.py -------------------------------------------------------------------------------- /cirq/ops/eigen_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/eigen_gate_test.py -------------------------------------------------------------------------------- /cirq/ops/gate_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/gate_features.py -------------------------------------------------------------------------------- /cirq/ops/gate_features_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/gate_features_test.py -------------------------------------------------------------------------------- /cirq/ops/gate_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/gate_operation.py -------------------------------------------------------------------------------- /cirq/ops/gate_operation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/gate_operation_test.py -------------------------------------------------------------------------------- /cirq/ops/incrementer_borrowedbit_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/incrementer_borrowedbit_gate.py -------------------------------------------------------------------------------- /cirq/ops/incrementer_inplace_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/incrementer_inplace_gate.py -------------------------------------------------------------------------------- /cirq/ops/matrix_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/matrix_gates.py -------------------------------------------------------------------------------- /cirq/ops/matrix_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/matrix_gates_test.py -------------------------------------------------------------------------------- /cirq/ops/op_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/op_tree.py -------------------------------------------------------------------------------- /cirq/ops/op_tree_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/op_tree_test.py -------------------------------------------------------------------------------- /cirq/ops/pauli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli.py -------------------------------------------------------------------------------- /cirq/ops/pauli_interaction_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli_interaction_gate.py -------------------------------------------------------------------------------- /cirq/ops/pauli_interaction_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli_interaction_gate_test.py -------------------------------------------------------------------------------- /cirq/ops/pauli_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli_string.py -------------------------------------------------------------------------------- /cirq/ops/pauli_string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli_string_test.py -------------------------------------------------------------------------------- /cirq/ops/pauli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/pauli_test.py -------------------------------------------------------------------------------- /cirq/ops/qubit_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/qubit_order.py -------------------------------------------------------------------------------- /cirq/ops/qubit_order_or_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/qubit_order_or_list.py -------------------------------------------------------------------------------- /cirq/ops/qubit_order_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/qubit_order_test.py -------------------------------------------------------------------------------- /cirq/ops/raw_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/raw_types.py -------------------------------------------------------------------------------- /cirq/ops/raw_types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/raw_types_test.py -------------------------------------------------------------------------------- /cirq/ops/reversible_composite_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/reversible_composite_gate.py -------------------------------------------------------------------------------- /cirq/ops/reversible_composite_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/reversible_composite_gate_test.py -------------------------------------------------------------------------------- /cirq/ops/three_qubit_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/three_qubit_gates.py -------------------------------------------------------------------------------- /cirq/ops/three_qubit_gates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/ops/three_qubit_gates_test.py -------------------------------------------------------------------------------- /cirq/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/protocols/__init__.py -------------------------------------------------------------------------------- /cirq/protocols/unitary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/protocols/unitary.py -------------------------------------------------------------------------------- /cirq/protocols/unitary_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/protocols/unitary_test.py -------------------------------------------------------------------------------- /cirq/qutrit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/__init__.py -------------------------------------------------------------------------------- /cirq/qutrit/btb_cnx_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/btb_cnx_gate.py -------------------------------------------------------------------------------- /cirq/qutrit/common_gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/common_gates.py -------------------------------------------------------------------------------- /cirq/qutrit/controlled_ternary_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/controlled_ternary_gate.py -------------------------------------------------------------------------------- /cirq/qutrit/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/evaluate.py -------------------------------------------------------------------------------- /cirq/qutrit/raw_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/qutrit/raw_types.py -------------------------------------------------------------------------------- /cirq/schedules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/__init__.py -------------------------------------------------------------------------------- /cirq/schedules/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/schedule.py -------------------------------------------------------------------------------- /cirq/schedules/schedule_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/schedule_test.py -------------------------------------------------------------------------------- /cirq/schedules/scheduled_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/scheduled_operation.py -------------------------------------------------------------------------------- /cirq/schedules/scheduled_operation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/scheduled_operation_test.py -------------------------------------------------------------------------------- /cirq/schedules/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/schedulers.py -------------------------------------------------------------------------------- /cirq/schedules/schedulers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/schedules/schedulers_test.py -------------------------------------------------------------------------------- /cirq/study/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/__init__.py -------------------------------------------------------------------------------- /cirq/study/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/resolver.py -------------------------------------------------------------------------------- /cirq/study/resolver_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/resolver_test.py -------------------------------------------------------------------------------- /cirq/study/sweepable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/sweepable.py -------------------------------------------------------------------------------- /cirq/study/sweeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/sweeps.py -------------------------------------------------------------------------------- /cirq/study/sweeps_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/sweeps_test.py -------------------------------------------------------------------------------- /cirq/study/trial_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/trial_result.py -------------------------------------------------------------------------------- /cirq/study/trial_result_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/trial_result_test.py -------------------------------------------------------------------------------- /cirq/study/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/visualize.py -------------------------------------------------------------------------------- /cirq/study/visualize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/study/visualize_test.py -------------------------------------------------------------------------------- /cirq/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/__init__.py -------------------------------------------------------------------------------- /cirq/testing/circuit_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/circuit_compare.py -------------------------------------------------------------------------------- /cirq/testing/circuit_compare_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/circuit_compare_test.py -------------------------------------------------------------------------------- /cirq/testing/equals_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/equals_tester.py -------------------------------------------------------------------------------- /cirq/testing/equals_tester_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/equals_tester_test.py -------------------------------------------------------------------------------- /cirq/testing/file_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/file_tester.py -------------------------------------------------------------------------------- /cirq/testing/file_tester_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/file_tester_test.py -------------------------------------------------------------------------------- /cirq/testing/lin_alg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/lin_alg_utils.py -------------------------------------------------------------------------------- /cirq/testing/lin_alg_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/lin_alg_utils_test.py -------------------------------------------------------------------------------- /cirq/testing/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/mock.py -------------------------------------------------------------------------------- /cirq/testing/only_test_in_python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/only_test_in_python3.py -------------------------------------------------------------------------------- /cirq/testing/random_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/random_circuit.py -------------------------------------------------------------------------------- /cirq/testing/random_circuit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/random_circuit_test.py -------------------------------------------------------------------------------- /cirq/testing/sample_circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/sample_circuits.py -------------------------------------------------------------------------------- /cirq/testing/sample_circuits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/testing/sample_circuits_test.py -------------------------------------------------------------------------------- /cirq/value/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/__init__.py -------------------------------------------------------------------------------- /cirq/value/angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/angle.py -------------------------------------------------------------------------------- /cirq/value/angle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/angle_test.py -------------------------------------------------------------------------------- /cirq/value/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/duration.py -------------------------------------------------------------------------------- /cirq/value/duration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/duration_test.py -------------------------------------------------------------------------------- /cirq/value/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/symbol.py -------------------------------------------------------------------------------- /cirq/value/symbol_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/symbol_test.py -------------------------------------------------------------------------------- /cirq/value/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/timestamp.py -------------------------------------------------------------------------------- /cirq/value/timestamp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/cirq/value/timestamp_test.py -------------------------------------------------------------------------------- /continuous-integration/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/continuous-integration/build-docs.sh -------------------------------------------------------------------------------- /continuous-integration/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/continuous-integration/check.sh -------------------------------------------------------------------------------- /continuous-integration/simple_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/continuous-integration/simple_check.sh -------------------------------------------------------------------------------- /dev_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/__init__.py -------------------------------------------------------------------------------- /dev_tools/all_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/all_checks.py -------------------------------------------------------------------------------- /dev_tools/auto_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/auto_merge.py -------------------------------------------------------------------------------- /dev_tools/auto_merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/auto_merge.sh -------------------------------------------------------------------------------- /dev_tools/bash_scripts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/bash_scripts_test.py -------------------------------------------------------------------------------- /dev_tools/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check.py -------------------------------------------------------------------------------- /dev_tools/check_incremental_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check_incremental_coverage.py -------------------------------------------------------------------------------- /dev_tools/check_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check_pylint.py -------------------------------------------------------------------------------- /dev_tools/check_pytest_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check_pytest_v2.py -------------------------------------------------------------------------------- /dev_tools/check_pytest_with_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check_pytest_with_coverage.py -------------------------------------------------------------------------------- /dev_tools/check_typecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/check_typecheck.py -------------------------------------------------------------------------------- /dev_tools/conf/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/conf/.coveragerc -------------------------------------------------------------------------------- /dev_tools/conf/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/conf/.pylintrc -------------------------------------------------------------------------------- /dev_tools/conf/apt-list-dev-tools.txt: -------------------------------------------------------------------------------- 1 | virtualenvwrapper 2 | -------------------------------------------------------------------------------- /dev_tools/conf/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/conf/mypy.ini -------------------------------------------------------------------------------- /dev_tools/conf/pip-list-dev-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/conf/pip-list-dev-tools.txt -------------------------------------------------------------------------------- /dev_tools/conf/pip-list-python2.7-test-tools.txt: -------------------------------------------------------------------------------- 1 | 3to2~=1.1 2 | mock~=2.0 3 | pytest~=3.2 4 | -------------------------------------------------------------------------------- /dev_tools/env_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/env_tools.py -------------------------------------------------------------------------------- /dev_tools/git_env_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/git_env_tools.py -------------------------------------------------------------------------------- /dev_tools/github_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/github_repository.py -------------------------------------------------------------------------------- /dev_tools/incremental_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/incremental_coverage.py -------------------------------------------------------------------------------- /dev_tools/incremental_coverage_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/incremental_coverage_test.py -------------------------------------------------------------------------------- /dev_tools/prepared_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/prepared_env.py -------------------------------------------------------------------------------- /dev_tools/produce-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/produce-package.sh -------------------------------------------------------------------------------- /dev_tools/profiling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/profiling/__init__.py -------------------------------------------------------------------------------- /dev_tools/profiling/benchmark_simulators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/profiling/benchmark_simulators.py -------------------------------------------------------------------------------- /dev_tools/profiling/benchmark_simulators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/profiling/benchmark_simulators_test.py -------------------------------------------------------------------------------- /dev_tools/run_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/run_checks.py -------------------------------------------------------------------------------- /dev_tools/run_pytest_and_incremental_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/run_pytest_and_incremental_coverage.py -------------------------------------------------------------------------------- /dev_tools/run_simple_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/run_simple_checks.py -------------------------------------------------------------------------------- /dev_tools/shell_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/shell_tools.py -------------------------------------------------------------------------------- /dev_tools/shell_tools_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/dev_tools/shell_tools_test.py -------------------------------------------------------------------------------- /docs/CircuitMomentOperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/CircuitMomentOperation.png -------------------------------------------------------------------------------- /docs/Cirq_logo_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/Cirq_logo_color.svg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/__init__.py -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- 1 | ../../../third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- 1 | ../../../third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/circuits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/circuits.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/extensions.md -------------------------------------------------------------------------------- /docs/gates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/gates.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/optimization.md: -------------------------------------------------------------------------------- 1 | ## Optimization Passes 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/resources/EnergyDef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/resources/EnergyDef.gif -------------------------------------------------------------------------------- /docs/resources/HamiltonianDef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/resources/HamiltonianDef.gif -------------------------------------------------------------------------------- /docs/resources/StateDef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/resources/StateDef.gif -------------------------------------------------------------------------------- /docs/schedules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/schedules.md -------------------------------------------------------------------------------- /docs/simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/simulation.md -------------------------------------------------------------------------------- /docs/snippets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/snippets_test.py -------------------------------------------------------------------------------- /docs/table_of_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/table_of_contents.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/bcs_mean_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/bcs_mean_field.py -------------------------------------------------------------------------------- /examples/bell_inequality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/bell_inequality.py -------------------------------------------------------------------------------- /examples/bernstein_vazirani.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/bernstein_vazirani.py -------------------------------------------------------------------------------- /examples/examples_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/examples_test.py -------------------------------------------------------------------------------- /examples/grover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/grover.py -------------------------------------------------------------------------------- /examples/hello_qubit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/hello_qubit.py -------------------------------------------------------------------------------- /examples/phase_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/phase_estimator.py -------------------------------------------------------------------------------- /examples/place_on_bristlecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/place_on_bristlecone.py -------------------------------------------------------------------------------- /examples/quantum_fourier_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/quantum_fourier_transform.py -------------------------------------------------------------------------------- /examples/supremacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/examples/supremacy.py -------------------------------------------------------------------------------- /main_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/main_script.py -------------------------------------------------------------------------------- /python2.7-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/python2.7-generate.sh -------------------------------------------------------------------------------- /python2.7-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/python2.7-requirements.txt -------------------------------------------------------------------------------- /qutrits-cirq-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/qutrits-cirq-requirements.txt -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/release.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/README.md -------------------------------------------------------------------------------- /results/crunch_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/crunch_numbers.py -------------------------------------------------------------------------------- /results/fix_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/fix_data.py -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/.DS_Store -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/bare-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/bare-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/bare-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/bare-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/current-sc-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/current-sc-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/current-sc-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/current-sc-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/current-sc-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/current-sc-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/current-sc-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/current-sc-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/dressed-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/dressed-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/dressed-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/dressed-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-and-t1-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-gates-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-gates-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-t1-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-t1-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-t1-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-t1-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-t1-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-t1-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-better-t1-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-better-t1-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-sc-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-sc-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-sc-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-sc-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-sc-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-sc-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/future-sc-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/future-sc-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-and-t1-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-gates-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-gates-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-t1-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-t1-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-t1-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-t1-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-t1-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-t1-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-better-t1-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-better-t1-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-sc-qutrit-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-sc-qutrit-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-sc-qutrit-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-sc-qutrit-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-sc-qutrit-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-sc-qutrit-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/new_future-sc-qutrit-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/new_future-sc-qutrit-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-gate-and-t1-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-t1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-t1-1.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-t1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-t1-2.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-t1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-t1-3.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/qubit-sc-better-t1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/qubit-sc-better-t1-4.txt -------------------------------------------------------------------------------- /results/pranav_raw_simulation_data/reformat_pranav_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/pranav_raw_simulation_data/reformat_pranav_data.py -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0000-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0000-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0000-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0000-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0000-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0000-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0000-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0000-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0001-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0001-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0001-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0001-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0001-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0001-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0001-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0001-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0002-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0002-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0002-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0002-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0002-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0002-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0002-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0002-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0003-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0003-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0003-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0003-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0003-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0003-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0003-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0003-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0004-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0004-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0004-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0004-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0004-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0004-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0004-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0004-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0005-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0005-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0005-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0005-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0005-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0005-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0005-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0005-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0006-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0006-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0006-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0006-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0006-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0006-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0006-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0006-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0007-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0007-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0007-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0007-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0007-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0007-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0007-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0007-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0008-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0008-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0008-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0008-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0008-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0008-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0008-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0008-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0009-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0009-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0009-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0009-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0009-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0009-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0009-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0009-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0010-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0010-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0010-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0010-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0010-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0010-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0010-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0010-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0011-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0011-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0011-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0011-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0011-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0011-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0011-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0011-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0012-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0012-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0012-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0012-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0012-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0012-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0012-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0012-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0013-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0013-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0013-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0013-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0013-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0013-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0013-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0013-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0014-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0014-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0014-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0014-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0014-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0014-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0014-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0014-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0015-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0015-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0015-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0015-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0015-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0015-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-28/results-sim-0015-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-28/results-sim-0015-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0000-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0000-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0000-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0000-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0000-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0000-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0000-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0000-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0001-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0001-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0001-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0001-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0001-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0001-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0001-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0001-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0002-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0002-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0002-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0002-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0002-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0002-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0002-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0002-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0003-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0003-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0003-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0003-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0003-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0003-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0003-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0003-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0004-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0004-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0004-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0004-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0004-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0004-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0004-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0004-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0005-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0005-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0005-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0005-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0005-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0005-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0005-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0005-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0006-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0006-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0006-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0006-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0006-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0006-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0006-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0006-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0007-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0007-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0007-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0007-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0007-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0007-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0007-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0007-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0008-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0008-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0008-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0008-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0008-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0008-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0008-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0008-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0009-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0009-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0009-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0009-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0009-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0009-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0009-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0009-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0010-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0010-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0010-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0010-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0010-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0010-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0010-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0010-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0011-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0011-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0011-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0011-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0011-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0011-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0011-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0011-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0012-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0012-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0012-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0012-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0012-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0012-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0012-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0012-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0013-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0013-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0013-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0013-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0013-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0013-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0013-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0013-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0014-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0014-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0014-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0014-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0014-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0014-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0014-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0014-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0015-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0015-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0015-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0015-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0015-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0015-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0015-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0015-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0016-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0016-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0016-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0016-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0016-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0016-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0016-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0016-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0017-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0017-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0017-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0017-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0017-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0017-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0017-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0017-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0018-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0018-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0018-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0018-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0018-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0018-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0018-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0018-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0019-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0019-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0019-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0019-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0019-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0019-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0019-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0019-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0020-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0020-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0020-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0020-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0020-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0020-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30/results-sim-0020-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30/results-sim-0020-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0000-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0000-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0000-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0000-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0000-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0000-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0000-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0000-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0001-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0001-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0001-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0001-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0001-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0001-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0001-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0001-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0002-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0002-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0002-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0002-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0002-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0002-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0002-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0002-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0003-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0003-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0003-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0003-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0003-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0003-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0003-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0003-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0004-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0004-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0004-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0004-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0004-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0004-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0004-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0004-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0005-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0005-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0005-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0005-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0005-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0005-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0005-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0005-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0006-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0006-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0006-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0006-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0006-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0006-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0006-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0006-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0007-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0007-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0007-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0007-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0007-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0007-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0007-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0007-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0008-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0008-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0008-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0008-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0008-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0008-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0008-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0008-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0009-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0009-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0009-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0009-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0009-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0009-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0009-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0009-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0010-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0010-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0010-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0010-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0010-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0010-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0010-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0010-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0011-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0011-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0011-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0011-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0011-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0011-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0011-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0011-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0012-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0012-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0012-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0012-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0012-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0012-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0012-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0012-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0013-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0013-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0013-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0013-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0013-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0013-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0013-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0013-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0014-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0014-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0014-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0014-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0014-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0014-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0014-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0014-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0015-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0015-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0015-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0015-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0015-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0015-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0015-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0015-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0016-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0016-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0016-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0016-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0016-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0016-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0016-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0016-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0017-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0017-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0017-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0017-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0017-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0017-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0017-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0017-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0018-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0018-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0018-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0018-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0018-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0018-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0018-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0018-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0019-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0019-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0019-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0019-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0019-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0019-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0019-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0019-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0020-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0020-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0020-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0020-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0020-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0020-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0020-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0020-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0021-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0021-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0021-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0021-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0021-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0021-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0021-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0021-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0022-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0022-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0022-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0022-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0022-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0022-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0022-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0022-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0023-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0023-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0023-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0023-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0023-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0023-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0023-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0023-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0024-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0024-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0024-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0024-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0024-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0024-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0024-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0024-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0025-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0025-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0025-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0025-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0025-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0025-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0025-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0025-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0026-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0026-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0026-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0026-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0026-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0026-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0026-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0026-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0027-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0027-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0027-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0027-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0027-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0027-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0027-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0027-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0028-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0028-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0028-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0028-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0028-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0028-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0028-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0028-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0029-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0029-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0029-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0029-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0029-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0029-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0029-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0029-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0030-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0030-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0030-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0030-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0030-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0030-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0030-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0030-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0031-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0031-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0031-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0031-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0031-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0031-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0031-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0031-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0032-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0032-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0032-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0032-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0032-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0032-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0032-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0032-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0033-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0033-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0033-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0033-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0033-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0033-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0033-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0033-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0034-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0034-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0034-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0034-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0034-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0034-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0034-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0034-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0035-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0035-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0035-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0035-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0035-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0035-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0035-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0035-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0036-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0036-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0036-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0036-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0036-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0036-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0036-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0036-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0037-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0037-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0037-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0037-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0037-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0037-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0037-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0037-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0038-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0038-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0038-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0038-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0038-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0038-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0038-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0038-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0039-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0039-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0039-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0039-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0039-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0039-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0039-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0039-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0040-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0040-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0040-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0040-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0040-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0040-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0040-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0040-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0041-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0041-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0041-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0041-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0041-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0041-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0041-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0041-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0042-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0042-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0042-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0042-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0042-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0042-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0042-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0042-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0043-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0043-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0043-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0043-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0043-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0043-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0043-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0043-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0044-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0044-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0044-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0044-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0044-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0044-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0044-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0044-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0045-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0045-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0045-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0045-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0045-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0045-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0045-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0045-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0046-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0046-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0046-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0046-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0046-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0046-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0046-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0046-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0047-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0047-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0047-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0047-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0047-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0047-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0047-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0047-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0048-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0048-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0048-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0048-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0048-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0048-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0048-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0048-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0049-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0049-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0049-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0049-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0049-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0049-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0049-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0049-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0050-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0050-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0050-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0050-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0050-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0050-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0050-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0050-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0051-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0051-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0051-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0051-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0051-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0051-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0051-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0051-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0052-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0052-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0052-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0052-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0052-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0052-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0052-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0052-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0053-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0053-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0053-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0053-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0053-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0053-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0053-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0053-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0054-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0054-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0054-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0054-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0054-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0054-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0054-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0054-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0055-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0055-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0055-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0055-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0055-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0055-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0055-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0055-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0056-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0056-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0056-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0056-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0056-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0056-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0056-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0056-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0057-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0057-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0057-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0057-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0057-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0057-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0057-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0057-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0058-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0058-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0058-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0058-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0058-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0058-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0058-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0058-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0059-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0059-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0059-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0059-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0059-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0059-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0059-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0059-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0060-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0060-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0060-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0060-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0060-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0060-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0060-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0060-0003.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0063-0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0063-0000.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0063-0001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0063-0001.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0063-0002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0063-0002.log -------------------------------------------------------------------------------- /results/results-2018-11-30b/results-sim-0063-0003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/results/results-2018-11-30b/results-sim-0063-0003.log -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/setup.py -------------------------------------------------------------------------------- /style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/style.md -------------------------------------------------------------------------------- /third_party/sphinx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/third_party/sphinx/LICENSE -------------------------------------------------------------------------------- /third_party/sphinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/third_party/sphinx/README.md -------------------------------------------------------------------------------- /third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/class.rst -------------------------------------------------------------------------------- /third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epiqc/qutrits/HEAD/third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/module.rst --------------------------------------------------------------------------------