Skip to content

Commit

Permalink
Fix more issues
Browse files Browse the repository at this point in the history
Signed-off-by: Tej Chajed <[email protected]>
  • Loading branch information
tchajed committed Jul 21, 2023
1 parent c753dbf commit 09fddf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solver/src/imp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl<B: Backend> Solver<B> {
let start = fly::timing::start();
let r = if assumptions.is_empty() {
let sat = self.proc.check_sat()?;
self.comment_with(|| format!("check sat result: {:?}", sat));
self.comment_with(|| format!("check sat result: {sat:?}"));
Ok(sat)
} else {
self.last_assumptions = Some(assumptions.clone());
Expand All @@ -209,7 +209,7 @@ impl<B: Backend> Solver<B> {
.sorted()
.collect::<Vec<_>>();
let sat = self.proc.check_sat_assuming(&assumptions)?;
self.comment_with(|| format!("check sat result: {:?}", sat));
self.comment_with(|| format!("check sat result: {sat:?}"));
Ok(sat)
};
fly::timing::elapsed(
Expand Down

0 comments on commit 09fddf4

Please sign in to comment.