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 Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import Data.Either.Nested (type (\/))
7
7
import Data.Maybe (maybe )
8
8
import Data.NonEmpty (head )
9
9
10
- import Data.Petrinet.Representation.Dict (fireAtMarking )
11
10
import Data.Petrinet.Representation.Marking (MarkingF )
11
+ import Data.Petrinet.Representation.Dict (fireEnabledAtMarking )
12
12
import Statebox.Core.Transition (gluedTokens )
13
13
import Statebox.Core.Types (Firing , Wiring , PID )
14
14
import Statebox.Core.WiringTree (LinearizationError , fromWiring , linearize )
@@ -38,7 +38,10 @@ fire wiring firing marking = maybe
38
38
in maybe
39
39
(Left FireTransitionIndexOutOfBounds )
40
40
(\gluedTransition ->
41
- Right $ fireAtMarking marking $ gluedTokens gluedTransition)
41
+ maybe
42
+ (Left FireTransitionNotEnabled )
43
+ Right
44
+ (fireEnabledAtMarking marking $ gluedTokens gluedTransition))
42
45
(index gluedTransitions transitionIndex))
43
46
(linearize wiringTree))
44
47
(fromWiring wiring)
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ module Data.Petrinet.Representation.Dict
13
13
, fire
14
14
, fireAtMarking
15
15
, isTransitionEnabled
16
+ , fireEnabledAtMarking
16
17
17
18
, preMarking
18
19
, postMarking
@@ -154,3 +155,17 @@ isTransitionEnabled marking t = isPlaceEnabled `all` t.pre
154
155
where
155
156
isPlaceEnabled :: PlaceMarkingF pid tok -> Boolean
156
157
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
You can’t perform that action at this time.
0 commit comments