Created
July 13, 2017 12:32
-
-
Save nunoplopes/8cd9fb433b2663c99cb34c8a95ae812f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/sat/tactic/sat_tactic.cpp b/src/sat/tactic/sat_tactic.cpp | |
index 6775409..634d2dc 100644 | |
--- a/src/sat/tactic/sat_tactic.cpp | |
+++ b/src/sat/tactic/sat_tactic.cpp | |
@@ -65,6 +65,9 @@ class sat_tactic : public tactic { | |
CASSERT("sat_solver", m_solver.check_invariant()); | |
IF_VERBOSE(TACTIC_VERBOSITY_LVL, m_solver.display_status(verbose_stream());); | |
+ m_solver.display_dimacs(std::cout); | |
+ std::flush(std::cout); | |
+ exit(0); | |
TRACE("sat_dimacs", m_solver.display_dimacs(tout);); | |
lbool r = m_solver.check(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment