@@ -61,7 +61,7 @@ SCENARIO(
6161
6262 THEN (" b should be in the constant propagator with value 'true'" )
6363 {
64- auto it = goto_state.propagation .find (
64+ auto it = goto_state.branch_propagation .find (
6565 to_ssa_expr (renamed_b).get_l1_object_identifier ());
6666 REQUIRE (it);
6767 REQUIRE (it->get () == true_exprt{});
@@ -75,7 +75,7 @@ SCENARIO(
7575
7676 THEN (" b should be in the constant propagator with value 'false'" )
7777 {
78- auto it = goto_state.propagation .find (
78+ auto it = goto_state.branch_propagation .find (
7979 to_ssa_expr (renamed_b).get_l1_object_identifier ());
8080 REQUIRE (it);
8181 REQUIRE (it->get () == false_exprt{});
@@ -89,7 +89,7 @@ SCENARIO(
8989
9090 THEN (" b should be in the constant propagator with value 'true'" )
9191 {
92- auto it = goto_state.propagation .find (
92+ auto it = goto_state.branch_propagation .find (
9393 to_ssa_expr (renamed_b).get_l1_object_identifier ());
9494 REQUIRE (it);
9595 REQUIRE (it->get () == true_exprt{});
@@ -103,7 +103,7 @@ SCENARIO(
103103
104104 THEN (" b should be in the constant propagator with value 'false'" )
105105 {
106- auto it = goto_state.propagation .find (
106+ auto it = goto_state.branch_propagation .find (
107107 to_ssa_expr (renamed_b).get_l1_object_identifier ());
108108 REQUIRE (it);
109109 REQUIRE (it->get () == false_exprt{});
@@ -117,7 +117,7 @@ SCENARIO(
117117
118118 THEN (" b should be in the constant propagator with value 'false'" )
119119 {
120- auto it = goto_state.propagation .find (
120+ auto it = goto_state.branch_propagation .find (
121121 to_ssa_expr (renamed_b).get_l1_object_identifier ());
122122 REQUIRE (it);
123123 REQUIRE (it->get () == false_exprt{});
@@ -131,7 +131,7 @@ SCENARIO(
131131
132132 THEN (" b should be in the constant propagator with value 'true'" )
133133 {
134- auto it = goto_state.propagation .find (
134+ auto it = goto_state.branch_propagation .find (
135135 to_ssa_expr (renamed_b).get_l1_object_identifier ());
136136 REQUIRE (it);
137137 REQUIRE (it->get () == true_exprt{});
@@ -145,7 +145,7 @@ SCENARIO(
145145
146146 THEN (" b should be in the constant propagator with value 'false'" )
147147 {
148- auto it = goto_state.propagation .find (
148+ auto it = goto_state.branch_propagation .find (
149149 to_ssa_expr (renamed_b).get_l1_object_identifier ());
150150 REQUIRE (it);
151151 REQUIRE (it->get () == false_exprt{});
@@ -159,7 +159,7 @@ SCENARIO(
159159
160160 THEN (" b should be in the constant propagator with value 'true'" )
161161 {
162- auto it = goto_state.propagation .find (
162+ auto it = goto_state.branch_propagation .find (
163163 to_ssa_expr (renamed_b).get_l1_object_identifier ());
164164 REQUIRE (it);
165165 REQUIRE (it->get () == true_exprt{});
@@ -173,7 +173,7 @@ SCENARIO(
173173
174174 THEN (" b should be in the constant propagator with value 'true'" )
175175 {
176- auto it = goto_state.propagation .find (
176+ auto it = goto_state.branch_propagation .find (
177177 to_ssa_expr (renamed_b).get_l1_object_identifier ());
178178 REQUIRE (it);
179179 REQUIRE (it->get () == true_exprt{});
@@ -187,7 +187,7 @@ SCENARIO(
187187
188188 THEN (" b should be in the constant propagator with value 'false'" )
189189 {
190- auto it = goto_state.propagation .find (
190+ auto it = goto_state.branch_propagation .find (
191191 to_ssa_expr (renamed_b).get_l1_object_identifier ());
192192 REQUIRE (it);
193193 REQUIRE (it->get () == false_exprt{});
@@ -201,7 +201,7 @@ SCENARIO(
201201
202202 THEN (" b should be in the constant propagator with value 'true'" )
203203 {
204- auto it = goto_state.propagation .find (
204+ auto it = goto_state.branch_propagation .find (
205205 to_ssa_expr (renamed_b).get_l1_object_identifier ());
206206 REQUIRE (it);
207207 REQUIRE (it->get () == true_exprt{});
0 commit comments