Skip to content
Snippets Groups Projects
Commit ac8b8c8d authored by dgelessus's avatar dgelessus
Browse files

Add CVC4 support to SolveCommand

parent 614fbb0f
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,10 @@ public final class SolveCommand implements Command { ...@@ -63,6 +63,10 @@ public final class SolveCommand implements Command {
solver = CbcSolveCommand.Solvers.Z3; solver = CbcSolveCommand.Solvers.Z3;
break; break;
case "cvc4":
solver = CbcSolveCommand.Solvers.CVC4;
break;
default: default:
throw new UserErrorException("Unknown solver: " + split.get(0)); throw new UserErrorException("Unknown solver: " + split.get(0));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment