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 eb84546 commit afa3ad1Copy full SHA for afa3ad1
src/analyses/variable-sensitivity/variable_sensitivity_domain.cpp
@@ -71,17 +71,15 @@ void variable_sensitivity_domaint::transform(
71
case GOTO:
72
{
73
// TODO(tkiley): add support for flow sensitivity
74
-#if 0
75
- if (flow_sensitivity == FLOW_SENSITIVE)
+ if (1) // (flow_sensitivity == FLOW_SENSITIVE)
76
77
locationt next=from;
78
next++;
79
if(next==to)
80
- assume(not_exprt(instruction.guard));
+ abstract_state.assume(not_exprt(instruction.guard), ns);
81
else
82
- assume(instruction.guard);
+ abstract_state.assume(instruction.guard, ns);
83
}
84
-#endif
85
86
break;
87
0 commit comments