Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottWe committed Jan 21, 2025
1 parent 3e697f4 commit fe84f38
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/test/verify_openqasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ int main(int argc, char **argv) {
std::string outfile = "res.json";
std::string timeout = "30000";
if (argc < 3 || argc > 5) {
std::cerr << "Usage: " << argv[0] << " circ1 circ2 [timeout] [tmpdir]" << std::endl;
std::cerr << "Usage: " << argv[0] << " circ1 circ2 [timeout] [tmpdir]"
<< std::endl;
return -1;
}
if (argc >= 4) {
Expand Down Expand Up @@ -78,7 +79,8 @@ int main(int argc, char **argv) {
.append("verifier")
.append("verify_equivalences.py");
std::string script = verifier_path.string();
std::string arglst = tmpfile + " " + outfile + " True True True True False " + timeout;
std::string arglst =
tmpfile + " " + outfile + " True True True True False " + timeout;

// Applies the equivalence checker to the json file.
std::string command = "python " + script + " " + arglst;
Expand Down

0 comments on commit fe84f38

Please sign in to comment.