File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ function convert_property(
155
155
prop = system_property (spec)
156
156
157
157
reach_states = Int32[]
158
- avoid_states = Int32[numregions (state_abstraction)] # Absorbing state
158
+ avoid_states = Int32[numregions (state_abstraction) + 1 ] # Absorbing state
159
159
160
160
for (i, source_region) in enumerate (regions (state_abstraction))
161
161
if ispessimistic (spec) && source_region ⊆ reach (prop)
@@ -176,7 +176,7 @@ function convert_property(
176
176
prop = system_property (spec)
177
177
178
178
reach_states = Int32[]
179
- avoid_states = Int32[numregions (state_abstraction)] # Absorbing state
179
+ avoid_states = Int32[numregions (state_abstraction) + 1 ] # Absorbing state
180
180
181
181
for (i, source_region) in enumerate (regions (state_abstraction))
182
182
if ispessimistic (spec) && ! iszeromeasure (avoid (prop), source_region)
@@ -200,7 +200,7 @@ function convert_property(
200
200
)
201
201
prop = system_property (spec)
202
202
203
- avoid_states = Int32[numregions (state_abstraction)] # Absorbing state
203
+ avoid_states = Int32[numregions (state_abstraction) + 1 ] # Absorbing state
204
204
205
205
for (i, source_region) in enumerate (regions (state_abstraction))
206
206
if ispessimistic (spec) && ! iszeromeasure (avoid (prop), source_region)
You can’t perform that action at this time.
0 commit comments