Skip to content

Commit

Permalink
Merge pull request #20 from sebastiaanbrand/qasm-file-renaming
Browse files Browse the repository at this point in the history
Correction of a linking error caused by renaming qsylan_qasn_parser
  • Loading branch information
MarinusVanDijk authored Jul 19, 2024
2 parents ae759da + a4d92ae commit 5f06dad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ add_example(test_algs test_algs.c)
target_sources(test_algs PRIVATE ${ALGORITHM_EXAMPLES})

add_executable(circuit_equivalence circuit_equivalence.c)
target_link_libraries(circuit_equivalence qsylvan qsylvan_qasm_parser)
target_link_libraries(circuit_equivalence qsylvan qsylvan_qasm_parser_qmdd)
2 changes: 1 addition & 1 deletion qasm/run_qasm_on_mtbdd.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ int main(int argc, char *argv[])
argp_parse(&argp, argc, argv, 0, 0, 0);

quantum_circuit_t* circuit = parse_qasm_file(qasm_inputfile);
optimize_qubit_order(circuit);
optimize_qubit_order(circuit, false);

if (rseed == 0) rseed = time(NULL);
srand(rseed);
Expand Down

0 comments on commit 5f06dad

Please sign in to comment.