-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
executable file
·104 lines (91 loc) · 3.02 KB
/
examples.html
File metadata and controls
executable file
·104 lines (91 loc) · 3.02 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JGW6MNEWGH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JGW6MNEWGH');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>AbEC | Examples</title>
<script src="scramble.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
MathJax = {
tex: {
tags: 'ams' // should be 'ams', 'none', or 'all'
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
<link rel="icon" href="images/abec-logo-bg.png" />
<link rel="shortcut icon" href="images/abec-logo-bg.png" />
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css"
integrity="sha512-XgCw4Srl8lC1ECwcaHwAU0WnxQwHkqmInzg9wJLtGB7DRuMaXPuK2k9WJ2AwRDGdrgK9eJpZl2hUlLi2WQssmw=="
crossorigin="anonymous"
/>
<style>
h1 {
text-align: center;
background: #EEEEEE;
padding: .2em 1em;
border-top: 3px solid #666666;
border-bottom: 3px solid #999999;
}
</style>
</head>
<body>
<section>
<pre>
<div style="float: left">EXAMPLES(1)</div><div style="float: right">EXAMPLES(1)</div><div style="margin: 0 auto; width: 100%; text-align: center"><span id="top">AbEC - Examples</span></div>
<div id="google_translate_element"></div>
<span style="color: green"><</span> <a href="index.html">[ Home ]</a>
<script type="text/javascript">
function setCookie(key, value, expiry) {
var expires = new Date();
expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
}
</script>
<div class="myHead">
<span id="myName" >[<span id="dollar">~</span>]</span>$<span id="top"> Classical algorithms</span>
</div>
<div id="divName">
<p> Here are some examples configuring some classical Evolutionary Algorithms using the framework.
<br>
<br>
<ul>
<li><b><a href="examples/ga/ga.html">[ GA ]</a></b></li><br>
<li><b><a href="examples/pso/pso.html">[ PSO ]</a></b></li><br>
<li><b><a href="examples/de/de.html">[ DE ]</a></b></li><br>
<li><b><a href="examples/es/es.html">[ ES ]</a></b></li><br>
</ul>
</div>
</p>
</div>
<div class="myHead">
<span id="myName" >[<span id="dollar">~</span>]</span>$<span id="top"> Other examples</span>
</div>
<div id="divSynopsis">
Here are some other examples of using the framework.
<br>
<br>
<ul>
<li><b><a href="examples/mqso/mqso.html">[ mQSO ]</a></b></li><br>
</ul>
</div>
<span style="color: white">Be free to use this framework.</span><br>
<span style="color: green">AbEC © 2023.</span>
<div class="myHead"><blink></blink></div>
</div>
</pre>
</section>
</body>
</html>