Skip to content

Commit d6d165a

Browse files
dont print space when not debugging
1 parent 4eea5e5 commit d6d165a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/smt.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,10 @@ impl BaseSort for SMTSolved {
665665
SatResultWithModel::Unsat => SMTSolvedValue::Unsat,
666666
SatResultWithModel::Unknown => SMTSolvedValue::Unknown,
667667
};
668-
println!();
668+
if env::var("SMT_DEBUG").is_ok() {
669+
// Print out a newline to separate SMT solver calls
670+
println!();
671+
}
669672
res
670673
}}
671674
);

0 commit comments

Comments
 (0)