-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
67 lines (59 loc) · 1.66 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Quantum Error Correction</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="genetic.js"></script>
<script src="decodoku.js"></script>
<link rel="stylesheet" type="text/css" href="decodoku.css">
</head>
<body>
<h1>Genetic Quantum Error Correction</h1>
<div>
<table id="grid">
<tbody>
</tbody>
</table>
</div>
<div id="controls">
<p>
PUZZLE:
<span id="puzzleNum"></span>
SUM%D:
<span id="totalSum"></span>
SECS:
<span id="secs">0</span>
CLUST:
<span id="clusters">0</span>
</p>
<p>
COORD:
<span id="coord"></span>
<span id="cellType"></span>
</p>
<p>
<select name="puzzles" id="puzzles">
</select>
<button id="load" type="button" name="load">Load</button>
<button id="solve" type="button" name="solve">Solve</button>
<button id="save" type="button" name="save">Save in console</button>
</p>
</div>
<div>
<table id="results">
<thead>
<tr>
<th>generation</th>
<th>fitness</th>
<th>links</th>
<th>clusters</th>
<th>blank cells</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</body>
</html>