-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathabyss.html
133 lines (109 loc) · 4.47 KB
/
abyss.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jMetal Web site</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header id="header">
<h1 id="logo">
<a href="index.html" title="index"><img src="images/jMetalLogo.png" alt="jMetal Logo" /></a>
</h1>
<p>A Framework for Multi-Objective Optimization</p>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="algorithms.html">Algorithms</a>
</li>
<li><a href="problems.html">Problems</a>
<li><a href="resources.html">Resources</a></li>
<li><a href="smpso.html" id="active">Our Techniques <span>▼</span></a>
<ul>
<li><a href="smpso.html">SMPSO</a></li>
<li><a href="abyss.html">AbYSS</a></li>
<li><a href="mocell.html">MOCell</a></li>
<li><a href="mochc.html">MOCHC</a></li>
<li><a href="nsgaII.html">NSGA-II variants</a></li>
</ul>
</li>
</ul>
</nav>
<article class="columms_container">
<header id="articleHeader">
<h1><strong>AbYSS</strong> Archive based hYbrid Scatter Search</h1>
</header>
<!--<hr>-->
<aside>
<header>
</header>
<section>
<h2 class=invert>Pseudo-code</h2>
<br />
<img src="resources/abyss_code.png" alt="abyss pseudocode" class="asideImage expand">
</section>
</aside>
<section class="col2_3">
<header><h1>Description</h1></header>
<p>
<strong>AbYSS</strong> (Archive-based hYbrid Scatter Search) is an adaptation of the Scatter Search template to a multi-objective
algorithm. We refer it as an hybrid algorithm because it applies crossover and mutation operators, which are typical of genetic algorithms.
</p>
<header><h1>Main features</h1></header>
<ul>
<li>
An extern archive is used to store the non-dominated solutions found during the search process.
</li>
<li>
Archive density estimator: crowding distance
</li>
<li>
Solution combination method: Simulated Binary (SBX) crossover
</li>
<li>
Improvement method: Polynomial mutation
</li>
</ul>
<header><h1>Scatter Search template</h1></header>
<img src="resources/scatterSearchTemplate.png" alt="SS template" class="col23">
</section>
<section class="col1">
<header>
<h1>References</h1>
</header>
<ul>
<li>
A.J. Nebro, F. Luna, E. Alba, B. Dorronsoro, J.J. Durillo, A. Beham AbYSS: Adapting Scatter Search to Multiobjective Optimization.
IEEE Transactions on Evolutionary Computation. Vol. 12, No. 4 (August 2008), pp. 439-457. <a href="http://dx.doi.org/10.1109/TEVC.2007.913109">DOI</a>
<a href="references/NLA08.bib">BIBTEX</a>
<a href="http://scholar.google.es/citations?view_op=view_citation&hl=es&user=8lF5lBcAAAAJ&citation_for_view=8lF5lBcAAAAJ:d1gkVwhDpl0C">Cites</a> (Google Scholar)
</li>
</ul>
</section>
<div class="clear"> </div>
</article>
<hr>
<footer>
<h1> </h1>
<div>
<!-- <a href="http://creativecommons.org/licenses/LGPL/2.1/"><img src="images/LPGL.png" width="100" alt="licencse" class="float-left" /></a>-->
<!-- This work is licensed under the <a href="http://creativecommons.org/licenses/LGPL/2.1/">Creative Commons GNU Lesser General Public License</a> -->
<a href="http://validator.w3.org/check?uri=referer"><img class="float_left"
src="http://www.w3.org/Icons/valid-xhtml10"
alt="Valid XHTML 1.0 Transitional" height="30" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"> <img class="float_left" src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="¡CSS Válido!" /> </a>
<!--© Copyright jMetal. All Rights Reserved-->
<a href="http://khaos.uma.es/?q=en"> <img class="float_right" src="images/khaosLogo.jpg"
alt="Khaos logo" title="Khaos Research Group"> </a>
<!--
<a href="http://validator.w3.org/check?uri=referer"><img class="float_right"
src="http://www.w3.org/Icons/valid-xhtml10"
alt="Valid XHTML 1.0 Transitional" height="30" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"> <img class="float_right" src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="¡CSS Válido!" /> </a>-->
</div>
</footer>
</body>
</html>