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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
const _state_chart_actions = Int8[0, 1, 0, 1, 2, 2, 0, 1, 2, 0, 2, 2, 3, 4, 0 , ]
const _state_chart_trans_keys = UInt8[1, 0, 4, 4, 0, 4, 2, 4, 0 , ]
const _state_chart_char_class = Int8[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0 , ]
const _state_chart_index_offsets = Int8[0, 0, 1, 6, 0 , ]
const _state_chart_indicies = Int8[0, 2, 1, 1, 1, 0, 3, 4, 5, 0 , ]
const _state_chart_index_defaults = Int8[0, 1, 1, 1, 0 , ]
const _state_chart_trans_cond_spaces = Int8[-1, -1, -1, -1, -1, -1, 0 , ]
const _state_chart_cond_targs = Int8[2, 0, 3, 1, 1, 2, 0 , ]
const _state_chart_cond_actions = Int8[3, 0, 11, 1, 5, 8, 0 , ]
const _state_chart_nfa_targs = Int8[0, 0 , ]
const _state_chart_nfa_offsets = Int8[0, 0, 0, 0, 0 , ]
const _state_chart_nfa_push_actions = Int8[0, 0 , ]
const _state_chart_nfa_pop_trans = Int8[0, 0 , ]
const state_chart_start = 3
const state_chart_first_final = 3
const state_chart_error = 0
const state_chart_en_main = 3
function m( data::AbstractString )
p = 0
pe = length(data)
eof = length(data)
cs = 0
buffer = ""
neg = 0;
value = 0;
value = 0;
neg = 0;
cs = convert(Int, state_chart_start )
_trans = 0;
_have = 0;
_cont = 1;
_acts = 0;
_nacts= 0
;
_keys = 0;
_inds = 0;
while _cont == 1
if cs == 0
_cont = 0
end
_have = 0
if p == pe
if _have == 0
_cont = 0
end
end
if _cont == 1
if _have == 0
_keys = (cs<<1)
_inds = _state_chart_index_offsets[1+(cs)]
if (data[1+(p )])<= 57 && (data[1+(p )])>= 10
_ic = convert(Int, _state_chart_char_class[1+(convert(Int, (data[1+(p )]) )- 10)] );
if _ic <= convert(Int, _state_chart_trans_keys[1+(_keys+1 )] )&& _ic >= convert(Int, _state_chart_trans_keys[1+(_keys )] )
_trans = convert(UInt, _state_chart_indicies[1+(_inds + convert(Int, (_ic - convert(Int, _state_chart_trans_keys[1+(_keys )] )) ))] )
else
_trans = convert(UInt, _state_chart_index_defaults[1+(cs)] )
end
else
_trans = convert(UInt, _state_chart_index_defaults[1+(cs)] )
end
end
if _cont == 1
cs = convert(Int, _state_chart_cond_targs[1+(_trans)] )
if _state_chart_cond_actions[1+(_trans)]!= 0
_acts = _state_chart_cond_actions[1+(_trans)]
_nacts = convert(UInt, _state_chart_actions[1+(_acts )] )
_acts += 1
while _nacts > 0
if _state_chart_actions[1+(_acts )] == 0
neg = 0;
value = 0;
elseif _state_chart_actions[1+(_acts )] == 1
neg = 1;
elseif _state_chart_actions[1+(_acts )] == 2
value = value * 10 + convert( Int, ( ((data[1+(p )])) - 48 ) )
;
elseif _state_chart_actions[1+(_acts )] == 3
if ( neg != 0 )
value = -1 * value;
end
elseif _state_chart_actions[1+(_acts )] == 4
print( value );
print( "\n" );
end
_nacts -= 1
_acts += 1
end
end
if cs == 0
_cont = 0
end
if _cont == 1
p += 1
end
end
end
end
if ( cs >= state_chart_first_final )
println( "ACCEPT" );
else
println( "FAIL" );
end
end
m( "1\n" );
m( "12\n" );
m( "222222\n" );
m( "+2123\n" );
m( "213 3213\n" );
m( "-12321\n" );
m( "--123\n" );
m( "-99\n" );
m( " -3000\n" );
|