22 lines
466 B
HTML
22 lines
466 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>
|
||
|
Genetic algorithm
|
||
|
</title>
|
||
|
|
||
|
<!-- jquery -->
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||
|
|
||
|
<script src = "synaptic.min.js"></script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<canvas id = "can" width = "1010" height = "1010" >
|
||
|
Canvas is not supported by your browser
|
||
|
</canvas>
|
||
|
|
||
|
<script src = "population.js"></script>
|
||
|
<script src = "game.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|