@@ -220,14 +220,14 @@ sequence_matchest instantiate_sequence(
220
220
{
221
221
auto &first_match = to_sva_sequence_first_match_expr (expr);
222
222
223
- const auto lhs_matches =
224
- instantiate_sequence (first_match.lhs (), semantics, t, no_timeframes);
223
+ const auto matches =
224
+ instantiate_sequence (first_match.sequence (), semantics, t, no_timeframes);
225
225
226
226
// the match of seq with the earliest ending clock tick is a
227
227
// match of first_match (seq)
228
228
std::optional<mp_integer> earliest;
229
229
230
- for (auto &match : lhs_matches )
230
+ for (auto &match : matches )
231
231
{
232
232
if (!earliest.has_value () || earliest.value () > match.end_time )
233
233
earliest = match.end_time ;
@@ -238,7 +238,7 @@ sequence_matchest instantiate_sequence(
238
238
239
239
sequence_matchest result;
240
240
241
- for (auto &match : lhs_matches )
241
+ for (auto &match : matches )
242
242
{
243
243
// Earliest?
244
244
if (match.end_time == earliest.value ())
@@ -257,23 +257,23 @@ sequence_matchest instantiate_sequence(
257
257
// - exp evaluates to true at each clock tick of the interval.
258
258
auto &throughout = to_sva_sequence_throughout_expr (expr);
259
259
260
- const auto rhs_matches =
261
- instantiate_sequence (throughout.rhs (), semantics, t, no_timeframes);
260
+ const auto matches =
261
+ instantiate_sequence (throughout.sequence (), semantics, t, no_timeframes);
262
262
263
263
sequence_matchest result;
264
264
265
- for (auto &rhs_match : rhs_matches )
265
+ for (auto &match : matches )
266
266
{
267
- exprt::operandst conjuncts = {rhs_match .condition ()};
267
+ exprt::operandst conjuncts = {match .condition ()};
268
268
269
- for (mp_integer new_t = t; new_t <= rhs_match .end_time ; ++new_t )
269
+ for (mp_integer new_t = t; new_t <= match .end_time ; ++new_t )
270
270
{
271
271
auto obligations =
272
272
property_obligations (throughout.lhs (), new_t , no_timeframes);
273
273
conjuncts.push_back (obligations.conjunction ().second );
274
274
}
275
275
276
- result.emplace_back (rhs_match .end_time , conjunction (conjuncts));
276
+ result.emplace_back (match .end_time , conjunction (conjuncts));
277
277
}
278
278
279
279
return result;
0 commit comments