We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e520282 commit a0d01d0Copy full SHA for a0d01d0
src/goto-instrument/cover.cpp
@@ -755,14 +755,14 @@ bool is_mcdc_pair(
755
values_of_atomic_exprts(e2, conditions);
756
757
// A mcdc pair should result in different ''decision''
758
- if(eval_exprt(atomic_exprts_e1, decision)
759
- ==eval_exprt(atomic_exprts_e2, decision))
+ if(eval_exprt(atomic_exprts_e1, decision)==
+ eval_exprt(atomic_exprts_e2, decision))
760
return false;
761
762
// A mcdc pair regarding an atomic exprt ''c''
763
// should have different values of ''c''
764
if(atomic_exprts_e1.find(c)->second==
765
- atomic_exprts_e2.find(c)->second)
+ atomic_exprts_e2.find(c)->second)
766
767
768
/**
0 commit comments