-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (24 loc) · 1.42 KB
/
index.html
File metadata and controls
31 lines (24 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Genetic Algorithm</title>
<script src="https://wagenaartje.github.io/neataptic/cdn/1.4.7/neataptic.js"></script>
</head>
<body>
<canvas id="canvas" width = "1200" height="560" style="border:1px solid #000000"></canvas>
<button id="setup">Next Step</button>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/regression/2.0.1/regression.min.js" integrity="sha512-0k6FXllQktdobw8Nc8KQN2WtZrOuxpMn7jC2RKCF6LR7EdOhhrg3H5cBPxhs3CFzQVlO6ni1B9SDLUPhBs0Alg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
<!--<script language="javascript" type="text/javascript" src="./lib/NEAT_browser.js"></script>-->
<script type="text/javascript" src="noObstacleGenes/ConstantGene.js"></script>
<script type="text/javascript" src="noObstacleGenes/Generation.js"></script>
<script type="text/javascript" src="Obstacle/Obstacle.js"></script>
<script type="text/javascript" src="complexGenes/EquationGene.js"></script>
<script type="text/javascript" src="complexGenes/ComplexGeneration.js"></script>
<!--<script type="text/javascript" src="CubicGenes/CubicGene.js"></script>-->
<!--<script type="text/javascript" src="CubicGenes/CubicGeneration.js.js"></script>-->
<script type="text/javascript" src="NEATGene/runNeat.js"></script>
<script type="text/javascript" src="Visuals.js"></script>
<!--<script type="text/javascript" src="Test.js"></script>-->
</body>
</html>