@@ -61,7 +61,7 @@ SCENARIO(
61
61
62
62
THEN (" b should be in the constant propagator with value 'true'" )
63
63
{
64
- auto it = goto_state.propagation .find (
64
+ auto it = goto_state.branch_propagation .find (
65
65
to_ssa_expr (renamed_b).get_l1_object_identifier ());
66
66
REQUIRE (it);
67
67
REQUIRE (it->get () == true_exprt{});
@@ -75,7 +75,7 @@ SCENARIO(
75
75
76
76
THEN (" b should be in the constant propagator with value 'false'" )
77
77
{
78
- auto it = goto_state.propagation .find (
78
+ auto it = goto_state.branch_propagation .find (
79
79
to_ssa_expr (renamed_b).get_l1_object_identifier ());
80
80
REQUIRE (it);
81
81
REQUIRE (it->get () == false_exprt{});
@@ -89,7 +89,7 @@ SCENARIO(
89
89
90
90
THEN (" b should be in the constant propagator with value 'true'" )
91
91
{
92
- auto it = goto_state.propagation .find (
92
+ auto it = goto_state.branch_propagation .find (
93
93
to_ssa_expr (renamed_b).get_l1_object_identifier ());
94
94
REQUIRE (it);
95
95
REQUIRE (it->get () == true_exprt{});
@@ -103,7 +103,7 @@ SCENARIO(
103
103
104
104
THEN (" b should be in the constant propagator with value 'false'" )
105
105
{
106
- auto it = goto_state.propagation .find (
106
+ auto it = goto_state.branch_propagation .find (
107
107
to_ssa_expr (renamed_b).get_l1_object_identifier ());
108
108
REQUIRE (it);
109
109
REQUIRE (it->get () == false_exprt{});
@@ -117,7 +117,7 @@ SCENARIO(
117
117
118
118
THEN (" b should be in the constant propagator with value 'false'" )
119
119
{
120
- auto it = goto_state.propagation .find (
120
+ auto it = goto_state.branch_propagation .find (
121
121
to_ssa_expr (renamed_b).get_l1_object_identifier ());
122
122
REQUIRE (it);
123
123
REQUIRE (it->get () == false_exprt{});
@@ -131,7 +131,7 @@ SCENARIO(
131
131
132
132
THEN (" b should be in the constant propagator with value 'true'" )
133
133
{
134
- auto it = goto_state.propagation .find (
134
+ auto it = goto_state.branch_propagation .find (
135
135
to_ssa_expr (renamed_b).get_l1_object_identifier ());
136
136
REQUIRE (it);
137
137
REQUIRE (it->get () == true_exprt{});
@@ -145,7 +145,7 @@ SCENARIO(
145
145
146
146
THEN (" b should be in the constant propagator with value 'false'" )
147
147
{
148
- auto it = goto_state.propagation .find (
148
+ auto it = goto_state.branch_propagation .find (
149
149
to_ssa_expr (renamed_b).get_l1_object_identifier ());
150
150
REQUIRE (it);
151
151
REQUIRE (it->get () == false_exprt{});
@@ -159,7 +159,7 @@ SCENARIO(
159
159
160
160
THEN (" b should be in the constant propagator with value 'true'" )
161
161
{
162
- auto it = goto_state.propagation .find (
162
+ auto it = goto_state.branch_propagation .find (
163
163
to_ssa_expr (renamed_b).get_l1_object_identifier ());
164
164
REQUIRE (it);
165
165
REQUIRE (it->get () == true_exprt{});
@@ -173,7 +173,7 @@ SCENARIO(
173
173
174
174
THEN (" b should be in the constant propagator with value 'true'" )
175
175
{
176
- auto it = goto_state.propagation .find (
176
+ auto it = goto_state.branch_propagation .find (
177
177
to_ssa_expr (renamed_b).get_l1_object_identifier ());
178
178
REQUIRE (it);
179
179
REQUIRE (it->get () == true_exprt{});
@@ -187,7 +187,7 @@ SCENARIO(
187
187
188
188
THEN (" b should be in the constant propagator with value 'false'" )
189
189
{
190
- auto it = goto_state.propagation .find (
190
+ auto it = goto_state.branch_propagation .find (
191
191
to_ssa_expr (renamed_b).get_l1_object_identifier ());
192
192
REQUIRE (it);
193
193
REQUIRE (it->get () == false_exprt{});
@@ -201,7 +201,7 @@ SCENARIO(
201
201
202
202
THEN (" b should be in the constant propagator with value 'true'" )
203
203
{
204
- auto it = goto_state.propagation .find (
204
+ auto it = goto_state.branch_propagation .find (
205
205
to_ssa_expr (renamed_b).get_l1_object_identifier ());
206
206
REQUIRE (it);
207
207
REQUIRE (it->get () == true_exprt{});
0 commit comments