File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ [ net] TransitionEntry -- has ` subnet `
2
+
1
3
# stmt
2
4
3
- Stmt
5
+ DefinePlace
6
+
7
+ DefineTransition
4
8
5
9
Run
6
10
7
11
```
8
12
run {
13
+ place input: Complaint = [{}, {}, ...]
14
+
9
15
(input) -> [register] -> (c1, c2)
10
16
(c1) -> [sendQuestionnaire] -> (c3)
11
17
(c3) -> [processQuestionnaire] -> (c5)
19
25
}
20
26
```
21
27
28
+ # exp
29
+
30
+ BlockStmt -- LetPlace
31
+
22
32
# net
23
33
24
34
[ connect] connectTransitionToInputPlaces(net: Net, transition: Transition, places: Array<Place >)
Original file line number Diff line number Diff line change
1
+ import { Mod } from "../mod"
2
+ import { Net } from "../net"
3
+ import { Value } from "../value"
4
+
5
+ export type Env = {
6
+ mod : Mod
7
+ net : Net
8
+ locals : Map < string , Value >
9
+ }
Original file line number Diff line number Diff line change
1
+ export * from "./Env"
You can’t perform that action at this time.
0 commit comments