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