@@ -60,7 +60,7 @@ SCENARIO(
6060
6161 THEN (" b should be in the constant propagator with value 'true'" )
6262 {
63- auto it = goto_state.propagation .find (
63+ auto it = goto_state.branch_propagation .find (
6464 to_ssa_expr (renamed_b).get_l1_object_identifier ());
6565 REQUIRE (it);
6666 REQUIRE (it->get () == true_exprt{});
@@ -74,7 +74,7 @@ SCENARIO(
7474
7575 THEN (" b should be in the constant propagator with value 'false'" )
7676 {
77- auto it = goto_state.propagation .find (
77+ auto it = goto_state.branch_propagation .find (
7878 to_ssa_expr (renamed_b).get_l1_object_identifier ());
7979 REQUIRE (it);
8080 REQUIRE (it->get () == false_exprt{});
@@ -88,7 +88,7 @@ SCENARIO(
8888
8989 THEN (" b should be in the constant propagator with value 'true'" )
9090 {
91- auto it = goto_state.propagation .find (
91+ auto it = goto_state.branch_propagation .find (
9292 to_ssa_expr (renamed_b).get_l1_object_identifier ());
9393 REQUIRE (it);
9494 REQUIRE (it->get () == true_exprt{});
@@ -102,7 +102,7 @@ SCENARIO(
102102
103103 THEN (" b should be in the constant propagator with value 'false'" )
104104 {
105- auto it = goto_state.propagation .find (
105+ auto it = goto_state.branch_propagation .find (
106106 to_ssa_expr (renamed_b).get_l1_object_identifier ());
107107 REQUIRE (it);
108108 REQUIRE (it->get () == false_exprt{});
@@ -116,7 +116,7 @@ SCENARIO(
116116
117117 THEN (" b should be in the constant propagator with value 'false'" )
118118 {
119- auto it = goto_state.propagation .find (
119+ auto it = goto_state.branch_propagation .find (
120120 to_ssa_expr (renamed_b).get_l1_object_identifier ());
121121 REQUIRE (it);
122122 REQUIRE (it->get () == false_exprt{});
@@ -130,7 +130,7 @@ SCENARIO(
130130
131131 THEN (" b should be in the constant propagator with value 'true'" )
132132 {
133- auto it = goto_state.propagation .find (
133+ auto it = goto_state.branch_propagation .find (
134134 to_ssa_expr (renamed_b).get_l1_object_identifier ());
135135 REQUIRE (it);
136136 REQUIRE (it->get () == true_exprt{});
@@ -144,7 +144,7 @@ SCENARIO(
144144
145145 THEN (" b should be in the constant propagator with value 'false'" )
146146 {
147- auto it = goto_state.propagation .find (
147+ auto it = goto_state.branch_propagation .find (
148148 to_ssa_expr (renamed_b).get_l1_object_identifier ());
149149 REQUIRE (it);
150150 REQUIRE (it->get () == false_exprt{});
@@ -158,7 +158,7 @@ SCENARIO(
158158
159159 THEN (" b should be in the constant propagator with value 'true'" )
160160 {
161- auto it = goto_state.propagation .find (
161+ auto it = goto_state.branch_propagation .find (
162162 to_ssa_expr (renamed_b).get_l1_object_identifier ());
163163 REQUIRE (it);
164164 REQUIRE (it->get () == true_exprt{});
@@ -172,7 +172,7 @@ SCENARIO(
172172
173173 THEN (" b should be in the constant propagator with value 'true'" )
174174 {
175- auto it = goto_state.propagation .find (
175+ auto it = goto_state.branch_propagation .find (
176176 to_ssa_expr (renamed_b).get_l1_object_identifier ());
177177 REQUIRE (it);
178178 REQUIRE (it->get () == true_exprt{});
@@ -186,7 +186,7 @@ SCENARIO(
186186
187187 THEN (" b should be in the constant propagator with value 'false'" )
188188 {
189- auto it = goto_state.propagation .find (
189+ auto it = goto_state.branch_propagation .find (
190190 to_ssa_expr (renamed_b).get_l1_object_identifier ());
191191 REQUIRE (it);
192192 REQUIRE (it->get () == false_exprt{});
@@ -200,7 +200,7 @@ SCENARIO(
200200
201201 THEN (" b should be in the constant propagator with value 'true'" )
202202 {
203- auto it = goto_state.propagation .find (
203+ auto it = goto_state.branch_propagation .find (
204204 to_ssa_expr (renamed_b).get_l1_object_identifier ());
205205 REQUIRE (it);
206206 REQUIRE (it->get () == true_exprt{});
0 commit comments