File tree 3 files changed +13
-8
lines changed
3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 3
3
, name =
4
4
" stbx-protocol"
5
5
, dependencies =
6
- [ " halogen-petrinet-editor"
7
- , " stbx-core"
8
- , " stbx-tx-store"
9
- , " studio-common"
10
- ]
6
+ [ " stbx-core" , " studio-common" , " stbx-tx-store" ]
11
7
, packages =
12
8
./../ packages. dhall
13
9
}
Original file line number Diff line number Diff line change 1
1
module Statebox.Protocol.ExecutionState where
2
2
3
3
import Statebox.Core.Transaction (TxId )
4
- import View.Petrinet.Model (Marking )
4
+ import Statebox.Core.Types (PID )
5
+ import Data.Petrinet.Representation.Marking (MarkingF )
5
6
6
7
type ExecutionState =
7
8
{ lastFiring :: TxId
8
9
, wiring :: TxId
9
10
, marking :: Marking
10
11
}
12
+
13
+ -- TODO dedupe
14
+ type Marking = MarkingF PID Tokens
15
+ type Tokens = Int
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ import Data.Maybe (maybe)
8
8
import Data.NonEmpty (head )
9
9
10
10
import Data.Petrinet.Representation.Dict (fireAtMarking )
11
+ import Data.Petrinet.Representation.Marking (MarkingF )
11
12
import Statebox.Core.Transition (gluedTokens )
12
- import Statebox.Core.Types (Firing , Wiring )
13
+ import Statebox.Core.Types (Firing , Wiring , PID )
13
14
import Statebox.Core.WiringTree (LinearizationError , fromWiring , linearize )
14
- import View.Petrinet.Model (Marking )
15
15
16
16
data FiringError
17
17
@@ -42,3 +42,7 @@ fire wiring firing marking = maybe
42
42
(index gluedTransitions transitionIndex))
43
43
(linearize wiringTree))
44
44
(fromWiring wiring)
45
+
46
+ -- TODO dedupe
47
+ type Marking = MarkingF PID Tokens
48
+ type Tokens = Int
You can’t perform that action at this time.
0 commit comments