-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
193 lines (171 loc) · 6.86 KB
/
test.html
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<title>Simulation Status - Simulators</title>
<link href="/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="/css/c3.css" rel="stylesheet">
<link href="/google-code-prettify/prettify.css" rel="stylesheet">
<link href="/css/layout.css?20151202v3" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Simulators</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span> Home</a></li>
<li><a href="/user/list"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> User</a></li>
<li><a href="/ai/upload"><span class="glyphicon glyphicon-upload" aria-hidden="true"></span> Upload</a></li>
</ul>
<div class="nav navbar-nav navbar-right">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Hi, <strong>123</strong> <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/user/logout">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container-fluid">
<h1>Simulation Status <small>TuringMachine of 123 (32)</small></h1>
<dl class="dl-horizontal">
<dt>Code Name</dt><dd>TuringMachine</dd>
<dt>User (Times of Submit)</dt><dd>123 (32)</dd>
<dt>Submit Date</dt><dd>2019-10-08 23:41:51</dd>
<dt>Status</dt><dd><span class="label label-success">Available</span></dd>
</dl>
<table width="auto" border="0" style="margin: auto">
<thead>
<tr>
<th id = "State" width="50%" style="text-align: center; font-size: 40px">
State:
</th>
<th id = "Step" width="50%" style="text-align: center; font-size: 40px">
Step:
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">
<canvas id="canvas" width=1000 height=350>
你的浏览器居然不支持Canvas?!赶快换一个吧!!
</canvas>
</td>
</tr>
</tbody>
</table>
<table width="auto" style="margin: auto">
<tbody>
<td style="width: 30%">
<div class="btn-group">
<button type="button" class="btn btn-secondary" onclick="settostep(0);"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span></button>
<button type="button" id='play' class="btn btn-secondary" onclick="autoplay();"><span id='icon' class="glyphicon glyphicon-play" aria-hidden="true"></span></button>
<button type="button" class="btn btn-secondary" onclick="pauseit(); nextstepAnimation();"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></button>
</div>
</td>
<td>
<div id="slider" class="progress" style="position: relative; width:600px; height:10px; margin: auto;" onclick="clickslider();">
<div class="progress-bar" role="progressbar" aria-valuenow="60"
aria-valuemin="0" aria-valuemax="100" style="width: 0%; transition: width 0s ease-in-out">
<span class="sr-only">40% 完成</span>
</div>
</div>
<canvas id="canvas3" width=600px height=6>
你的浏览器居然不支持Canvas?!赶快换一个吧!!
</canvas>
</td>
</tbody>
</table>
<h2>Build Infomation</h2>
<pre>1
{'q0', 'q1'}
q0
q1
6 q0
7 ['0', '0'] ['0'] ['>', '>'] q0
8 ['0', '1'] ['0'] ['>', '>'] q0
9 ['0', '*'] ['0'] ['>', '>'] q0
10 ['1', '0'] ['1'] ['>', '>'] q0
11 ['1', '1'] ['1'] ['>', '>'] q0
12 ['1', '*'] ['1'] ['>', '>'] q0
13 ['*', '0'] ['*'] ['-', '-'] q1
14 ['*', '1'] ['*'] ['-', '-'] q1
15 ['*', '*'] ['*'] ['-', '-'] q1
17 q1
{('q0', '0 *'): ('q0', ['0'], ['>', '>']), ('q0', '1 1'): ('q0', ['1'], ['>', '>']), ('q0', '1 *'): ('q0', ['1'], ['>', '>']), ('q0', '* 0'): ('q1', ['*'], ['-', '-']), ('q0', '* 1'): ('q1', ['*'], ['-', '-']), ('q0', '0 1'): ('q0', ['0'], ['>', '>']), ('q0', '1 0'): ('q0', ['1'], ['>', '>']), ('q0', '* *'): ('q1', ['*'], ['-', '-']), ('q0', '0 0'): ('q0', ['0'], ['>', '>'])}
---SimulationProcess---
100111
qRight [0]
10011
qRight [1]
10011
qRight [2]
10011
qRight [3]
10011
qRight [4]
10011
qRight [5]
10011
qAdd [4]
10010
qAdd [3]
10000
qAdd [2]
10100
qAccept [2]
</pre>
<h2>Source Code</h2>
<pre class="source-code prettyprint lang-cpp">2
q0 q1
q0
q1
1 1 1 0 0 1 1 1 0 0
q0
0 0 ; 0 ; > > ; q0
0 1 ; 0 ; > > ; q0
0 * ; 0 ; > > ; q0
1 0 ; 1 ; > > ; q0
1 1 ; 1 ; > > ; q0
1 * ; 1 ; > > ; q0
* 0 ; * ; - - ; q1
* 1 ; * ; - - ; q1
* * ; * ; - - ; q1
q1</pre>
</div>
<div class="footer" role="footer">
<p><small>Powered by <em><a href="https://github.com/abcdabcd987/p2dv.in">p2dv.in</a></em> © Lequn Chen</small></p>
</div>
<script src="/bootstrap/js/bootstrap.min.js"></script>
<script src="/js/d3.min.js"></script>
<script src="/js/c3.min.js"></script>
<script src="/js/rating.js?20141217"></script>
<script src="/google-code-prettify/prettify.js"></script>
<script>
ratingChart.setup("5d9cae3f1cd5735f57374bdd/rating.json");
prettyPrint();
</script>
<script src = "TuringMachineAnime.js"></script>
</body>
</html>