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