Skip to content

Commit dcb28d3

Browse files
committed
[#328] [studio-common, stbx-protocol] check if transition is enabled before firing
1 parent 8463a97 commit dcb28d3

File tree

2 files changed

+20
-2
lines changed
  • stbx-protocol/src/Statebox/Protocol
  • studio-common/src/Data/Petrinet/Representation

2 files changed

+20
-2
lines changed

stbx-protocol/src/Statebox/Protocol/Fire.purs

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import Data.Either.Nested (type (\/))
77
import Data.Maybe (maybe)
88
import Data.NonEmpty (head)
99

10-
import Data.Petrinet.Representation.Dict (fireAtMarking)
1110
import Data.Petrinet.Representation.Marking (MarkingF)
11+
import Data.Petrinet.Representation.Dict (fireEnabledAtMarking)
1212
import Statebox.Core.Transition (gluedTokens)
1313
import Statebox.Core.Types (Firing, Wiring, PID)
1414
import Statebox.Core.WiringTree (LinearizationError, fromWiring, linearize)
@@ -38,7 +38,10 @@ fire wiring firing marking = maybe
3838
in maybe
3939
(Left FireTransitionIndexOutOfBounds)
4040
(\gluedTransition ->
41-
Right $ fireAtMarking marking $ gluedTokens gluedTransition)
41+
maybe
42+
(Left FireTransitionNotEnabled)
43+
Right
44+
(fireEnabledAtMarking marking $ gluedTokens gluedTransition))
4245
(index gluedTransitions transitionIndex))
4346
(linearize wiringTree))
4447
(fromWiring wiring)

studio-common/src/Data/Petrinet/Representation/Dict.purs

+15
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module Data.Petrinet.Representation.Dict
1313
, fire
1414
, fireAtMarking
1515
, isTransitionEnabled
16+
, fireEnabledAtMarking
1617

1718
, preMarking
1819
, postMarking
@@ -154,3 +155,17 @@ isTransitionEnabled marking t = isPlaceEnabled `all` t.pre
154155
where
155156
isPlaceEnabled :: PlaceMarkingF pid tok -> Boolean
156157
isPlaceEnabled tp = fromMaybe false $ (>=) <$> marking `tokensAt` tp.place <*> Just tp.tokens
158+
159+
fireEnabledAtMarking
160+
:: p tok
161+
. Ord p
162+
=> Ord tok
163+
=> Semiring tok
164+
=> Group (MarkingF p tok)
165+
=> MarkingF p tok
166+
-> TransitionF p tok
167+
-> Maybe (MarkingF p tok)
168+
fireEnabledAtMarking marking t =
169+
if isTransitionEnabled marking t
170+
then Just $ fireAtMarking marking t
171+
else Nothing

0 commit comments

Comments
 (0)