-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1.04 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
<meta charset="utf-8">
<head>
<script src="./libs/d3.v5.min.js"></script>
<script src="./libs/widget.v3.4.js"></script>
<link rel="stylesheet" type="text/css" href="./css/widgets_white_bg.css">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="./css/tree.css">
</head>
<body>
<div style="max-width: 600px;">
<div id="explorable_container" style="float:left; margin-bottom: 10px;"></div>
<br>
<div>
<i>Developed for
<a href="https://complexityexplorer.org">
SFI's Complexity Explorer</a>
by
<a href="http://benmaier.org">Ben F. Maier</a>
in collaboration with the
<a href="http://rki.de">Robert Koch-Institute</a>.
</i>
</div>
</div>
<script>
var graph_url = './tree/tree.json';
//graph_url = './tree/random_tree.json';
</script>
<script src="./max-weight-independent-set.js"></script>
<script src="./gui/reset_button.js"></script>
</body>