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 60a84a9 commit f3926c4Copy full SHA for f3926c4
src/ebmc/ebmc_base.cpp
@@ -39,6 +39,27 @@ Author: Daniel Kroening, [email protected]
39
40
/*******************************************************************\
41
42
+Function: make_next_state
43
+
44
+ Inputs:
45
46
+ Outputs:
47
48
+ Purpose:
49
50
+\*******************************************************************/
51
52
+void make_next_state(exprt &expr)
53
+{
54
+ Forall_operands(it, expr)
55
+ make_next_state(*it);
56
57
+ if(expr.id()==ID_symbol)
58
+ expr.id(ID_next_symbol);
59
+}
60
61
+/*******************************************************************\
62
63
Function: ebmc_baset::ebmc_baset
64
65
Inputs:
0 commit comments