-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.54 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
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<style> body {padding: 0; margin: 0;} </style>
<!-- P5.js -->
<script src="libs/p5/js/p5.min.js"></script>
<script src="libs/p5/js/addons/p5.dom.min.js"></script>
<script src="libs/p5/js/addons/p5.sound.min.js"></script>
<!-- Bootstrap and jquery -->
<link rel="stylesheet" href="libs/bootstrap-3.3.7/css/bootstrap.min.css">
<script src="libs/jquery/js/jquery-3.3.1.min.js"></script>
<script src="libs/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<!-- SweetAlerd.js -->
<script src="libs/sweetalert/sweetalert.js"></script>
<!-- Projects files -->
<script src="src/view/chessboard.js"></script>
<link rel="stylesheet" href="style/population_list.css">
<script src="src/view/population_list.js"></script>
<link rel="stylesheet" href="style/ga_settings.css">
<script src="src/view/ga_settings.js"></script>
<script src="src/sketch.js"></script>
<script src="src/config.js"></script>
<!-- Genetic Algorithm Methods -->
<script src="src/ga_methods/ga.js"></script>
<script src="src/ga_methods/crossover.js"></script>
<script src="src/ga_methods/fitness.js"></script>
<script src="src/ga_methods/mutation.js"></script>
<script src="src/ga_methods/selection.js"></script>
<script src="src/ga_methods/parent_selection.js"></script>
<script src="src/ga_methods/termination.js"></script>
</head>
<body>
</body>
</html>