Skip to content

Commit

Permalink
bugfix: execute cvc4 correctly in linux
Browse files Browse the repository at this point in the history
  • Loading branch information
WilfredTA committed Jun 27, 2023
1 parent 76a6ca3 commit e4bf08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion topenv_part1.sml
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ fun cvcSolveGeneric(P,timeout_option,ht_option) =
val cmd_predix = if Paths.is_unix then Names.cvc4_binary else "cvcopt.exe "
val command = (case timeout_option of
SOME(str) => cmd_predix ^ "--tlimit= " ^ str ^ " --produce-models cvc0.cvc > cvco.ys 2> cvce.ys"
| _ => cmd_predix ^ "--produce-models cvc0.cvc > cvco.ys 2> cvce.ys")
| _ => cmd_predix ^ " --produce-models cvc0.cvc > cvco.ys 2> cvce.ys")
val _ = OS.Process.system(command)
val t3 = Time.toReal(Time.now())
val _ = debugPrint("\nCVC finished in "^(Real.toString(Real.-(t3,t2)))^" seconds...\n")
Expand Down

0 comments on commit e4bf08f

Please sign in to comment.