-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (31 loc) · 1.06 KB
/
index.html
File metadata and controls
41 lines (31 loc) · 1.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>CVRP - Capacitated Vehicle Routing Visualization</title>
<link rel="stylesheet" type="text/css" href="../viz.css" media="screen" />
<link href="vrp.css" rel="stylesheet" />
<script type="text/javascript" src="http://d3js.org/d3.v2.js"></script>
<script type="text/javascript" src="../constants.js"></script>
<script type="text/javascript" src="../common.js"></script>
<script type="text/javascript" src="vrp.js"></script>
</head>
<body>
<div id="controls">
<div id="drop_zone" class="drop_zone">Drop benchmark and solution files here</div>
<div><p id="feedback"></p></div>
</div>
<div id="data">
<table id="problemTable" class="metadataTable">
<tbody>
</tbody>
</table>
<table id="solutionTable" class="metadataTable">
<tbody>
</tbody>
</table>
</div>
<div id="viz"></div>
<pre id="debug"></pre>
<script type="text/javascript" src="../viz.js"></script>
</body>
</html>