-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1D-FSSP-Macro.inc
105 lines (97 loc) · 1.42 KB
/
1D-FSSP-Macro.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#BeginMacro(L)
(0)
#EndMacro
#BeginMacro(S)
(1)
#EndMacro
#BeginMacro(A)
(2)
#EndMacro
#BeginMacro(B)
(3)
#EndMacro
#BeginMacro(C)
(4)
#EndMacro
#BeginMacro(G)
(5)
#EndMacro
#BeginMacro(F)
(6)
#EndMacro
#BeginMacro(D)
(7)
#EndMacro
%Transitions for current state D
#BeginMacro(isD)
((0, 0)=#macro(D))
#EndMacro
#BeginMacro(isLeftD)
((0, -1)=#macro(D))
#EndMacro
#BeginMacro(isRightD)
((0, 1)=#macro(D))
#EndMacro
#BeginMacro(isS)
((0, 0)=#macro(S))
#EndMacro
#BeginMacro(isLeftS)
((0, -1)=#macro(S))
#EndMacro
#BeginMacro(isRightS)
((0, 1)=#macro(S))
#EndMacro
#BeginMacro(isL)
((0, 0)=#macro(L))
#EndMacro
#BeginMacro(isLeftL)
((0, -1)=#macro(L))
#EndMacro
#BeginMacro(isRightL)
((0, 1)=#macro(L))
#EndMacro
#BeginMacro(isA)
((0, 0)=#macro(A))
#EndMacro
#BeginMacro(isLeftA)
((0, -1)=#macro(A))
#EndMacro
#BeginMacro(isRightA)
((0, 1)=#macro(A))
#EndMacro
#BeginMacro(isB)
((0, 0)=#macro(B))
#EndMacro
#BeginMacro(isLeftB)
((0, -1)=#macro(B))
#EndMacro
#BeginMacro(isRightB)
((0, 1)=#macro(B))
#EndMacro
#BeginMacro(isC)
((0, 0)=#macro(C))
#EndMacro
#BeginMacro(isLeftC)
((0, -1)=#macro(C))
#EndMacro
#BeginMacro(isRightC)
((0, 1)=#macro(C))
#EndMacro
#BeginMacro(isG)
((0, 0)=#macro(G))
#EndMacro
#BeginMacro(isLeftG)
((0, -1)=#macro(G))
#EndMacro
#BeginMacro(isRightG)
((0, 1)=#macro(G))
#EndMacro
#BeginMacro(isF)
((0, 0)=#macro(F))
#EndMacro
#BeginMacro(isLeftF)
((0, -1)=#macro(F))
#EndMacro
#BeginMacro(isRightF)
((0, 1)=#macro(F))
#EndMacro