-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (32 loc) · 1.14 KB
/
index.html
File metadata and controls
41 lines (32 loc) · 1.14 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>FLP - Facility Location Problem</title>
<link rel="stylesheet" type="text/css" href="../viz.css" media="screen" />
<link href="facility.css" rel="stylesheet" />
<script type="text/javascript" src="https://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="facility.js"></script>
</head>
<body>
<div id="controls">
<div id="benchmark_zone" class="drop_zone">Step 1 - Drop benchmark file here</div>
<div id="solution_zone" class="drop_zone">Step 2 - Drop solution file here</div>
<div style="clear:both;"><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>