-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (55 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
88 lines (55 loc) · 1.1 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html>
<head>
<title>ANN</title>
<script src="neural.js"></script>
<script src="bacterial.js"></script>
<script src="utils.js"></script>
<script src="gridtools.js"></script>
<script src="indexRuntime.js"></script>
<script src="analytics.js"></script>
<style>
<!--
#display {
width:100%;
height:100%
}
#controlPanel {
position: absolute;
top: 10px;
right: 10px;
}
#inspector {
position: absolute;
top: 10px;
right: 50px;
}
#inspector2 {
position: absolute;
bottom: 100px;
right: 50px;
height: 100px;
}
-->
</style>
</head>
<body>
<div id="display">
</div>
<div id="controlPanel">
<a href="#" onClick="main.analytics();">dump</a><br>
</div>
<div id="inspector">
</div>
<div id="inspector2">
</div>
<script>
/*
testNetArray = new Array(3, 4, 5, 6, 7, 8);
testNetObj = new neuralNetwork(null, buildNeuralPattern(testNetArray, 6));
document.getElementById('inspector').innerHTML = viewNetwork(testNetObj);
*/
var main = new cycleTime();
window.setInterval('main.cycle();', 0);
</script>
</body>
</html>