-
Notifications
You must be signed in to change notification settings - Fork 90
/
index.html
38 lines (37 loc) · 1.29 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
<html>
<head>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<script type="text/javascript" src="./lib/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="./src/main.js"></script>
<script type="text/javascript" src="./src/algorithm.js"></script>
<script type="text/javascript" src="./src/utils.js"></script>
<script type="text/javascript" src="./src/data.js"></script>
</head>
<body>
<div class="container">
<header>
<h1 id="title">Traveling Salesman Problem Using Genetic Algorithms</h1>
</header>
<div class="row-fluid">
<div id="control_bottons" class="btn-group row">
<button id="addRandom_btn" class="btn">Add 50 Random Points</button>
<button id="start_btn" class="btn">Start/Restart</button>
<button id="stop_btn" class="btn">Stop/Continue</button>
<button id="clear_btn" class="btn">Clear All</button>
</div>
<div class="row">
<span id="status" class="show-grid"></span>
</div>
<canvas id="canvas"
width="880" height="660"
style="border:1px solid;">
your browser sucks
</canvas>
</div>
</div>
<footer>
Source code available <a href="http://github.com/parano/GeneticAlgorithm-Solving-TSP">here</a>
</footer>
</body>
</html>