summaryrefslogtreecommitdiff
path: root/src/prop/sat_solver_factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/sat_solver_factory.cpp')
-rw-r--r--src/prop/sat_solver_factory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prop/sat_solver_factory.cpp b/src/prop/sat_solver_factory.cpp
index cfab5703c..460ab3ece 100644
--- a/src/prop/sat_solver_factory.cpp
+++ b/src/prop/sat_solver_factory.cpp
@@ -44,7 +44,7 @@ SatSolver* SatSolverFactory::createCryptoMinisat(StatisticsRegistry* registry,
#ifdef CVC4_USE_CRYPTOMINISAT
return new CryptoMinisatSolver(registry, name);
#else
- Unreachable("CVC4 was not compiled with Cryptominisat support.");
+ Unreachable() << "CVC4 was not compiled with Cryptominisat support.";
#endif
}
@@ -54,7 +54,7 @@ SatSolver* SatSolverFactory::createCadical(StatisticsRegistry* registry,
#ifdef CVC4_USE_CADICAL
return new CadicalSolver(registry, name);
#else
- Unreachable("CVC4 was not compiled with CaDiCaL support.");
+ Unreachable() << "CVC4 was not compiled with CaDiCaL support.";
#endif
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback