-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshrdlite.html
63 lines (62 loc) · 2.18 KB
/
shrdlite.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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Shrdlite</title>
<link rel="stylesheet" href="shrdlite.css" type="text/css" />
<script type="text/javascript" src="jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="shrdlite.js"></script>
</head>
<body>
<table id="maincontent">
<tr>
<th><h1>Shrdlite</h1>
<th>Examples<br><span id="exampleworlds"></span>
</tr><tr>
<td id="svgdiv"></td>
<td>
<div id="dialogue">
<form id="inputform">
<p id="suggestions" style="display:none">System suggestions:
<select id="suggestions_spinner"><option value=""></option></select>
</p>
<p><select id="inputexamples"><option value=""></option></select>
<br><input type="text" id="userinput">
</p>
</form>
</div>
</td>
</tr>
</table>
<p>Search strategy:
<select id="algorithm">
<option value="0">A*</option>
<option value="1">BFS</option>
</select>
</p>
<p id="states_p" style="display:none">States travelled: <span id="n_states"><span></p>
<div id="footer">
<hr>
<div id="license">
<strong>shrdlite.html</strong> <br>
Copyright © 2013-14, Peter Ljunglöf. <br>
This program comes with <em>absolutely no warranty</em>. <br>
This is free software, and you are welcome to redistribute it under certain conditions;
read <a href="http://www.gnu.org/licenses/gpl.html" target="__blank"><em>the license</em></a> for details.
</div>
<div id="debugdiv">
<strong>debug</strong> <input type="checkbox" id="showdebug">
<table id="debug">
<tr><td><b>World</b></td><td id="debugworld"></td></tr>
<tr><td><b>Holding</b></td><td id="debugholding"></td></tr>
<tr><td><b>Output</b></td><td id="debugoutput"></td></tr>
<tr><td><b>Trees</b></td><td id="debugtrees"></td></tr>
<tr><td><b>Goals</b></td><td id="debuggoals"></td></tr>
<tr><td><b>Plan</b></td><td id="debugplan"></td></tr>
<tr><td><b>State</b></td><td id="debugstate"></td></tr>
<tr><td><b>JSON</b></td><td id="debugjson"></td></tr>
</table>
</div>
</div>
</body>
</html>