├── .dockerignore ├── .github ├── actions │ ├── cpp-tests │ │ └── action.yaml │ └── python-tests │ │ └── action.yaml └── workflows │ ├── assets.yml │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── conan └── profiles │ ├── debug │ ├── debug-unitary │ ├── release │ ├── release-unitary │ ├── tests-debug │ ├── tests-debug-apple_clang-macos-arm64 │ ├── tests-debug-apple_clang-macos-x64 │ ├── tests-debug-clang-linux-arm64 │ ├── tests-debug-clang-linux-x64 │ ├── tests-debug-gcc-linux-arm64 │ ├── tests-debug-gcc-linux-x64 │ ├── tests-debug-msvc-windows-x64 │ ├── tests-debug-unitary │ ├── tests-release │ ├── tests-release-apple_clang-macos-arm64 │ ├── tests-release-apple_clang-macos-x64 │ ├── tests-release-clang-linux-arm64 │ ├── tests-release-clang-linux-x64 │ ├── tests-release-gcc-linux-arm64 │ ├── tests-release-gcc-linux-x64 │ ├── tests-release-msvc-windows-x64 │ └── tests-release-unitary ├── conanfile.py ├── conda-recipe ├── bld.bat ├── build.sh └── meta.yaml ├── docs ├── .conda.yml ├── .gitignore ├── Doxyfile ├── DoxygenLayout.xml ├── Makefile ├── colophon │ ├── changelog.rst │ └── contributors.rst ├── conf.py ├── developer │ ├── automation.rst │ ├── build.rst │ ├── conventions.rst │ ├── doxygen.rst │ ├── ir.rst │ ├── options.rst │ ├── passes.rst │ ├── readme.rst │ ├── release.rst │ └── resources.rst ├── figures │ ├── .DS_Store │ ├── dice.png │ ├── dice_hist.png │ └── qubit_number.png ├── index.rst ├── main-page.dox ├── manual │ ├── concepts.rst │ ├── dqcsim.rst │ ├── first_program.rst │ ├── installation.rst.template │ ├── qx.rst │ └── where_to_go_from_here.rst ├── old │ ├── classical_instructions.rst │ ├── compiler.rst │ ├── compiler_passes.rst │ ├── kernel.rst │ ├── passes │ │ ├── decomposition.rst │ │ ├── mapping.rst │ │ ├── optimization.rst │ │ └── scheduling.rst │ ├── platform.rst │ ├── program.rst │ └── quantum_gate.rst └── reference │ ├── architectures.rst.template │ ├── configuration.rst.template │ ├── cpp.rst │ ├── options.rst.template │ ├── passes.rst.template │ ├── python.rst │ └── resources.rst.template ├── include ├── openql ├── openql.h ├── openql_i.h └── ql │ ├── api │ ├── api.h │ ├── compiler.h │ ├── cqasm_reader.h │ ├── creg.h │ ├── declarations.h │ ├── kernel.h │ ├── misc.h │ ├── operation.h │ ├── pass.h │ ├── platform.h │ ├── program.h │ └── unitary.h │ ├── arch │ ├── architecture.h │ ├── cc │ │ ├── info.h │ │ └── pass │ │ │ └── gen │ │ │ └── vq1asm │ │ │ └── vq1asm.h │ ├── cc_light │ │ └── info.h │ ├── declarations.h │ ├── diamond │ │ ├── annotations.h │ │ ├── info.h │ │ └── pass │ │ │ └── gen │ │ │ └── microcode │ │ │ └── microcode.h │ ├── factory.h │ ├── info_base.h │ └── none │ │ └── info.h │ ├── com │ ├── ana │ │ ├── interaction_matrix.h │ │ └── metrics.h │ ├── cfg │ │ ├── build.h │ │ ├── consistency.h │ │ ├── dot.h │ │ ├── ops.h │ │ └── types.h │ ├── ddg │ │ ├── build.h │ │ ├── consistency.h │ │ ├── dot.h │ │ ├── ops.h │ │ └── types.h │ ├── dec │ │ ├── rules.h │ │ ├── structure.h │ │ └── unitary.h │ ├── map │ │ ├── expression_mapper.h │ │ ├── qubit_mapping.h │ │ └── reference_updater.h │ ├── options.h │ ├── sch │ │ ├── heuristics.h │ │ └── scheduler.h │ └── topology.h │ ├── ir │ ├── compat │ │ ├── bundle.h │ │ ├── classical.h │ │ ├── compat.h │ │ ├── cqasm_reader.h │ │ ├── gate.h │ │ ├── kernel.h │ │ ├── platform.h │ │ └── program.h │ ├── consistency.h │ ├── cqasm │ │ ├── read.h │ │ └── write.h │ ├── describe.h │ ├── ir.h │ ├── ir_gen_ex.h │ ├── new_to_old.h │ ├── old_to_new.h │ ├── operator_info.h │ ├── ops.h │ ├── prim.h │ └── swap_parameters.h │ ├── pass │ ├── ana │ │ ├── statistics │ │ │ ├── annotations.h │ │ │ ├── clean.h │ │ │ └── report.h │ │ └── visualize │ │ │ ├── circuit.h │ │ │ ├── interaction.h │ │ │ └── mapping.h │ ├── dec │ │ ├── generalize │ │ │ └── generalize.h │ │ ├── instructions │ │ │ └── instructions.h │ │ ├── specialize │ │ │ └── specialize.h │ │ └── structure │ │ │ └── structure.h │ ├── io │ │ └── cqasm │ │ │ ├── read.h │ │ │ └── report.h │ ├── map │ │ └── qubits │ │ │ ├── map │ │ │ └── map.h │ │ │ └── place_mip │ │ │ └── place_mip.h │ ├── opt │ │ ├── clifford │ │ │ └── optimize.h │ │ ├── const_prop │ │ │ └── const_prop.h │ │ └── dead_code_elim │ │ │ └── dead_code_elim.h │ └── sch │ │ ├── list_schedule │ │ └── list_schedule.h │ │ └── schedule │ │ └── schedule.h │ ├── pmgr │ ├── condition.h │ ├── declarations.h │ ├── factory.h │ ├── group.h │ ├── manager.h │ └── pass_types │ │ ├── base.h │ │ └── specializations.h │ ├── resource │ ├── instrument.h │ ├── inter_core_channel.h │ └── qubit.h │ ├── rmgr │ ├── declarations.h │ ├── factory.h │ ├── manager.h │ ├── resource_types │ │ └── base.h │ ├── state.h │ └── types.h │ ├── utils │ ├── compat.h │ ├── container_base.h │ ├── exception.h │ ├── filesystem.h │ ├── json.h │ ├── list.h │ ├── logger.h │ ├── map.h │ ├── misc.h │ ├── num.h │ ├── opt.h │ ├── options.h │ ├── pair.h │ ├── pairhash.h │ ├── progress.h │ ├── ptr.h │ ├── rangemap.h │ ├── set.h │ ├── str.h │ ├── tree-config.inc │ ├── tree.h │ ├── vcd.h │ └── vec.h │ └── version.h ├── pytest.ini ├── python ├── CMakeLists.txt ├── compat │ ├── UseSWIG.cmake │ ├── fix-swig-cmdline.py │ └── test-cmake-config │ │ ├── CMakeLists.txt │ │ └── values.cfg.template ├── manylinux │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── build │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── helper.sh │ └── test │ │ ├── Dockerfile │ │ ├── helper.sh │ │ └── test.sh ├── openql.i ├── openql │ └── __init__.py └── python_lib.py ├── res └── v1x │ ├── cq │ ├── example │ │ └── diamond.cq │ ├── golden │ │ ├── decompose_after_schedule_dec.cq │ │ ├── decompose_after_schedule_in.cq │ │ ├── decompose_after_schedule_sch.cq │ │ ├── decompose_before_schedule_dec.cq │ │ ├── decompose_before_schedule_in.cq │ │ ├── decompose_before_schedule_sch.cq │ │ ├── empty_infinite_loop_out.cq │ │ ├── structure_decomposition_for_out.cq │ │ ├── structure_decomposition_foreach_out.cq │ │ ├── structure_decomposition_goto_out.cq │ │ ├── structure_decomposition_if_else_out.cq │ │ ├── structure_decomposition_repeat_until_out.cq │ │ └── structure_decomposition_while_out.cq │ ├── test_cond_gate.cq │ ├── test_const_prop.cq │ ├── test_diamond.cq │ ├── test_empty_infinite_loop.cq │ ├── test_looping.cq │ ├── test_rus_elements.cq │ ├── test_structure_decomposition_for.cq │ ├── test_structure_decomposition_foreach.cq │ ├── test_structure_decomposition_goto.cq │ ├── test_structure_decomposition_if_else.cq │ ├── test_structure_decomposition_repeat_until.cq │ └── test_structure_decomposition_while.cq │ ├── json │ ├── config_cc.json │ ├── config_cc_light.json │ ├── config_cc_s17_direct_iq.json │ ├── config_cc_s17_direct_iq_openql_0_10.json │ ├── config_cc_s5_direct_iq.json │ ├── config_spin_demo_2811.json │ ├── test_179.json │ ├── test_cfg_CCL_long_duration.json │ ├── test_cfg_cc.json │ ├── test_cfg_cc_demo.json │ ├── test_cfg_cc_light_buffers_latencies.json │ ├── test_cfg_none.json │ ├── test_cfg_none_s7.json │ ├── test_cfg_none_simple.json │ ├── test_config_default.json │ ├── test_mapper_rig.json │ ├── test_multi_core_4x4_full.json │ ├── test_multi_core_64x16_full.json │ ├── test_multi_core_8x1024_full.json │ ├── test_structure_decomposition_platform.json │ └── visualizer │ │ ├── config_cc_light.json │ │ ├── config_cc_light_2.json │ │ ├── config_example_1.json │ │ ├── config_example_2.json │ │ ├── config_example_3.json │ │ ├── config_example_4.json │ │ ├── config_example_5.json │ │ ├── test_s7.json │ │ └── waveform_mapping.json │ ├── map │ └── example │ │ └── instructions.map │ ├── notebooks │ └── ccLightClassicalDemo.ipynb │ └── qasm │ ├── golden │ ├── AllXYLongDuration_last.qasm │ ├── basic.qasm │ ├── basic_scheduled.qasm │ ├── diamond_api_diamond_codegen.dqasm │ ├── diamond_api_scheduled.qasm │ ├── diamond_cqasm_diamond_codegen.dqasm │ ├── diamond_cqasm_scheduled.qasm │ ├── test_1_ALAP_last.qasm │ ├── test_1_qubit.qasm │ ├── test_2_qubit.qasm │ ├── test_3_qubit.qasm │ ├── test_7_ALAP_last.qasm │ ├── test_RAR_Control_ASAP.qasm │ ├── test_RAW_ASAP.qasm │ ├── test_WAR_ASAP.qasm │ ├── test_WAW_ASAP.qasm │ ├── test_adriaan_ALAP_last.qasm │ ├── test_barrier_all.qasm │ ├── test_barrier_last.qasm │ ├── test_cnot_2N_control_commute_scheduled.qasm │ ├── test_cnot_2N_target_commute_scheduled.qasm │ ├── test_cnot_2R_control_commute_scheduled.qasm │ ├── test_cnot_2R_non_commute_DAR_scheduled.qasm │ ├── test_cnot_2R_non_commute_RAD_scheduled.qasm │ ├── test_cnot_2R_target_commute_scheduled.qasm │ ├── test_cnot_NN_control_commute_scheduled.qasm │ ├── test_cnot_NN_non_commute_DAR_scheduled.qasm │ ├── test_cnot_NN_non_commute_RAD_scheduled.qasm │ ├── test_cnot_NN_target_commute_scheduled.qasm │ ├── test_cnot_mixed_commute_scheduled.qasm │ ├── test_cnot_variations_scheduled.qasm │ ├── test_cnot_x_2N_commute_scheduled.qasm │ ├── test_cnot_x_2R_commute_scheduled.qasm │ ├── test_cnot_x_NN_commute_scheduled.qasm │ ├── test_cnot_z_2N_commute_scheduled.qasm │ ├── test_cnot_z_2R_commute_scheduled.qasm │ ├── test_cnot_z_NN_commute_scheduled.qasm │ ├── test_condex_basic_scheduled.qasm │ ├── test_condex_cnot_last.qasm │ ├── test_condex_measure_last.qasm │ ├── test_condex_toffoli_compos_gate_last.qasm │ ├── test_conjugate.qasm │ ├── test_controlled_rotations_scheduled.qasm │ ├── test_controlled_single_qubit_gates_scheduled.qasm │ ├── test_controlled_two_qubit_gates_scheduled.qasm │ ├── test_cqasm_conditions.qasm │ ├── test_cqasm_custom_gates.qasm │ ├── test_cqasm_custom_gates_scheduled.qasm │ ├── test_cqasm_default_gates.qasm │ ├── test_cqasm_default_gates_scheduled.qasm │ ├── test_cqasm_real_numbers.qasm │ ├── test_cz_2N_any_commute_scheduled.qasm │ ├── test_cz_2R_any_commute_scheduled.qasm │ ├── test_cz_NN_any_commute_scheduled.qasm │ ├── test_decomposition_scheduled.qasm │ ├── test_detuned_2_ALAP_last.qasm │ ├── test_detuned_ALAP_last.qasm │ ├── test_edge_ALAP_last.qasm │ ├── test_edge_available_last.qasm │ ├── test_edge_busy_last.qasm │ ├── test_fast_feedback_last.qasm │ ├── test_flux_all_last.qasm │ ├── test_independence.qasm │ ├── test_issue_179_ALAP_last.qasm │ ├── test_mapper_all_D_last.qasm │ ├── test_mapper_all_D_opt_last.qasm │ ├── test_mapper_all_IP_last.qasm │ ├── test_mapper_all_NN_last.qasm │ ├── test_mapper_ling_ling_5_last.qasm │ ├── test_mapper_ling_ling_7_last.qasm │ ├── test_mapper_max_cut_last.qasm │ ├── test_mapper_one_D2_last.qasm │ ├── test_mapper_one_D4_last.qasm │ ├── test_mapper_one_NN_last.qasm │ ├── test_mc_all_last.qasm │ ├── test_mc_all_saturate_last.qasm │ ├── test_mc_comms_last.qasm │ ├── test_mc_locals_last.qasm │ ├── test_mc_non_comms_last.qasm │ ├── test_mc_wide_last.qasm │ ├── test_measure_available_01_last.qasm │ ├── test_measure_available_02_last.qasm │ ├── test_measure_busy_last.qasm │ ├── test_multi_controlled_scheduled.qasm │ ├── test_multiple_programs.qasm │ ├── test_parallel_programs.qasm │ ├── test_platform_modified_in_place_last.qasm │ ├── test_qubit_busy_last.qasm │ ├── test_qwg_2_ALAP_last.qasm │ ├── test_qwg_ALAP_last.qasm │ ├── test_qwg_available_01_last.qasm │ ├── test_qwg_available_02_last.qasm │ ├── test_qwg_busy_last.qasm │ ├── test_single_bit_kernel_operations.qasm │ ├── test_skip_yes_scheduled.qasm │ ├── test_smis_all_bundled_last.qasm │ ├── test_smis_last.qasm │ ├── test_smis_multi_kernel_last.qasm │ ├── test_smis_with_custom_gates_last.qasm │ ├── test_smit_all_bundled.qasm │ ├── test_smit_all_bundled_last.qasm │ ├── test_smit_last.qasm │ ├── test_sub_circuit_programs.qasm │ ├── test_swap_multi_ASAP.qasm │ ├── test_swap_single_ASAP.qasm │ └── test_wait_barrier_last.qasm │ ├── test_qi_example.initial.cq │ └── test_qi_example.scheduled.cq ├── setup.py ├── src ├── ql │ ├── api │ │ ├── compiler.cc │ │ ├── compiler.i │ │ ├── cqasm_reader.cc │ │ ├── cqasm_reader.i │ │ ├── creg.cc │ │ ├── creg.i │ │ ├── kernel.cc │ │ ├── kernel.i │ │ ├── misc.cc │ │ ├── misc.i │ │ ├── operation.cc │ │ ├── operation.i │ │ ├── pass.cc │ │ ├── pass.i │ │ ├── platform.cc │ │ ├── platform.i │ │ ├── program.cc │ │ ├── program.i │ │ ├── unitary.cc │ │ └── unitary.i │ ├── arch │ │ ├── architecture.cc │ │ ├── cc │ │ │ ├── info.cc │ │ │ ├── pass │ │ │ │ └── gen │ │ │ │ │ └── vq1asm │ │ │ │ │ ├── detail │ │ │ │ │ ├── backend.cc │ │ │ │ │ ├── backend.h │ │ │ │ │ ├── bundle_info.h │ │ │ │ │ ├── codegen.cc │ │ │ │ │ ├── codegen.h │ │ │ │ │ ├── codesection.cc │ │ │ │ │ ├── codesection.h │ │ │ │ │ ├── datapath.cc │ │ │ │ │ ├── datapath.h │ │ │ │ │ ├── functions.cc │ │ │ │ │ ├── functions.h │ │ │ │ │ ├── operands.cc │ │ │ │ │ ├── operands.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── settings.cc │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── vcd.cc │ │ │ │ │ └── vcd.h │ │ │ │ │ └── vq1asm.cc │ │ │ └── resources │ │ │ │ └── hwconf_default.json │ │ ├── cc_light │ │ │ ├── info.cc │ │ │ └── resources │ │ │ │ ├── hwconf_default.json │ │ │ │ ├── hwconf_s17.json │ │ │ │ ├── hwconf_s5.json │ │ │ │ └── hwconf_s7.json │ │ ├── diamond │ │ │ ├── info.cc │ │ │ ├── pass │ │ │ │ └── gen │ │ │ │ │ └── microcode │ │ │ │ │ ├── detail │ │ │ │ │ ├── functions.cc │ │ │ │ │ └── functions.h │ │ │ │ │ └── microcode.cc │ │ │ └── resources │ │ │ │ └── hwconf_default.json │ │ ├── factory.cc │ │ ├── info_base.cc │ │ └── none │ │ │ ├── info.cc │ │ │ └── resources │ │ │ └── hwconf_default.json │ ├── com │ │ ├── ana │ │ │ ├── interaction_matrix.cc │ │ │ └── metrics.cc │ │ ├── cfg │ │ │ ├── build.cc │ │ │ ├── consistency.cc │ │ │ ├── dot.cc │ │ │ └── ops.cc │ │ ├── ddg │ │ │ ├── build.cc │ │ │ ├── consistency.cc │ │ │ ├── dot.cc │ │ │ ├── ops.cc │ │ │ └── types.cc │ │ ├── dec │ │ │ ├── rules.cc │ │ │ ├── structure.cc │ │ │ └── unitary.cc │ │ ├── map │ │ │ ├── expression_mapper.cc │ │ │ ├── qubit_mapping.cc │ │ │ └── reference_updater.cc │ │ ├── options.cc │ │ ├── sch │ │ │ ├── heuristics.cc │ │ │ └── scheduler.cc │ │ └── topology.cc │ ├── config.h.template │ ├── ir │ │ ├── compat │ │ │ ├── bundle.cc │ │ │ ├── classical.cc │ │ │ ├── cqasm_reader.cc │ │ │ ├── detail │ │ │ │ ├── cqasm_reader.cc │ │ │ │ └── cqasm_reader.h │ │ │ ├── gate.cc │ │ │ ├── kernel.cc │ │ │ ├── platform.cc │ │ │ └── program.cc │ │ ├── consistency.cc │ │ ├── cqasm │ │ │ ├── read.cc │ │ │ └── write.cc │ │ ├── describe.cc │ │ ├── ir.tree │ │ ├── ir_gen_ex.cc │ │ ├── new_to_old.cc │ │ ├── old_to_new.cc │ │ ├── operator_info.cc │ │ ├── ops.cc │ │ └── prim.cc │ ├── pass │ │ ├── ana │ │ │ ├── statistics │ │ │ │ ├── annotations.cc │ │ │ │ ├── clean.cc │ │ │ │ ├── common.cc │ │ │ │ └── report.cc │ │ │ └── visualize │ │ │ │ ├── circuit.cc │ │ │ │ ├── detail │ │ │ │ ├── README.md │ │ │ │ ├── circuit.cc │ │ │ │ ├── circuit.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── image.cc │ │ │ │ ├── image.h │ │ │ │ ├── interaction.cc │ │ │ │ ├── interaction.h │ │ │ │ ├── mapping.cc │ │ │ │ ├── mapping.h │ │ │ │ ├── types.cc │ │ │ │ └── types.h │ │ │ │ ├── interaction.cc │ │ │ │ └── mapping.cc │ │ ├── dec │ │ │ ├── generalize │ │ │ │ └── generalize.cc │ │ │ ├── instructions │ │ │ │ └── instructions.cc │ │ │ ├── specialize │ │ │ │ └── specialize.cc │ │ │ └── structure │ │ │ │ └── structure.cc │ │ ├── io │ │ │ └── cqasm │ │ │ │ ├── read.cc │ │ │ │ └── report.cc │ │ ├── map │ │ │ └── qubits │ │ │ │ ├── map │ │ │ │ ├── detail │ │ │ │ │ ├── alter.cc │ │ │ │ │ ├── alter.h │ │ │ │ │ ├── free_cycle.cc │ │ │ │ │ ├── free_cycle.h │ │ │ │ │ ├── future.cc │ │ │ │ │ ├── future.h │ │ │ │ │ ├── mapper.cc │ │ │ │ │ ├── mapper.h │ │ │ │ │ ├── options.cc │ │ │ │ │ ├── options.h │ │ │ │ │ ├── past.cc │ │ │ │ │ └── past.h │ │ │ │ └── map.cc │ │ │ │ └── place_mip │ │ │ │ ├── detail │ │ │ │ ├── impl.cc │ │ │ │ └── impl.h │ │ │ │ └── place_mip.cc │ │ ├── opt │ │ │ ├── clifford │ │ │ │ ├── detail │ │ │ │ │ ├── clifford.cc │ │ │ │ │ └── clifford.h │ │ │ │ └── optimize.cc │ │ │ ├── const_prop │ │ │ │ ├── const_prop.cc │ │ │ │ └── detail │ │ │ │ │ ├── platform_functions.h │ │ │ │ │ ├── propagate.cc │ │ │ │ │ └── propagate.h │ │ │ └── dead_code_elim │ │ │ │ └── dead_code_elim.cc │ │ └── sch │ │ │ ├── list_schedule │ │ │ └── list_schedule.cc │ │ │ └── schedule │ │ │ ├── detail │ │ │ ├── scheduler.cc │ │ │ └── scheduler.h │ │ │ └── schedule.cc │ ├── pmgr │ │ ├── condition.cc │ │ ├── factory.cc │ │ ├── group.cc │ │ ├── manager.cc │ │ └── pass_types │ │ │ ├── base.cc │ │ │ └── specializations.cc │ ├── resource │ │ ├── instrument.cc │ │ ├── inter_core_channel.cc │ │ └── qubit.cc │ ├── rmgr │ │ ├── factory.cc │ │ ├── manager.cc │ │ ├── resource_types │ │ │ └── base.cc │ │ ├── state.cc │ │ └── types.cc │ └── utils │ │ ├── README.md │ │ ├── exception.cc │ │ ├── filesystem.cc │ │ ├── json.cc │ │ ├── logger.cc │ │ ├── num.cc │ │ ├── options.cc │ │ ├── progress.cc │ │ ├── rangemap.cc │ │ ├── str.cc │ │ ├── tree.cc │ │ └── vcd.cc └── resource │ └── main.cpp ├── test ├── CMakeLists.txt ├── main.cpp ├── ql │ ├── CMakeLists.txt │ ├── com │ │ ├── CMakeLists.txt │ │ ├── ddg │ │ │ ├── CMakeLists.txt │ │ │ └── ddg.cc │ │ └── topology.cc │ ├── ir │ │ ├── CMakeLists.txt │ │ ├── cqasm │ │ │ ├── CMakeLists.txt │ │ │ └── read.cc │ │ └── ir.cc │ ├── pass │ │ ├── CMakeLists.txt │ │ └── map │ │ │ ├── CMakeLists.txt │ │ │ ├── map.cc │ │ │ └── qubits │ │ │ ├── CMakeLists.txt │ │ │ └── place_mip │ │ │ ├── CMakeLists.txt │ │ │ └── ip.cc │ └── utils │ │ ├── CMakeLists.txt │ │ └── rangemap.cc └── v1x │ ├── CMakeLists.txt │ ├── cpp │ ├── CMakeLists.txt │ ├── example │ │ ├── CMakeLists.txt │ │ ├── cpp_standalone.cc │ │ ├── multi_qubits_randomized_benchmarking.cc │ │ ├── randomized_benchmarking.cc │ │ ├── rb_single.cc │ │ ├── simple.cc │ │ └── square_root.cc │ ├── test_179.cc │ ├── test_cc.cc │ ├── test_cqasm_reader.cc │ ├── test_mapper.cc │ ├── test_multi_core_4_4.cc │ ├── test_multi_core_64_16.cc │ ├── test_program.cc │ └── test_unitary.cc │ └── python │ ├── config.py │ ├── example │ ├── config.py │ ├── diamond.py │ ├── dice.py │ ├── getting_started.py │ ├── grover.py │ ├── rb_single.py │ └── simple.py │ ├── test_Kernel.py │ ├── test_Platform.py │ ├── test_Program.py │ ├── test_alap_rc_schedule.py │ ├── test_barrier.py │ ├── test_basics.py │ ├── test_bugs.py │ ├── test_cc.py │ ├── test_cc_cqasm.py │ ├── test_cc_light.py │ ├── test_cc_light_long_duration.py │ ├── test_commutation.py │ ├── test_compiler_api.py │ ├── test_condex.py │ ├── test_configuration.py │ ├── test_conjugate.py │ ├── test_controlled_kernel.py │ ├── test_cqasm.py │ ├── test_cqasm_reader.py │ ├── test_custom_gate.py │ ├── test_dependence.py │ ├── test_diamond.py │ ├── test_exceptions.py │ ├── test_flux.py │ ├── test_gate_decomposition.py │ ├── test_instruction_decomposition.py │ ├── test_mapper.py │ ├── test_minimal.py │ ├── test_multi_core.py │ ├── test_options.py │ ├── test_parallel_triggers.py │ ├── test_qubits.py │ ├── test_scale.py │ ├── test_skip.py │ ├── test_std_experiments_CCL.py │ ├── test_structure_decomposition.py │ ├── test_uniform_sched.py │ ├── test_unitary.py │ ├── test_wait.py │ ├── utils.py │ └── visualizer │ ├── config.py │ ├── deutsch-josza.py │ ├── example_1.py │ ├── example_2.py │ ├── example_3.py │ ├── example_4.py │ ├── example_5.py │ └── example_6.py ├── trace ├── fusioncharts.gantt.js ├── fusioncharts.js ├── fusioncharts.theme.fint.js ├── fusioncharts.widgets.js └── operations_schedule.html └── version.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/actions/cpp-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.github/actions/cpp-tests/action.yaml -------------------------------------------------------------------------------- /.github/actions/python-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.github/actions/python-tests/action.yaml -------------------------------------------------------------------------------- /.github/workflows/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.github/workflows/assets.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/RELEASE.md -------------------------------------------------------------------------------- /conan/profiles/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/debug -------------------------------------------------------------------------------- /conan/profiles/debug-unitary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/debug-unitary -------------------------------------------------------------------------------- /conan/profiles/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/release -------------------------------------------------------------------------------- /conan/profiles/release-unitary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/release-unitary -------------------------------------------------------------------------------- /conan/profiles/tests-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug -------------------------------------------------------------------------------- /conan/profiles/tests-debug-apple_clang-macos-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug-apple_clang-macos-arm64 -------------------------------------------------------------------------------- /conan/profiles/tests-debug-apple_clang-macos-x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug-apple_clang-macos-x64 -------------------------------------------------------------------------------- /conan/profiles/tests-debug-clang-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug-clang-linux-arm64 -------------------------------------------------------------------------------- /conan/profiles/tests-debug-clang-linux-x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug-clang-linux-x64 -------------------------------------------------------------------------------- /conan/profiles/tests-debug-gcc-linux-arm64: -------------------------------------------------------------------------------- 1 | include(tests-debug) 2 | -------------------------------------------------------------------------------- /conan/profiles/tests-debug-gcc-linux-x64: -------------------------------------------------------------------------------- 1 | include(tests-debug) 2 | -------------------------------------------------------------------------------- /conan/profiles/tests-debug-msvc-windows-x64: -------------------------------------------------------------------------------- 1 | include(tests-debug) -------------------------------------------------------------------------------- /conan/profiles/tests-debug-unitary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-debug-unitary -------------------------------------------------------------------------------- /conan/profiles/tests-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release -------------------------------------------------------------------------------- /conan/profiles/tests-release-apple_clang-macos-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-apple_clang-macos-arm64 -------------------------------------------------------------------------------- /conan/profiles/tests-release-apple_clang-macos-x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-apple_clang-macos-x64 -------------------------------------------------------------------------------- /conan/profiles/tests-release-clang-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-clang-linux-arm64 -------------------------------------------------------------------------------- /conan/profiles/tests-release-clang-linux-x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-clang-linux-x64 -------------------------------------------------------------------------------- /conan/profiles/tests-release-gcc-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-gcc-linux-arm64 -------------------------------------------------------------------------------- /conan/profiles/tests-release-gcc-linux-x64: -------------------------------------------------------------------------------- 1 | include(tests-release) 2 | -------------------------------------------------------------------------------- /conan/profiles/tests-release-msvc-windows-x64: -------------------------------------------------------------------------------- 1 | include(tests-release) 2 | -------------------------------------------------------------------------------- /conan/profiles/tests-release-unitary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conan/profiles/tests-release-unitary -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conanfile.py -------------------------------------------------------------------------------- /conda-recipe/bld.bat: -------------------------------------------------------------------------------- 1 | "%PYTHON%" setup.py install 2 | if errorlevel 1 exit 1 -------------------------------------------------------------------------------- /conda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conda-recipe/build.sh -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /docs/.conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/.conda.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/colophon/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /docs/colophon/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/colophon/contributors.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developer/automation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/automation.rst -------------------------------------------------------------------------------- /docs/developer/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/build.rst -------------------------------------------------------------------------------- /docs/developer/conventions.rst: -------------------------------------------------------------------------------- 1 | .. _dev_conventions: 2 | 3 | .. mdinclude:: ../../CONTRIBUTING.md 4 | -------------------------------------------------------------------------------- /docs/developer/doxygen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/doxygen.rst -------------------------------------------------------------------------------- /docs/developer/ir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/ir.rst -------------------------------------------------------------------------------- /docs/developer/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/options.rst -------------------------------------------------------------------------------- /docs/developer/passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/passes.rst -------------------------------------------------------------------------------- /docs/developer/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/readme.rst -------------------------------------------------------------------------------- /docs/developer/release.rst: -------------------------------------------------------------------------------- 1 | .. _dev_release: 2 | 3 | .. mdinclude:: ../../RELEASE.md 4 | -------------------------------------------------------------------------------- /docs/developer/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/developer/resources.rst -------------------------------------------------------------------------------- /docs/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/figures/.DS_Store -------------------------------------------------------------------------------- /docs/figures/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/figures/dice.png -------------------------------------------------------------------------------- /docs/figures/dice_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/figures/dice_hist.png -------------------------------------------------------------------------------- /docs/figures/qubit_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/figures/qubit_number.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/main-page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/main-page.dox -------------------------------------------------------------------------------- /docs/manual/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/concepts.rst -------------------------------------------------------------------------------- /docs/manual/dqcsim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/dqcsim.rst -------------------------------------------------------------------------------- /docs/manual/first_program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/first_program.rst -------------------------------------------------------------------------------- /docs/manual/installation.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/installation.rst.template -------------------------------------------------------------------------------- /docs/manual/qx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/qx.rst -------------------------------------------------------------------------------- /docs/manual/where_to_go_from_here.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/manual/where_to_go_from_here.rst -------------------------------------------------------------------------------- /docs/old/classical_instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/classical_instructions.rst -------------------------------------------------------------------------------- /docs/old/compiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/compiler.rst -------------------------------------------------------------------------------- /docs/old/compiler_passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/compiler_passes.rst -------------------------------------------------------------------------------- /docs/old/kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/kernel.rst -------------------------------------------------------------------------------- /docs/old/passes/decomposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/passes/decomposition.rst -------------------------------------------------------------------------------- /docs/old/passes/mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/passes/mapping.rst -------------------------------------------------------------------------------- /docs/old/passes/optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/passes/optimization.rst -------------------------------------------------------------------------------- /docs/old/passes/scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/passes/scheduling.rst -------------------------------------------------------------------------------- /docs/old/platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/platform.rst -------------------------------------------------------------------------------- /docs/old/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/program.rst -------------------------------------------------------------------------------- /docs/old/quantum_gate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/old/quantum_gate.rst -------------------------------------------------------------------------------- /docs/reference/architectures.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/architectures.rst.template -------------------------------------------------------------------------------- /docs/reference/configuration.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/configuration.rst.template -------------------------------------------------------------------------------- /docs/reference/cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/cpp.rst -------------------------------------------------------------------------------- /docs/reference/options.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/options.rst.template -------------------------------------------------------------------------------- /docs/reference/passes.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/passes.rst.template -------------------------------------------------------------------------------- /docs/reference/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/python.rst -------------------------------------------------------------------------------- /docs/reference/resources.rst.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/docs/reference/resources.rst.template -------------------------------------------------------------------------------- /include/openql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/openql -------------------------------------------------------------------------------- /include/openql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/openql.h -------------------------------------------------------------------------------- /include/openql_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/openql_i.h -------------------------------------------------------------------------------- /include/ql/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/api.h -------------------------------------------------------------------------------- /include/ql/api/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/compiler.h -------------------------------------------------------------------------------- /include/ql/api/cqasm_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/cqasm_reader.h -------------------------------------------------------------------------------- /include/ql/api/creg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/creg.h -------------------------------------------------------------------------------- /include/ql/api/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/declarations.h -------------------------------------------------------------------------------- /include/ql/api/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/kernel.h -------------------------------------------------------------------------------- /include/ql/api/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/misc.h -------------------------------------------------------------------------------- /include/ql/api/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/operation.h -------------------------------------------------------------------------------- /include/ql/api/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/pass.h -------------------------------------------------------------------------------- /include/ql/api/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/platform.h -------------------------------------------------------------------------------- /include/ql/api/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/program.h -------------------------------------------------------------------------------- /include/ql/api/unitary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/api/unitary.h -------------------------------------------------------------------------------- /include/ql/arch/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/architecture.h -------------------------------------------------------------------------------- /include/ql/arch/cc/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/cc/info.h -------------------------------------------------------------------------------- /include/ql/arch/cc/pass/gen/vq1asm/vq1asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/cc/pass/gen/vq1asm/vq1asm.h -------------------------------------------------------------------------------- /include/ql/arch/cc_light/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/cc_light/info.h -------------------------------------------------------------------------------- /include/ql/arch/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/declarations.h -------------------------------------------------------------------------------- /include/ql/arch/diamond/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/diamond/annotations.h -------------------------------------------------------------------------------- /include/ql/arch/diamond/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/diamond/info.h -------------------------------------------------------------------------------- /include/ql/arch/diamond/pass/gen/microcode/microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/diamond/pass/gen/microcode/microcode.h -------------------------------------------------------------------------------- /include/ql/arch/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/factory.h -------------------------------------------------------------------------------- /include/ql/arch/info_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/info_base.h -------------------------------------------------------------------------------- /include/ql/arch/none/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/arch/none/info.h -------------------------------------------------------------------------------- /include/ql/com/ana/interaction_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ana/interaction_matrix.h -------------------------------------------------------------------------------- /include/ql/com/ana/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ana/metrics.h -------------------------------------------------------------------------------- /include/ql/com/cfg/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/cfg/build.h -------------------------------------------------------------------------------- /include/ql/com/cfg/consistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/cfg/consistency.h -------------------------------------------------------------------------------- /include/ql/com/cfg/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/cfg/dot.h -------------------------------------------------------------------------------- /include/ql/com/cfg/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/cfg/ops.h -------------------------------------------------------------------------------- /include/ql/com/cfg/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/cfg/types.h -------------------------------------------------------------------------------- /include/ql/com/ddg/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ddg/build.h -------------------------------------------------------------------------------- /include/ql/com/ddg/consistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ddg/consistency.h -------------------------------------------------------------------------------- /include/ql/com/ddg/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ddg/dot.h -------------------------------------------------------------------------------- /include/ql/com/ddg/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ddg/ops.h -------------------------------------------------------------------------------- /include/ql/com/ddg/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/ddg/types.h -------------------------------------------------------------------------------- /include/ql/com/dec/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/dec/rules.h -------------------------------------------------------------------------------- /include/ql/com/dec/structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/dec/structure.h -------------------------------------------------------------------------------- /include/ql/com/dec/unitary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/dec/unitary.h -------------------------------------------------------------------------------- /include/ql/com/map/expression_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/map/expression_mapper.h -------------------------------------------------------------------------------- /include/ql/com/map/qubit_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/map/qubit_mapping.h -------------------------------------------------------------------------------- /include/ql/com/map/reference_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/map/reference_updater.h -------------------------------------------------------------------------------- /include/ql/com/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/options.h -------------------------------------------------------------------------------- /include/ql/com/sch/heuristics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/sch/heuristics.h -------------------------------------------------------------------------------- /include/ql/com/sch/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/sch/scheduler.h -------------------------------------------------------------------------------- /include/ql/com/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/com/topology.h -------------------------------------------------------------------------------- /include/ql/ir/compat/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/bundle.h -------------------------------------------------------------------------------- /include/ql/ir/compat/classical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/classical.h -------------------------------------------------------------------------------- /include/ql/ir/compat/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/compat.h -------------------------------------------------------------------------------- /include/ql/ir/compat/cqasm_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/cqasm_reader.h -------------------------------------------------------------------------------- /include/ql/ir/compat/gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/gate.h -------------------------------------------------------------------------------- /include/ql/ir/compat/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/kernel.h -------------------------------------------------------------------------------- /include/ql/ir/compat/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/platform.h -------------------------------------------------------------------------------- /include/ql/ir/compat/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/compat/program.h -------------------------------------------------------------------------------- /include/ql/ir/consistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/consistency.h -------------------------------------------------------------------------------- /include/ql/ir/cqasm/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/cqasm/read.h -------------------------------------------------------------------------------- /include/ql/ir/cqasm/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/cqasm/write.h -------------------------------------------------------------------------------- /include/ql/ir/describe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/describe.h -------------------------------------------------------------------------------- /include/ql/ir/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/ir.h -------------------------------------------------------------------------------- /include/ql/ir/ir_gen_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/ir_gen_ex.h -------------------------------------------------------------------------------- /include/ql/ir/new_to_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/new_to_old.h -------------------------------------------------------------------------------- /include/ql/ir/old_to_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/old_to_new.h -------------------------------------------------------------------------------- /include/ql/ir/operator_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/operator_info.h -------------------------------------------------------------------------------- /include/ql/ir/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/ops.h -------------------------------------------------------------------------------- /include/ql/ir/prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/prim.h -------------------------------------------------------------------------------- /include/ql/ir/swap_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/ir/swap_parameters.h -------------------------------------------------------------------------------- /include/ql/pass/ana/statistics/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/statistics/annotations.h -------------------------------------------------------------------------------- /include/ql/pass/ana/statistics/clean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/statistics/clean.h -------------------------------------------------------------------------------- /include/ql/pass/ana/statistics/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/statistics/report.h -------------------------------------------------------------------------------- /include/ql/pass/ana/visualize/circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/visualize/circuit.h -------------------------------------------------------------------------------- /include/ql/pass/ana/visualize/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/visualize/interaction.h -------------------------------------------------------------------------------- /include/ql/pass/ana/visualize/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/ana/visualize/mapping.h -------------------------------------------------------------------------------- /include/ql/pass/dec/generalize/generalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/dec/generalize/generalize.h -------------------------------------------------------------------------------- /include/ql/pass/dec/instructions/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/dec/instructions/instructions.h -------------------------------------------------------------------------------- /include/ql/pass/dec/specialize/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/dec/specialize/specialize.h -------------------------------------------------------------------------------- /include/ql/pass/dec/structure/structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/dec/structure/structure.h -------------------------------------------------------------------------------- /include/ql/pass/io/cqasm/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/io/cqasm/read.h -------------------------------------------------------------------------------- /include/ql/pass/io/cqasm/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/io/cqasm/report.h -------------------------------------------------------------------------------- /include/ql/pass/map/qubits/map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/map/qubits/map/map.h -------------------------------------------------------------------------------- /include/ql/pass/map/qubits/place_mip/place_mip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/map/qubits/place_mip/place_mip.h -------------------------------------------------------------------------------- /include/ql/pass/opt/clifford/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/opt/clifford/optimize.h -------------------------------------------------------------------------------- /include/ql/pass/opt/const_prop/const_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/opt/const_prop/const_prop.h -------------------------------------------------------------------------------- /include/ql/pass/opt/dead_code_elim/dead_code_elim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/opt/dead_code_elim/dead_code_elim.h -------------------------------------------------------------------------------- /include/ql/pass/sch/list_schedule/list_schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/sch/list_schedule/list_schedule.h -------------------------------------------------------------------------------- /include/ql/pass/sch/schedule/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pass/sch/schedule/schedule.h -------------------------------------------------------------------------------- /include/ql/pmgr/condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/condition.h -------------------------------------------------------------------------------- /include/ql/pmgr/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/declarations.h -------------------------------------------------------------------------------- /include/ql/pmgr/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/factory.h -------------------------------------------------------------------------------- /include/ql/pmgr/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/group.h -------------------------------------------------------------------------------- /include/ql/pmgr/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/manager.h -------------------------------------------------------------------------------- /include/ql/pmgr/pass_types/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/pass_types/base.h -------------------------------------------------------------------------------- /include/ql/pmgr/pass_types/specializations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/pmgr/pass_types/specializations.h -------------------------------------------------------------------------------- /include/ql/resource/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/resource/instrument.h -------------------------------------------------------------------------------- /include/ql/resource/inter_core_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/resource/inter_core_channel.h -------------------------------------------------------------------------------- /include/ql/resource/qubit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/resource/qubit.h -------------------------------------------------------------------------------- /include/ql/rmgr/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/declarations.h -------------------------------------------------------------------------------- /include/ql/rmgr/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/factory.h -------------------------------------------------------------------------------- /include/ql/rmgr/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/manager.h -------------------------------------------------------------------------------- /include/ql/rmgr/resource_types/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/resource_types/base.h -------------------------------------------------------------------------------- /include/ql/rmgr/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/state.h -------------------------------------------------------------------------------- /include/ql/rmgr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/rmgr/types.h -------------------------------------------------------------------------------- /include/ql/utils/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/compat.h -------------------------------------------------------------------------------- /include/ql/utils/container_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/container_base.h -------------------------------------------------------------------------------- /include/ql/utils/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/exception.h -------------------------------------------------------------------------------- /include/ql/utils/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/filesystem.h -------------------------------------------------------------------------------- /include/ql/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/json.h -------------------------------------------------------------------------------- /include/ql/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/list.h -------------------------------------------------------------------------------- /include/ql/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/logger.h -------------------------------------------------------------------------------- /include/ql/utils/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/map.h -------------------------------------------------------------------------------- /include/ql/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/misc.h -------------------------------------------------------------------------------- /include/ql/utils/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/num.h -------------------------------------------------------------------------------- /include/ql/utils/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/opt.h -------------------------------------------------------------------------------- /include/ql/utils/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/options.h -------------------------------------------------------------------------------- /include/ql/utils/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/pair.h -------------------------------------------------------------------------------- /include/ql/utils/pairhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/pairhash.h -------------------------------------------------------------------------------- /include/ql/utils/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/progress.h -------------------------------------------------------------------------------- /include/ql/utils/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/ptr.h -------------------------------------------------------------------------------- /include/ql/utils/rangemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/rangemap.h -------------------------------------------------------------------------------- /include/ql/utils/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/set.h -------------------------------------------------------------------------------- /include/ql/utils/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/str.h -------------------------------------------------------------------------------- /include/ql/utils/tree-config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/tree-config.inc -------------------------------------------------------------------------------- /include/ql/utils/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/tree.h -------------------------------------------------------------------------------- /include/ql/utils/vcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/vcd.h -------------------------------------------------------------------------------- /include/ql/utils/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/utils/vec.h -------------------------------------------------------------------------------- /include/ql/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/include/ql/version.h -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/pytest.ini -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/compat/UseSWIG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/compat/UseSWIG.cmake -------------------------------------------------------------------------------- /python/compat/fix-swig-cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/compat/fix-swig-cmdline.py -------------------------------------------------------------------------------- /python/compat/test-cmake-config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/compat/test-cmake-config/CMakeLists.txt -------------------------------------------------------------------------------- /python/compat/test-cmake-config/values.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/compat/test-cmake-config/values.cfg.template -------------------------------------------------------------------------------- /python/manylinux/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | !/build/ 3 | -------------------------------------------------------------------------------- /python/manylinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/Makefile -------------------------------------------------------------------------------- /python/manylinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/README.md -------------------------------------------------------------------------------- /python/manylinux/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/build/Dockerfile -------------------------------------------------------------------------------- /python/manylinux/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/build/build.sh -------------------------------------------------------------------------------- /python/manylinux/build/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/build/helper.sh -------------------------------------------------------------------------------- /python/manylinux/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/test/Dockerfile -------------------------------------------------------------------------------- /python/manylinux/test/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/test/helper.sh -------------------------------------------------------------------------------- /python/manylinux/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/manylinux/test/test.sh -------------------------------------------------------------------------------- /python/openql.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/openql.i -------------------------------------------------------------------------------- /python/openql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/openql/__init__.py -------------------------------------------------------------------------------- /python/python_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/python/python_lib.py -------------------------------------------------------------------------------- /res/v1x/cq/example/diamond.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/example/diamond.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_after_schedule_dec.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_after_schedule_dec.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_after_schedule_in.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_after_schedule_in.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_after_schedule_sch.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_after_schedule_sch.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_before_schedule_dec.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_before_schedule_dec.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_before_schedule_in.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_before_schedule_in.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/decompose_before_schedule_sch.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/decompose_before_schedule_sch.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/empty_infinite_loop_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/empty_infinite_loop_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_for_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_for_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_foreach_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_foreach_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_goto_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_goto_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_if_else_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_if_else_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_repeat_until_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_repeat_until_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/golden/structure_decomposition_while_out.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/golden/structure_decomposition_while_out.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_cond_gate.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_cond_gate.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_const_prop.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_const_prop.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_diamond.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_diamond.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_empty_infinite_loop.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_empty_infinite_loop.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_looping.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_looping.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_rus_elements.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_rus_elements.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_for.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_for.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_foreach.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_foreach.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_goto.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_goto.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_if_else.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_if_else.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_repeat_until.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_repeat_until.cq -------------------------------------------------------------------------------- /res/v1x/cq/test_structure_decomposition_while.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/cq/test_structure_decomposition_while.cq -------------------------------------------------------------------------------- /res/v1x/json/config_cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_cc.json -------------------------------------------------------------------------------- /res/v1x/json/config_cc_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_cc_light.json -------------------------------------------------------------------------------- /res/v1x/json/config_cc_s17_direct_iq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_cc_s17_direct_iq.json -------------------------------------------------------------------------------- /res/v1x/json/config_cc_s17_direct_iq_openql_0_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_cc_s17_direct_iq_openql_0_10.json -------------------------------------------------------------------------------- /res/v1x/json/config_cc_s5_direct_iq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_cc_s5_direct_iq.json -------------------------------------------------------------------------------- /res/v1x/json/config_spin_demo_2811.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/config_spin_demo_2811.json -------------------------------------------------------------------------------- /res/v1x/json/test_179.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_179.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_CCL_long_duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_CCL_long_duration.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_cc.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_cc_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_cc_demo.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_cc_light_buffers_latencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_cc_light_buffers_latencies.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_none.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_none_s7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_none_s7.json -------------------------------------------------------------------------------- /res/v1x/json/test_cfg_none_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_cfg_none_simple.json -------------------------------------------------------------------------------- /res/v1x/json/test_config_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_config_default.json -------------------------------------------------------------------------------- /res/v1x/json/test_mapper_rig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_mapper_rig.json -------------------------------------------------------------------------------- /res/v1x/json/test_multi_core_4x4_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_multi_core_4x4_full.json -------------------------------------------------------------------------------- /res/v1x/json/test_multi_core_64x16_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_multi_core_64x16_full.json -------------------------------------------------------------------------------- /res/v1x/json/test_multi_core_8x1024_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_multi_core_8x1024_full.json -------------------------------------------------------------------------------- /res/v1x/json/test_structure_decomposition_platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/test_structure_decomposition_platform.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_cc_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_cc_light.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_cc_light_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_cc_light_2.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_example_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_example_1.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_example_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_example_2.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_example_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_example_3.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_example_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_example_4.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/config_example_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/config_example_5.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/test_s7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/test_s7.json -------------------------------------------------------------------------------- /res/v1x/json/visualizer/waveform_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/json/visualizer/waveform_mapping.json -------------------------------------------------------------------------------- /res/v1x/map/example/instructions.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/map/example/instructions.map -------------------------------------------------------------------------------- /res/v1x/notebooks/ccLightClassicalDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/notebooks/ccLightClassicalDemo.ipynb -------------------------------------------------------------------------------- /res/v1x/qasm/golden/AllXYLongDuration_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/AllXYLongDuration_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/basic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/basic.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/basic_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/basic_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/diamond_api_diamond_codegen.dqasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/diamond_api_diamond_codegen.dqasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/diamond_api_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/diamond_api_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/diamond_cqasm_diamond_codegen.dqasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/diamond_cqasm_diamond_codegen.dqasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/diamond_cqasm_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/diamond_cqasm_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_1_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_1_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_1_qubit.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_1_qubit.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_2_qubit.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_2_qubit.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_3_qubit.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_3_qubit.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_7_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_7_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_RAR_Control_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_RAR_Control_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_RAW_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_RAW_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_WAR_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_WAR_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_WAW_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_WAW_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_adriaan_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_adriaan_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_barrier_all.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_barrier_all.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_barrier_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_barrier_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2N_control_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2N_control_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2N_target_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2N_target_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2R_control_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2R_control_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2R_non_commute_DAR_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2R_non_commute_DAR_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2R_non_commute_RAD_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2R_non_commute_RAD_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_2R_target_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_2R_target_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_NN_control_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_NN_control_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_NN_non_commute_DAR_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_NN_non_commute_DAR_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_NN_non_commute_RAD_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_NN_non_commute_RAD_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_NN_target_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_NN_target_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_mixed_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_mixed_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_variations_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_variations_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_x_2N_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_x_2N_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_x_2R_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_x_2R_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_x_NN_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_x_NN_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_z_2N_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_z_2N_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_z_2R_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_z_2R_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cnot_z_NN_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cnot_z_NN_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_condex_basic_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_condex_basic_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_condex_cnot_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_condex_cnot_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_condex_measure_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_condex_measure_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_condex_toffoli_compos_gate_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_condex_toffoli_compos_gate_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_conjugate.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_conjugate.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_controlled_rotations_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_controlled_rotations_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_controlled_single_qubit_gates_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_controlled_single_qubit_gates_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_controlled_two_qubit_gates_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_controlled_two_qubit_gates_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_conditions.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_conditions.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_custom_gates.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_custom_gates.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_custom_gates_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_custom_gates_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_default_gates.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_default_gates.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_default_gates_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_default_gates_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cqasm_real_numbers.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cqasm_real_numbers.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cz_2N_any_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cz_2N_any_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cz_2R_any_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cz_2R_any_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_cz_NN_any_commute_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_cz_NN_any_commute_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_decomposition_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_decomposition_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_detuned_2_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_detuned_2_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_detuned_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_detuned_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_edge_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_edge_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_edge_available_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_edge_available_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_edge_busy_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_edge_busy_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_fast_feedback_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_fast_feedback_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_flux_all_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_flux_all_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_independence.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_independence.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_issue_179_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_issue_179_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_all_D_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_all_D_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_all_D_opt_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_all_D_opt_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_all_IP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_all_IP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_all_NN_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_all_NN_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_ling_ling_5_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_ling_ling_5_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_ling_ling_7_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_ling_ling_7_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_max_cut_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_max_cut_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_one_D2_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_one_D2_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_one_D4_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_one_D4_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mapper_one_NN_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mapper_one_NN_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_all_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_all_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_all_saturate_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_all_saturate_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_comms_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_comms_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_locals_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_locals_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_non_comms_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_non_comms_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_mc_wide_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_mc_wide_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_measure_available_01_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_measure_available_01_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_measure_available_02_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_measure_available_02_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_measure_busy_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_measure_busy_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_multi_controlled_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_multi_controlled_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_multiple_programs.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_multiple_programs.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_parallel_programs.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_parallel_programs.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_platform_modified_in_place_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_platform_modified_in_place_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qubit_busy_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qubit_busy_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qwg_2_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qwg_2_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qwg_ALAP_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qwg_ALAP_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qwg_available_01_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qwg_available_01_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qwg_available_02_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qwg_available_02_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_qwg_busy_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_qwg_busy_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_single_bit_kernel_operations.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_single_bit_kernel_operations.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_skip_yes_scheduled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_skip_yes_scheduled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smis_all_bundled_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smis_all_bundled_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smis_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smis_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smis_multi_kernel_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smis_multi_kernel_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smis_with_custom_gates_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smis_with_custom_gates_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smit_all_bundled.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smit_all_bundled.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smit_all_bundled_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smit_all_bundled_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_smit_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_smit_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_sub_circuit_programs.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_sub_circuit_programs.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_swap_multi_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_swap_multi_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_swap_single_ASAP.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_swap_single_ASAP.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/golden/test_wait_barrier_last.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/golden/test_wait_barrier_last.qasm -------------------------------------------------------------------------------- /res/v1x/qasm/test_qi_example.initial.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/test_qi_example.initial.cq -------------------------------------------------------------------------------- /res/v1x/qasm/test_qi_example.scheduled.cq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/res/v1x/qasm/test_qi_example.scheduled.cq -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/setup.py -------------------------------------------------------------------------------- /src/ql/api/compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/compiler.cc -------------------------------------------------------------------------------- /src/ql/api/compiler.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/compiler.i -------------------------------------------------------------------------------- /src/ql/api/cqasm_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/cqasm_reader.cc -------------------------------------------------------------------------------- /src/ql/api/cqasm_reader.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/cqasm_reader.i -------------------------------------------------------------------------------- /src/ql/api/creg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/creg.cc -------------------------------------------------------------------------------- /src/ql/api/creg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/creg.i -------------------------------------------------------------------------------- /src/ql/api/kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/kernel.cc -------------------------------------------------------------------------------- /src/ql/api/kernel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/kernel.i -------------------------------------------------------------------------------- /src/ql/api/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/misc.cc -------------------------------------------------------------------------------- /src/ql/api/misc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/misc.i -------------------------------------------------------------------------------- /src/ql/api/operation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/operation.cc -------------------------------------------------------------------------------- /src/ql/api/operation.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/operation.i -------------------------------------------------------------------------------- /src/ql/api/pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/pass.cc -------------------------------------------------------------------------------- /src/ql/api/pass.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/pass.i -------------------------------------------------------------------------------- /src/ql/api/platform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/platform.cc -------------------------------------------------------------------------------- /src/ql/api/platform.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/platform.i -------------------------------------------------------------------------------- /src/ql/api/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/program.cc -------------------------------------------------------------------------------- /src/ql/api/program.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/program.i -------------------------------------------------------------------------------- /src/ql/api/unitary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/unitary.cc -------------------------------------------------------------------------------- /src/ql/api/unitary.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/api/unitary.i -------------------------------------------------------------------------------- /src/ql/arch/architecture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/architecture.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/info.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/backend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/backend.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/backend.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/bundle_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/bundle_info.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/codegen.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/codegen.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/codesection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/codesection.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/codesection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/codesection.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/datapath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/datapath.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/datapath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/datapath.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/functions.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/functions.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/operands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/operands.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/operands.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/options.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/settings.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/settings.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/types.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/vcd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/vcd.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/detail/vcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/detail/vcd.h -------------------------------------------------------------------------------- /src/ql/arch/cc/pass/gen/vq1asm/vq1asm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/pass/gen/vq1asm/vq1asm.cc -------------------------------------------------------------------------------- /src/ql/arch/cc/resources/hwconf_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc/resources/hwconf_default.json -------------------------------------------------------------------------------- /src/ql/arch/cc_light/info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc_light/info.cc -------------------------------------------------------------------------------- /src/ql/arch/cc_light/resources/hwconf_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc_light/resources/hwconf_default.json -------------------------------------------------------------------------------- /src/ql/arch/cc_light/resources/hwconf_s17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc_light/resources/hwconf_s17.json -------------------------------------------------------------------------------- /src/ql/arch/cc_light/resources/hwconf_s5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc_light/resources/hwconf_s5.json -------------------------------------------------------------------------------- /src/ql/arch/cc_light/resources/hwconf_s7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/cc_light/resources/hwconf_s7.json -------------------------------------------------------------------------------- /src/ql/arch/diamond/info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/diamond/info.cc -------------------------------------------------------------------------------- /src/ql/arch/diamond/pass/gen/microcode/detail/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/diamond/pass/gen/microcode/detail/functions.cc -------------------------------------------------------------------------------- /src/ql/arch/diamond/pass/gen/microcode/detail/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/diamond/pass/gen/microcode/detail/functions.h -------------------------------------------------------------------------------- /src/ql/arch/diamond/pass/gen/microcode/microcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/diamond/pass/gen/microcode/microcode.cc -------------------------------------------------------------------------------- /src/ql/arch/diamond/resources/hwconf_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/diamond/resources/hwconf_default.json -------------------------------------------------------------------------------- /src/ql/arch/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/factory.cc -------------------------------------------------------------------------------- /src/ql/arch/info_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/info_base.cc -------------------------------------------------------------------------------- /src/ql/arch/none/info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/none/info.cc -------------------------------------------------------------------------------- /src/ql/arch/none/resources/hwconf_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/arch/none/resources/hwconf_default.json -------------------------------------------------------------------------------- /src/ql/com/ana/interaction_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ana/interaction_matrix.cc -------------------------------------------------------------------------------- /src/ql/com/ana/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ana/metrics.cc -------------------------------------------------------------------------------- /src/ql/com/cfg/build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/cfg/build.cc -------------------------------------------------------------------------------- /src/ql/com/cfg/consistency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/cfg/consistency.cc -------------------------------------------------------------------------------- /src/ql/com/cfg/dot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/cfg/dot.cc -------------------------------------------------------------------------------- /src/ql/com/cfg/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/cfg/ops.cc -------------------------------------------------------------------------------- /src/ql/com/ddg/build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ddg/build.cc -------------------------------------------------------------------------------- /src/ql/com/ddg/consistency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ddg/consistency.cc -------------------------------------------------------------------------------- /src/ql/com/ddg/dot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ddg/dot.cc -------------------------------------------------------------------------------- /src/ql/com/ddg/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ddg/ops.cc -------------------------------------------------------------------------------- /src/ql/com/ddg/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/ddg/types.cc -------------------------------------------------------------------------------- /src/ql/com/dec/rules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/dec/rules.cc -------------------------------------------------------------------------------- /src/ql/com/dec/structure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/dec/structure.cc -------------------------------------------------------------------------------- /src/ql/com/dec/unitary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/dec/unitary.cc -------------------------------------------------------------------------------- /src/ql/com/map/expression_mapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/map/expression_mapper.cc -------------------------------------------------------------------------------- /src/ql/com/map/qubit_mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/map/qubit_mapping.cc -------------------------------------------------------------------------------- /src/ql/com/map/reference_updater.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/map/reference_updater.cc -------------------------------------------------------------------------------- /src/ql/com/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/options.cc -------------------------------------------------------------------------------- /src/ql/com/sch/heuristics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/sch/heuristics.cc -------------------------------------------------------------------------------- /src/ql/com/sch/scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/sch/scheduler.cc -------------------------------------------------------------------------------- /src/ql/com/topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/com/topology.cc -------------------------------------------------------------------------------- /src/ql/config.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/config.h.template -------------------------------------------------------------------------------- /src/ql/ir/compat/bundle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/bundle.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/classical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/classical.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/cqasm_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/cqasm_reader.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/detail/cqasm_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/detail/cqasm_reader.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/detail/cqasm_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/detail/cqasm_reader.h -------------------------------------------------------------------------------- /src/ql/ir/compat/gate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/gate.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/kernel.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/platform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/platform.cc -------------------------------------------------------------------------------- /src/ql/ir/compat/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/compat/program.cc -------------------------------------------------------------------------------- /src/ql/ir/consistency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/consistency.cc -------------------------------------------------------------------------------- /src/ql/ir/cqasm/read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/cqasm/read.cc -------------------------------------------------------------------------------- /src/ql/ir/cqasm/write.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/cqasm/write.cc -------------------------------------------------------------------------------- /src/ql/ir/describe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/describe.cc -------------------------------------------------------------------------------- /src/ql/ir/ir.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/ir.tree -------------------------------------------------------------------------------- /src/ql/ir/ir_gen_ex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/ir_gen_ex.cc -------------------------------------------------------------------------------- /src/ql/ir/new_to_old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/new_to_old.cc -------------------------------------------------------------------------------- /src/ql/ir/old_to_new.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/old_to_new.cc -------------------------------------------------------------------------------- /src/ql/ir/operator_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/operator_info.cc -------------------------------------------------------------------------------- /src/ql/ir/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/ops.cc -------------------------------------------------------------------------------- /src/ql/ir/prim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/ir/prim.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/statistics/annotations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/statistics/annotations.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/statistics/clean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/statistics/clean.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/statistics/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/statistics/common.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/statistics/report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/statistics/report.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/circuit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/circuit.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/README.md -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/circuit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/circuit.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/circuit.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/common.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/common.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/image.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/image.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/interaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/interaction.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/interaction.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/mapping.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/mapping.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/types.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/detail/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/detail/types.h -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/interaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/interaction.cc -------------------------------------------------------------------------------- /src/ql/pass/ana/visualize/mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/ana/visualize/mapping.cc -------------------------------------------------------------------------------- /src/ql/pass/dec/generalize/generalize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/dec/generalize/generalize.cc -------------------------------------------------------------------------------- /src/ql/pass/dec/instructions/instructions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/dec/instructions/instructions.cc -------------------------------------------------------------------------------- /src/ql/pass/dec/specialize/specialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/dec/specialize/specialize.cc -------------------------------------------------------------------------------- /src/ql/pass/dec/structure/structure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/dec/structure/structure.cc -------------------------------------------------------------------------------- /src/ql/pass/io/cqasm/read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/io/cqasm/read.cc -------------------------------------------------------------------------------- /src/ql/pass/io/cqasm/report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/io/cqasm/report.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/alter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/alter.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/alter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/alter.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/free_cycle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/free_cycle.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/free_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/free_cycle.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/future.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/future.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/future.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/mapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/mapper.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/mapper.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/options.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/options.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/past.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/past.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/detail/past.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/detail/past.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/map/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/map/map.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/place_mip/detail/impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/place_mip/detail/impl.cc -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/place_mip/detail/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/place_mip/detail/impl.h -------------------------------------------------------------------------------- /src/ql/pass/map/qubits/place_mip/place_mip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/map/qubits/place_mip/place_mip.cc -------------------------------------------------------------------------------- /src/ql/pass/opt/clifford/detail/clifford.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/clifford/detail/clifford.cc -------------------------------------------------------------------------------- /src/ql/pass/opt/clifford/detail/clifford.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/clifford/detail/clifford.h -------------------------------------------------------------------------------- /src/ql/pass/opt/clifford/optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/clifford/optimize.cc -------------------------------------------------------------------------------- /src/ql/pass/opt/const_prop/const_prop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/const_prop/const_prop.cc -------------------------------------------------------------------------------- /src/ql/pass/opt/const_prop/detail/platform_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/const_prop/detail/platform_functions.h -------------------------------------------------------------------------------- /src/ql/pass/opt/const_prop/detail/propagate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/const_prop/detail/propagate.cc -------------------------------------------------------------------------------- /src/ql/pass/opt/const_prop/detail/propagate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/const_prop/detail/propagate.h -------------------------------------------------------------------------------- /src/ql/pass/opt/dead_code_elim/dead_code_elim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/opt/dead_code_elim/dead_code_elim.cc -------------------------------------------------------------------------------- /src/ql/pass/sch/list_schedule/list_schedule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/sch/list_schedule/list_schedule.cc -------------------------------------------------------------------------------- /src/ql/pass/sch/schedule/detail/scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/sch/schedule/detail/scheduler.cc -------------------------------------------------------------------------------- /src/ql/pass/sch/schedule/detail/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/sch/schedule/detail/scheduler.h -------------------------------------------------------------------------------- /src/ql/pass/sch/schedule/schedule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pass/sch/schedule/schedule.cc -------------------------------------------------------------------------------- /src/ql/pmgr/condition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/condition.cc -------------------------------------------------------------------------------- /src/ql/pmgr/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/factory.cc -------------------------------------------------------------------------------- /src/ql/pmgr/group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/group.cc -------------------------------------------------------------------------------- /src/ql/pmgr/manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/manager.cc -------------------------------------------------------------------------------- /src/ql/pmgr/pass_types/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/pass_types/base.cc -------------------------------------------------------------------------------- /src/ql/pmgr/pass_types/specializations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/pmgr/pass_types/specializations.cc -------------------------------------------------------------------------------- /src/ql/resource/instrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/resource/instrument.cc -------------------------------------------------------------------------------- /src/ql/resource/inter_core_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/resource/inter_core_channel.cc -------------------------------------------------------------------------------- /src/ql/resource/qubit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/resource/qubit.cc -------------------------------------------------------------------------------- /src/ql/rmgr/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/rmgr/factory.cc -------------------------------------------------------------------------------- /src/ql/rmgr/manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/rmgr/manager.cc -------------------------------------------------------------------------------- /src/ql/rmgr/resource_types/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/rmgr/resource_types/base.cc -------------------------------------------------------------------------------- /src/ql/rmgr/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/rmgr/state.cc -------------------------------------------------------------------------------- /src/ql/rmgr/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/rmgr/types.cc -------------------------------------------------------------------------------- /src/ql/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/README.md -------------------------------------------------------------------------------- /src/ql/utils/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/exception.cc -------------------------------------------------------------------------------- /src/ql/utils/filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/filesystem.cc -------------------------------------------------------------------------------- /src/ql/utils/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/json.cc -------------------------------------------------------------------------------- /src/ql/utils/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/logger.cc -------------------------------------------------------------------------------- /src/ql/utils/num.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/num.cc -------------------------------------------------------------------------------- /src/ql/utils/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/options.cc -------------------------------------------------------------------------------- /src/ql/utils/progress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/progress.cc -------------------------------------------------------------------------------- /src/ql/utils/rangemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/rangemap.cc -------------------------------------------------------------------------------- /src/ql/utils/str.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/str.cc -------------------------------------------------------------------------------- /src/ql/utils/tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/tree.cc -------------------------------------------------------------------------------- /src/ql/utils/vcd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/ql/utils/vcd.cc -------------------------------------------------------------------------------- /src/resource/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/src/resource/main.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/ql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/CMakeLists.txt -------------------------------------------------------------------------------- /test/ql/com/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ddg) 2 | 3 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/topology.cc") 4 | -------------------------------------------------------------------------------- /test/ql/com/ddg/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/ddg.cc") 2 | -------------------------------------------------------------------------------- /test/ql/com/ddg/ddg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/com/ddg/ddg.cc -------------------------------------------------------------------------------- /test/ql/com/topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/com/topology.cc -------------------------------------------------------------------------------- /test/ql/ir/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(cqasm) 2 | -------------------------------------------------------------------------------- /test/ql/ir/cqasm/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/read.cc") 2 | -------------------------------------------------------------------------------- /test/ql/ir/cqasm/read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/ir/cqasm/read.cc -------------------------------------------------------------------------------- /test/ql/ir/ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/ir/ir.cc -------------------------------------------------------------------------------- /test/ql/pass/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(map) -------------------------------------------------------------------------------- /test/ql/pass/map/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(qubits) 2 | 3 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/map.cc") 4 | -------------------------------------------------------------------------------- /test/ql/pass/map/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/pass/map/map.cc -------------------------------------------------------------------------------- /test/ql/pass/map/qubits/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(place_mip) 2 | -------------------------------------------------------------------------------- /test/ql/pass/map/qubits/place_mip/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/ip.cc") 2 | -------------------------------------------------------------------------------- /test/ql/pass/map/qubits/place_mip/ip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/pass/map/qubits/place_mip/ip.cc -------------------------------------------------------------------------------- /test/ql/utils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(${PROJECT_NAME}_test PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/rangemap.cc") 2 | -------------------------------------------------------------------------------- /test/ql/utils/rangemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/ql/utils/rangemap.cc -------------------------------------------------------------------------------- /test/v1x/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(cpp) 2 | -------------------------------------------------------------------------------- /test/v1x/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /test/v1x/cpp/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/CMakeLists.txt -------------------------------------------------------------------------------- /test/v1x/cpp/example/cpp_standalone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/cpp_standalone.cc -------------------------------------------------------------------------------- /test/v1x/cpp/example/multi_qubits_randomized_benchmarking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/multi_qubits_randomized_benchmarking.cc -------------------------------------------------------------------------------- /test/v1x/cpp/example/randomized_benchmarking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/randomized_benchmarking.cc -------------------------------------------------------------------------------- /test/v1x/cpp/example/rb_single.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/rb_single.cc -------------------------------------------------------------------------------- /test/v1x/cpp/example/simple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/simple.cc -------------------------------------------------------------------------------- /test/v1x/cpp/example/square_root.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/example/square_root.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_179.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_179.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_cc.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_cqasm_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_cqasm_reader.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_mapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_mapper.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_multi_core_4_4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_multi_core_4_4.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_multi_core_64_16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_multi_core_64_16.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_program.cc -------------------------------------------------------------------------------- /test/v1x/cpp/test_unitary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/cpp/test_unitary.cc -------------------------------------------------------------------------------- /test/v1x/python/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/config.py -------------------------------------------------------------------------------- /test/v1x/python/example/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/config.py -------------------------------------------------------------------------------- /test/v1x/python/example/diamond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/diamond.py -------------------------------------------------------------------------------- /test/v1x/python/example/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/dice.py -------------------------------------------------------------------------------- /test/v1x/python/example/getting_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/getting_started.py -------------------------------------------------------------------------------- /test/v1x/python/example/grover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/grover.py -------------------------------------------------------------------------------- /test/v1x/python/example/rb_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/rb_single.py -------------------------------------------------------------------------------- /test/v1x/python/example/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/example/simple.py -------------------------------------------------------------------------------- /test/v1x/python/test_Kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_Kernel.py -------------------------------------------------------------------------------- /test/v1x/python/test_Platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_Platform.py -------------------------------------------------------------------------------- /test/v1x/python/test_Program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_Program.py -------------------------------------------------------------------------------- /test/v1x/python/test_alap_rc_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_alap_rc_schedule.py -------------------------------------------------------------------------------- /test/v1x/python/test_barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_barrier.py -------------------------------------------------------------------------------- /test/v1x/python/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_basics.py -------------------------------------------------------------------------------- /test/v1x/python/test_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_bugs.py -------------------------------------------------------------------------------- /test/v1x/python/test_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cc.py -------------------------------------------------------------------------------- /test/v1x/python/test_cc_cqasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cc_cqasm.py -------------------------------------------------------------------------------- /test/v1x/python/test_cc_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cc_light.py -------------------------------------------------------------------------------- /test/v1x/python/test_cc_light_long_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cc_light_long_duration.py -------------------------------------------------------------------------------- /test/v1x/python/test_commutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_commutation.py -------------------------------------------------------------------------------- /test/v1x/python/test_compiler_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_compiler_api.py -------------------------------------------------------------------------------- /test/v1x/python/test_condex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_condex.py -------------------------------------------------------------------------------- /test/v1x/python/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_configuration.py -------------------------------------------------------------------------------- /test/v1x/python/test_conjugate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_conjugate.py -------------------------------------------------------------------------------- /test/v1x/python/test_controlled_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_controlled_kernel.py -------------------------------------------------------------------------------- /test/v1x/python/test_cqasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cqasm.py -------------------------------------------------------------------------------- /test/v1x/python/test_cqasm_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_cqasm_reader.py -------------------------------------------------------------------------------- /test/v1x/python/test_custom_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_custom_gate.py -------------------------------------------------------------------------------- /test/v1x/python/test_dependence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_dependence.py -------------------------------------------------------------------------------- /test/v1x/python/test_diamond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_diamond.py -------------------------------------------------------------------------------- /test/v1x/python/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_exceptions.py -------------------------------------------------------------------------------- /test/v1x/python/test_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_flux.py -------------------------------------------------------------------------------- /test/v1x/python/test_gate_decomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_gate_decomposition.py -------------------------------------------------------------------------------- /test/v1x/python/test_instruction_decomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_instruction_decomposition.py -------------------------------------------------------------------------------- /test/v1x/python/test_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_mapper.py -------------------------------------------------------------------------------- /test/v1x/python/test_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_minimal.py -------------------------------------------------------------------------------- /test/v1x/python/test_multi_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_multi_core.py -------------------------------------------------------------------------------- /test/v1x/python/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_options.py -------------------------------------------------------------------------------- /test/v1x/python/test_parallel_triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_parallel_triggers.py -------------------------------------------------------------------------------- /test/v1x/python/test_qubits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_qubits.py -------------------------------------------------------------------------------- /test/v1x/python/test_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_scale.py -------------------------------------------------------------------------------- /test/v1x/python/test_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_skip.py -------------------------------------------------------------------------------- /test/v1x/python/test_std_experiments_CCL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_std_experiments_CCL.py -------------------------------------------------------------------------------- /test/v1x/python/test_structure_decomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_structure_decomposition.py -------------------------------------------------------------------------------- /test/v1x/python/test_uniform_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_uniform_sched.py -------------------------------------------------------------------------------- /test/v1x/python/test_unitary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_unitary.py -------------------------------------------------------------------------------- /test/v1x/python/test_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/test_wait.py -------------------------------------------------------------------------------- /test/v1x/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/utils.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/config.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/deutsch-josza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/deutsch-josza.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_1.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_2.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_3.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_4.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_5.py -------------------------------------------------------------------------------- /test/v1x/python/visualizer/example_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/test/v1x/python/visualizer/example_6.py -------------------------------------------------------------------------------- /trace/fusioncharts.gantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/trace/fusioncharts.gantt.js -------------------------------------------------------------------------------- /trace/fusioncharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/trace/fusioncharts.js -------------------------------------------------------------------------------- /trace/fusioncharts.theme.fint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/trace/fusioncharts.theme.fint.js -------------------------------------------------------------------------------- /trace/fusioncharts.widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/trace/fusioncharts.widgets.js -------------------------------------------------------------------------------- /trace/operations_schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/trace/operations_schedule.html -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuTech-Delft/OpenQL/HEAD/version.py --------------------------------------------------------------------------------