We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eea5e5 commit d6d165aCopy full SHA for d6d165a
src/smt.rs
@@ -665,7 +665,10 @@ impl BaseSort for SMTSolved {
665
SatResultWithModel::Unsat => SMTSolvedValue::Unsat,
666
SatResultWithModel::Unknown => SMTSolvedValue::Unknown,
667
};
668
- println!();
+ if env::var("SMT_DEBUG").is_ok() {
669
+ // Print out a newline to separate SMT solver calls
670
+ println!();
671
+ }
672
res
673
}}
674
);
0 commit comments