Skip to content

Commit d969fa6

Browse files
committed
[trace] Fix a stupid bug
1 parent 60f02ef commit d969fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hopdr/src/checker/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ impl<'a> Translator {
528528
let g2 = self.destruct_trace(g2, |x| mk_conj_trace(TRACE_CONJ_RIGHT, x));
529529

530530
let left = Expr::mk_try_with(g1.clone(), g2.clone());
531-
let right = Expr::mk_try_with(g2.clone(), g2.clone());
531+
let right = Expr::mk_try_with(g2.clone(), g1.clone());
532532
if Into::<Option<Constraint>>::into(g1_fml.clone()).is_some() {
533533
left
534534
} else if Into::<Option<Constraint>>::into(g2_fml.clone()).is_some() {

0 commit comments

Comments
 (0)