-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.bib
More file actions
2023 lines (1903 loc) · 83 KB
/
example.bib
File metadata and controls
2023 lines (1903 loc) · 83 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{Reference1,
Abstract = {We have developed an enhanced Littrow configuration extended cavity diode laser (ECDL) that can be tuned without changing the direction of the output beam. The output of a conventional Littrow ECDL is reflected from a plane mirror fixed parallel to the tuning diffraction grating. Using a free-space Michelson wavemeter to measure the laser wavelength, we can tune the laser over a range greater than 10 nm without any alteration of alignment.},
Author = {C. J. Hawthorn and K. P. Weber and R. E. Scholten},
Journal = {Review of Scientific Instruments},
Month = {12},
Number = {12},
Numpages = {3},
Pages = {4477--4479},
Title = {Littrow Configuration Tunable External Cavity Diode Laser with Fixed Direction Output Beam},
Volume = {72},
Url = {http://link.aip.org/link/?RSI/72/4477/1},
Year = {2001}}
@article{Reference3,
Abstract = {Operating a laser diode in an extended cavity which provides frequency-selective feedback is a very effective method of reducing the laser's linewidth and improving its tunability. We have developed an extremely simple laser of this type, built from inexpensive commercial components with only a few minor modifications. A 780~nm laser built to this design has an output power of 80~mW, a linewidth of 350~kHz, and it has been continuously locked to a Doppler-free rubidium transition for several days.},
Author = {A. S. Arnold and J. S. Wilson and M. G. Boshier and J. Smith},
Journal = {Review of Scientific Instruments},
Month = {3},
Number = {3},
Numpages = {4},
Pages = {1236--1239},
Title = {A Simple Extended-Cavity Diode Laser},
Volume = {69},
Url = {http://link.aip.org/link/?RSI/69/1236/1},
Year = {1998}}
@article{Reference2,
Abstract = {We present a review of the use of diode lasers in atomic physics with an extensive list of references. We discuss the relevant characteristics of diode lasers and explain how to purchase and use them. We also review the various techniques that have been used to control and narrow the spectral outputs of diode lasers. Finally we present a number of examples illustrating the use of diode lasers in atomic physics experiments. Review of Scientific Instruments is copyrighted by The American Institute of Physics.},
Author = {Carl E. Wieman and Leo Hollberg},
Journal = {Review of Scientific Instruments},
Keywords = {Diode Laser},
Month = {1},
Number = {1},
Numpages = {20},
Pages = {1--20},
Title = {Using Diode Lasers for Atomic Physics},
Volume = {62},
Url = {http://link.aip.org/link/?RSI/62/1/1},
Year = {1991}}
@book{Joel:MOEA_APPLICATIONS_BOOK_KCTAN,
author = {Tan, Kay Chen and Khor, Eik Fun and Lee, Tong Heng},
title = {Multiobjective Evolutionary Algorithms and Applications (Advanced Information and Knowledge Processing)},
year = {2005},
isbn = {1852338369},
publisher = {Springer-Verlag New York, Inc.},
address = {Secaucus, NJ, USA},
}
@book{Joel:Kalyanmoy,
author = {Deb, Kalyanmoy and Kalyanmoy, Deb},
title = {{Multi-Objective Optimization Using Evolutionary Algorithms}},
year = {2001},
isbn = {047187339X},
publisher = {John Wiley \& Sons, Inc.},
address = {New York, NY, USA},
}
@book{Joel:Coello,
author = {Coello, Carlos A. Coello and Lamont, Gary B. and Veldhuizen, David A. Van},
title = {{Evolutionary Algorithms for Solving Multi-Objective Problems (Genetic and Evolutionary Computation)}},
year = {2006},
isbn = {0387332545},
publisher = {Springer-Verlag New York, Inc.},
address = {Secaucus, NJ, USA},
}
@book{ Joel:BOOK_MOEAs,
author = {Slim Bechikh, Rituparna Datta, Abhishek Gupta},
booktitle = {Recent Advances in Evolutionary Multi-objective Optimization},
publisher = {springer},
title = {{Recent Advances in Evolutionary Multi-objective Optimization}},
}
@ARTICLE{Joel:NSGAII,
author={K. Deb and A. Pratap and S. Agarwal and T. Meyarivan},
journal={IEEE Transactions on Evolutionary Computation},
title={{A fast and elitist multiobjective genetic algorithm: NSGA-II}},
year={2002},
volume={6},
number={2},
pages={182-197},
keywords={Pareto distribution;computational complexity;constraint theory;convergence;genetic algorithms;operations research;simulation;sorting;NSGA-II;Nondominated Sorting Genetic Algorithm II;Pareto-archived evolution strategy;Pareto-optimal front;algorithm performance;computational complexity;constrained multi-objective problems;constraint handling;convergence;dominance definition;fast elitist multi-objective genetic algorithm;mating pool;multi-criterion decision making;multi-objective evolutionary algorithm;multi-objective optimization;nondominated sharing;nonlinear problem;objectives;parent/offspring population combination;population size;selection operator;simulation;solution fitness;solution spread;strength-Pareto evolutionary algorithm;Associate members;Computational complexity;Computational modeling;Constraint optimization;Decision making;Diversity reception;Evolutionary computation;Genetic algorithms;Sorting;Testing},
ISSN={1089-778X},
month={Apr}}
@INPROCEEDINGS{Joel:Improvement_NSGAII,
author={S. Kukkonen and K. Deb},
booktitle={2006 IEEE International Conference on Evolutionary Computation},
title={{Improved Pruning of Non-Dominated Solutions Based on Crowding Distance for Bi-Objective Optimization Problems}},
year={2006},
pages={1179-1186},
keywords={genetic algorithms;biobjective optimization problems;crowding distance;elitist non-dominated sorting genetic algorithm;nondominated solutions;pruning;Algorithm design and analysis;Clustering algorithms;Coordinate measuring machines;Evolutionary computation;Genetic algorithms;Information technology;Laboratories;Nearest neighbor searches;Sorting;Testing},
ISSN={1089-778X},
month={}}
@ARTICLE{Joel:MOEAD,
author={Q. Zhang and H. Li},
journal={IEEE Transactions on Evolutionary Computation},
title={{MOEA/D: A Multiobjective Evolutionary Algorithm Based on Decomposition}},
year={2007},
volume={11},
number={6},
pages={712-731},
keywords={computational complexity;genetic algorithms;computational complexity;decomposition;genetic algorithm;knapsack problem;multiobjective evolutionary algorithm;scalar optimization subproblem;Computational complexity;Pareto optimality;decomposition;evolutionary algorithm;multiobjective optimization},
ISSN={1089-778X},
month={Dec}}
@article{Joel:SMSEMOA,
title = {{SMS-EMOA: Multiobjective selection based on dominated hypervolume }},
journal = "European Journal of Operational Research ",
volume = "181",
number = "3",
pages = "1653 - 1669",
year = "2007",
note = "",
issn = "0377-2217",
author = "Nicola Beume and Boris Naujoks and Michael Emmerich",
keywords = "Evolutionary computations",
keywords = "Evolutionary multiple objective optimisation",
keywords = "Performance assessment",
keywords = "Hypervolume measure",
keywords = "OR in aerodynamic industries "
}
@INPROCEEDINGS{Joel:GDE3,
author={S. Kukkonen and J. Lampinen},
booktitle={2005 IEEE Congress on Evolutionary Computation},
title={{GDE3: the third evolution step of generalized differential evolution}},
year={2005},
volume={1},
pages={443-450 Vol.1},
keywords={constraint theory;evolutionary computation;optimisation;GDE3;generalized differential evolution;global optimization;multiobjective problems;Constraint optimization;Evolutionary computation;Genetic algorithms;Information technology;Manufacturing;Optimization methods;Pareto optimization;Proposals;Sorting;Testing},
ISSN={1089-778X},
month={Sept}}
@ARTICLE{Joel:StateArt,
author={S. Das and P. N. Suganthan},
journal={IEEE Transactions on Evolutionary Computation},
title={{Differential Evolution: A Survey of the State-of-the-Art}},
year={2011},
volume={15},
number={1},
pages={4-31},
keywords={evolutionary computation;optimisation;random processes;stochastic processes;constrained optimization;differential evolution;evolutionary algorithm;large scale uncertain optimization;multiobjective optimization;random selection;stochastic real-parameter optimization algorithm;Derivative-free optimization;differential evolution (DE);direct search;evolutionary algorithms (EAs);genetic algorithms (GAs);metaheuristics;particle swarm optimization (PSO)},
ISSN={1089-778X},
month={Feb}}
@INPROCEEDINGS{Joel:MOEAD_AMS,
author={T. C. Chiang and Y. P. Lai},
booktitle={2011 IEEE Congress of Evolutionary Computation (CEC)},
title={{MOEA/D-AMS: Improving MOEA/D by an adaptive mating selection mechanism}},
year={2011},
pages={1473-1480},
keywords={Pareto optimisation;evolutionary computation;MOEA-D-AMS;Pareto optimal solutions;adaptive mating selection mechanism;distributed weight vectors;multiobjective evolutionary algorithm;Approximation algorithms;Benchmark testing;Cascading style sheets;Evolutionary computation;Measurement;Optimization;Vectors;evolutionary algorithm;mating pool;mating selection;multiobjective optimization;scalarization;subproblem},
ISSN={1089-778X},
month={June}}
@article{Joel:MOEAD_AWA,
author = {Qi, Yutao and Ma, Xiaoliang and Liu, Fang and Jiao, Licheng and Sun, Jianyong and Wu, Jianshe},
title = {{MOEA/D with Adaptive Weight Adjustment}},
journal = {Evol. Comput.},
issue_date = {Summer 2014},
volume = {22},
number = {2},
month = jun,
year = {2014},
issn = {1063-6560},
pages = {231--264},
numpages = {34},
acmid = {2645288},
publisher = {MIT Press},
address = {Cambridge, MA, USA},
keywords = {Multi-objective optimization, adaptive weight vector adjustment, decomposition, evolutionary algorithm, initial weight vector construction},
}
@ARTICLE{Joel:MOEAD_Adaptative,
author={Z. Wang and Q. Zhang and A. Zhou and M. Gong and L. Jiao},
journal={IEEE Transactions on Cybernetics},
title={{Adaptive Replacement Strategies for MOEA/D}},
year={2016},
volume={46},
number={2},
pages={474-486},
keywords={convergence;evolutionary computation;optimisation;MOEA/D;adaptive replacement strategies;convergence;multiobjective evolutionary algorithms based on decomposition;optimization subproblems;population diversity;replacement global replacement scheme;steady-state algorithm;Convergence;Pareto optimization;Sociology;Steady-state;Vectors;Adaptive scheme;decomposition;multiobjective optimization;replacement},
ISSN={2168-2267},
month={Feb}}
@Inbook{Joel:WFG,
author="Huband, Simon
and Barone, Luigi
and While, Lyndon
and Hingston, Phil",
editor="Coello Coello, Carlos A.
and Hern{\'a}ndez Aguirre, Arturo
and Zitzler, Eckart",
title={{A Scalable Multi-objective Test Problem Toolkit}},
bookTitle="Evolutionary Multi-Criterion Optimization: Third International Conference, EMO 2005, Guanajuato, Mexico, March 9-11, 2005. Proceedings",
year="2005",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="280--295",
isbn="978-3-540-31880-4"
}
@article{Joel:OperatorAHX,
title = {{A novel adaptive hybrid crossover operator for multiobjective evolutionary algorithm }},
journal = "Information Sciences ",
volume = "345",
number = "",
pages = "177 - 198",
year = "2016",
note = "",
issn = "0020-0255",
author = "Qingling Zhu and Qiuzhen Lin and Zhihua Du and Zhengping Liang and Wenjun Wang and Zexuan Zhu and Jianyong Chen and Peizhi Huang and Zhong Ming",
keywords = "Evolutionary algorithm",
keywords = "Multiobjective optimization",
keywords = "Simulated binary crossover",
keywords = "Differential evolution "
}
@ARTICLE{Joel:StatisticalTest,
author={J. J. Durillo and A. J. Nebro and C. A. C. Coello and J. Garcia-Nieto and F. Luna and E. Alba},
journal={IEEE Transactions on Evolutionary Computation},
title={{A Study of Multiobjective Metaheuristics When Solving Parameter Scalable Problems}},
year={2010},
volume={14},
number={4},
pages={618-635},
keywords={Pareto optimisation;particle swarm optimisation;Pareto front;Zitzler-Deb-Thiele test suite;differential evolution;hypervolume indicator;multiobjective metaheuristics;parameter scalable problems;parameter-wise scalable problems;particle swarm optimization;quality indicators;search capability;Comparative study;efficiency;metaheuristics;multi-objective optimization;scalability},
ISSN={1089-778X},
month={Aug},}
@article{Joel:Crepinsek,
author = {\v{C}repin\v{s}ek, Matej and Liu, Shih-Hsi and Mernik, Marjan},
title = {{Exploration and Exploitation in Evolutionary Algorithms: A Survey}},
journal = {ACM Computing Surveys},
volume = {45},
number = {3},
month = jul,
year = {2013},
pages = {35:1--35:33},
publisher = {ACM},
address = {New York, NY, USA},
}
@ARTICLE{Joel:MULTI_DYNAMIC,
author={C. Segura and C. A. Coello Coello and E. Segredo and A. H. Aguirre},
journal={IEEE Transactions on Cybernetics},
title={{A Novel Diversity-Based Replacement Strategy for Evolutionary Algorithms}},
year={2016},
volume={46},
number={12},
pages={3233-3246},
keywords={convergence;evolutionary computation;diversity-based replacement strategy;evolutionary algorithms;multimodal function;packing problem;premature convergence;single-objective problem;Convergence;Cybernetics;Evolutionary computation;Memetics;Optimization;Sociology;Statistics;Diversity preservation;exploitation;exploration;replacement strategy;survivor selection},
ISSN={2168-2267},
month={Dec},}
@Inbook{Joel:STUDY_MATTING_RESTRICTION,
author="Ishibuchi, Hisao
and Shibata, Youhei",
editor="Fonseca, Carlos M.
and Fleming, Peter J.
and Zitzler, Eckart
and Thiele, Lothar
and Deb, Kalyanmoy",
title={{An Empirical Study on the Effect of Mating Restriction on the Search Ability of EMO Algorithms}},
bookTitle="Evolutionary Multi-Criterion Optimization: Second International Conference, EMO 2003, Faro, Portugal, April 8--11, 2003. Proceedings",
year="2003",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="433--447",
isbn="978-3-540-36970-7"
}
@article{Joel:SAWTOOTH,
author={Koumousis, V.K. and Katsaras, C.P.},
journal=IEEE_J_EVC,
title={{A saw-tooth genetic algorithm combining the effects of variable population size and reinitialization to enhance performance}},
year={2006},
month={Feb},
volume={10},
number={1},
pages={19-28}
}
@Inbook{Joel:PARALLEL_SMSEMOA,
author="Hern{\'a}ndez G{\'o}mez, Raquel
and Coello Coello, Carlos A.
and Alba, Enrique",
editor="Handl, Julia
and Hart, Emma
and Lewis, Peter R.
and L{\'o}pez-Ib{\'a}{\~{n}}ez, Manuel
and Ochoa, Gabriela
and Paechter, Ben",
title={{A Parallel Version of SMS-EMOA for Many-Objective Optimization Problems}},
bookTitle="Parallel Problem Solving from Nature -- PPSN XIV: 14th International Conference, Edinburgh, UK, September 17-21, 2016, Proceedings",
year="2016",
publisher="Springer International Publishing",
address="Cham",
pages="568--577",
isbn="978-3-319-45823-6"
}
@inproceedings{Joel:IMPROVED_METAHEURISTIC_R2,
author = {Hern\'{a}ndez G\'{o}mez, Raquel and Coello Coello, Carlos A.},
title = {{Improved Metaheuristic Based on the R2 Indicator for Many-Objective Optimization}},
booktitle = {Proceedings of the 2015 Annual Conference on Genetic and Evolutionary Computation},
series = {GECCO '15},
year = {2015},
isbn = {978-1-4503-3472-3},
location = {Madrid, Spain},
pages = {679--686},
numpages = {8},
acmid = {2754776},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {genetic algorithms, multi-objective optimization, performance measures},
}
@Inbook{Joel:TUTORIAL_EMOA,
author="Zitzler, Eckart
and Laumanns, Marco
and Bleuler, Stefan",
editor="Gandibleux, Xavier
and Sevaux, Marc
and S{\"o}rensen, Kenneth
and T'kindt, Vincent",
title={{A Tutorial on Evolutionary Multiobjective Optimization}},
bookTitle="Metaheuristics for Multiobjective Optimisation",
year="2004",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="3--37",
isbn="978-3-642-17144-4"
}
@article{Joel:LOCALSEARCH,
author = { Yan-Yan Tan and Yong-Chang Jiao and Hong Li and Xin-Kuan Wang },
title = {{MOEA/D-SQA: a multi-objective memetic algorithm based on decomposition}},
journal = {Engineering Optimization},
volume = {44},
number = {9},
pages = {1095-1115},
year = {2012}
}
@inproceedings{Joel:CHC,
title = {{The CHC Adaptive Search Algorithm: How to Have Safe Search When Engaging in Nontraditional Genetic Recombination}},
editor = "Gregory J.E. Rawlins",
booktitle = {{Foundations of Genetic Algorithms}},
publisher = "Morgan Kaufmann Publishers",
year = "1991",
volume = "1",
pages = "265 - 283",
author = "Larry J. Eshelman",
}
@INPROCEEDINGS{Joel:DCN,
author={L. T. Bui and H. A. Abbass and J. Branke},
booktitle={2005 IEEE Congress on Evolutionary Computation},
title={{Multiobjective optimization for dynamic environments}},
year={2005},
volume={3},
pages={2349-2356 Vol. 3},
keywords={distributed processing;genetic algorithms;NSGA2;artificial objective function;dynamic environments;evolutionary multi-objective optimization;nondominated sorting genetic algorithm version 2;single-objective optimization problems;Australia;Benchmark testing;Biological cells;Evolutionary computation;Genetic algorithms;Optimization methods;Portfolios;Robots;Sorting;Stock markets},
ISSN={1089-778X},
month={Sept}}
@incollection{Joel:SURVEY_STATE_ART,
author = {Slim Bechikh and
Maha Elarbi and
Lamjed Ben Said},
title = {{Many-objective Optimization Using Evolutionary Algorithms: {A} Survey}},
booktitle = {Recent Advances in Evolutionary Multi-objective Optimization},
pages = {105--137},
year = {2017}
}
@article{Joel:R2_INDICATOR_BASED,
author={Brockhoff D., Wagner T. and Trautman H},
journal={Evolutionary Computation},
title={{R2 Indicator-Based Multiobjective Search}},
year={2015},
month={09},
volume={23},
number={3}
}
@ARTICLE{Joel:WFG_REVIEW,
author={S. Huband and P. Hingston and L. Barone and L. While},
journal={IEEE Transactions on Evolutionary Computation},
title={{A review of multiobjective test problems and a scalable test problem toolkit}},
year={2006},
volume={10},
number={5},
pages={477-506},
keywords={evolutionary computation;multiobjective evolutionary algorithm;multiobjective test problems;scalable test problem toolkit;test problem criteria;Algorithm design and analysis;Australia;Combustion;Design optimization;Evolutionary computation;Petroleum;Pipelines;Product design;System testing;Turbines;Evolutionary algorithms (EAs);multiobjective evolutionary algorithms;multiobjective optimization;multiobjective test problems},
ISSN={1089-778X},
month={Oct},}
@article{Joel:VECTOR_DE,
title = {{Improving the vector generation strategy of Differential Evolution for large-scale optimization }},
journal = "Information Sciences ",
volume = "323",
number = "",
pages = "106 - 129",
year = "2015",
note = "",
issn = "0020-0255",
author = "Carlos Segura and Carlos A. Coello Coello and Alfredo G. Hernández-Díaz",
keywords = "Differential evolution",
keywords = "Diversity preservation",
keywords = "Global numerical optimization",
keywords = "Large-scale optimization",
keywords = "Vector generation strategy ",
abstract = "Abstract Differential Evolution is an efficient metaheuristic for continuous optimization that suffers from the curse of dimensionality. A large amount of experimentation has allowed researchers to find several potential weaknesses in Differential Evolution. Some of these weaknesses do not significantly affect its performance when dealing with low-dimensional problems, so the research community has not paid much attention to them. The aim of this paper is to provide a better insight into the reasons of the curse of dimensionality and to propose techniques to alleviate this problem. Two different weaknesses are revisited and schemes for dealing with them are devised. The schemes increase the diversity of trial vectors and improve on the exploration capabilities of Differential Evolution. Some important mathematical properties induced by our proposals are studied and compared against those of related schemes. Experimentation with a set of problems with up to 1000 dimensions and with several variants of Differential Evolution shows that the weaknesses analyzed significantly affect the performance of Differential Evolution when used on high-dimensional optimization problems. The gains of the proposals appear when highly exploitative schemes are used. Our proposals allow for high-quality solutions with small populations, meaning that the most significant advantages emerge when dealing with large-scale optimization problems, where the benefits of using small populations have previously been shown. "
}
@article{Joel:ShortSurveyStateArt,
title={Evolutionary multiobjective optimization: a short survey of the state-of-the-art},
author={Pil{\'a}t, M},
journal={Proceedings of the Contributed Papers Part I-Mathematics and Computer Sciences, WDS, Prague, Czech},
pages={1--4},
year={2010}
}
@Article{Joel:MOEAS_CONSTRAINED,
author="Segura, Carlos
and Coello, Carlos A. Coello
and Miranda, Gara
and Le{\'o}n, Coromoto",
title={{Using multi-objective evolutionary algorithms for single-objective constrained and unconstrained optimization}},
journal="Annals of Operations Research",
year="2016",
volume="240",
number="1",
pages="217--250",
abstract="In recent decades, several multi-objective evolutionary algorithms have been successfully applied to a wide variety of multi-objective optimization problems. Along the way, several new concepts, paradigms and methods have emerged. Additionally, some authors have claimed that the application of multi-objective approaches might be useful even in single-objective optimization. Thus, several guidelines for solving single-objective optimization problems using multi-objective methods have been proposed. This paper offers an updated survey of the main methods that allow the use of multi-objective schemes for single-objective optimization. In addition, several open topics and some possible paths of future work in this area are identified.",
issn="1572-9338"
}
@InProceedings{Joel:IBEA,
author = {Eckart Zitzler and Simon K{\"u}nzli},
title = {Indicator-Based Selection in Multiobjective Search},
booktitle = {Parallel Problem Solving from Nature (PPSN VIII)},
pages = {832--842},
year = 2004,
editor = {Xin Yao and others},
address = {Berlin, Germany},
publisher = {Springer-Verlag}
}
@ARTICLE{Joel:FV-MOEA,
author={S. Jiang and J. Zhang and Y. S. Ong and A. N. Zhang and P. S. Tan},
journal={IEEE Transactions on Cybernetics},
title={A Simple and Fast Hypervolume Indicator-Based Multiobjective Evolutionary Algorithm},
year={2015},
volume={45},
number={10},
pages={2202-2213},
keywords={Pareto optimisation;evolutionary computation;FV-MOEA algorithm;MOEA/D;NSGAII;Pareto front;S-metric selection based evolutionary multiobjective optimization algorithm;SMS-EMOA;SPEA2;fast hypervolume indicator-based multiobjective evolutionary algorithm;indicator-based evolutionary algorithm;multiobjective evolutionary algorithm based on decomposition;nondominated sorting genetic algorithm II;strength Pareto evolutionary algorithm 2;Evolutionary computation;Joints;Laboratories;Sociology;Statistics;Time complexity;Vectors;Hypervolume (HV);Pareto dominance-based;indicator-based;jMetal;multiobjective evolutionary algorithms (MOEAs);scalarizing function-based},
doi={10.1109/TCYB.2014.2367526},
ISSN={2168-2267},
month={Oct},}
@article{Joel:jMetal,
title={jMetalCpp: optimizing molecular docking problems with a C++ metaheuristic framework},
author={L{\'o}pez-Camacho, Esteban and Garc{\'\i}a Godoy, Mar{\'\i}a Jes{\'u}s and Nebro, Antonio J and Aldana-Montes, Jos{\'e} F},
journal={Bioinformatics},
volume={30},
number={3},
year={2013},
publisher={Oxford University Press}
}
@article{Joel:NSGA,
author = {Srinivas, N. and Deb, Kalyanmoy},
title = {Muiltiobjective Optimization Using Nondominated Sorting in Genetic Algorithms},
journal = {Evol. Comput.},
issue_date = {Fall 1994},
volume = {2},
number = {3},
month = sep,
year = {1994},
issn = {1063-6560},
pages = {221--248},
numpages = {28},
url = {http://dx.doi.org/10.1162/evco.1994.2.3.221},
doi = {10.1162/evco.1994.2.3.221},
acmid = {1326671},
publisher = {MIT Press},
address = {Cambridge, MA, USA},
keywords = {Multiobjective optimization, nondominated sorting, phenotypic sharing, ranking selection},
}
@inproceedings{Joel:MOGA,
author = {Fonseca, Carlos M. and Fleming, Peter J.},
title = {Genetic Algorithms for Multiobjective Optimization: FormulationDiscussion and Generalization},
booktitle = {Proceedings of the 5th International Conference on Genetic Algorithms},
year = {1993},
isbn = {1-55860-299-2},
pages = {416--423},
numpages = {8},
url = {http://dl.acm.org/citation.cfm?id=645513.657757},
acmid = {657757},
publisher = {Morgan Kaufmann Publishers Inc.},
address = {San Francisco, CA, USA},
}
@INPROCEEDINGS{Joel:MANYOBJECTIVE_ISHIBUCHI,
author={Hisao Ishibuchi and Noritaka Tsukamoto and Yusuke Nojima},
booktitle={2008 IEEE Congress on Evolutionary Computation (IEEE World Congress on Computational Intelligence)},
title={Evolutionary many-objective optimization: A short review},
year={2008},
pages={2419-2426},
keywords={evolutionary computation;optimisation;EMO algorithms;evolutionary many-objective optimization;multiobjective optimization;Scalability},
doi={10.1109/CEC.2008.4631121},
ISSN={1089-778X},
month={June},}
@INPROCEEDINGS{Joel:BoundedArchivingUsingTheLebesgueMeasure,
author={J. D. Knowles and D. W. Corne and M. Fleischer},
booktitle={Evolutionary Computation, 2003. CEC '03. The 2003 Congress on},
title={Bounded archiving using the lebesgue measure},
year={2003},
volume={4},
pages={2490-2497 Vol.4},
keywords={evolutionary computation;Lebesgue measure;MOEA optimization;archive hyper-volume;bounded archiving;multiobjective evolutionary algorithm;state-of-the-art;Chemistry;Computer science;Convergence;Data structures;Educational institutions;Genetics;Modems;Physics;Systems engineering and theory;Technological innovation},
doi={10.1109/CEC.2003.1299401},
month={Dec},}
@inproceedings{Joel:AnEMOAlgorithmUsingTheHypervolumeMeasureAsSelectionCriterion,
title={An EMO algorithm using the hypervolume measure as selection criterion},
author={Emmerich, Michael and Beume, Nicola and Naujoks, Boris},
booktitle={International Conference on Evolutionary Multi-Criterion Optimization},
pages={62--76},
year={2005},
organization={Springer}
}
@article{Joel:SelectionRuleLampinen,
title={DE’s selection rule for multiobjective optimization},
author={Lampinen, Jouni and others},
journal={Lappeenranta University of Technology, Department of Information Technology, Tech. Rep},
pages={03--04},
year={2001}
}
@inproceedings{Joel:DTLZ_1,
title={Scalable multi-objective optimization test problems},
author={Deb, Kalyanmoy and Thiele, Lothar and Laumanns, Marco and Zitzler, Eckart},
booktitle={Evolutionary Computation, 2002. CEC'02. Proceedings of the 2002 Congress on},
volume={1},
pages={825--830},
year={2002},
organization={IEEE}
}
@book{Joel:DTLZ_2,
title={Scalable test problems for evolutionary multiobjective optimization},
author={Deb, Kalyanmoy and Thiele, Lothar and Laumanns, Marco and Zitzler, Eckart},
year={2005},
publisher={Springer}
}
@article{Joel:ZDT,
author = {Zitzler, Eckart and Deb, Kalyanmoy and Thiele, Lothar},
title = {Comparison of Multiobjective Evolutionary Algorithms: Empirical Results},
journal = {Evol. Comput.},
issue_date = {June 2000},
volume = {8},
number = {2},
month = jun,
year = {2000},
issn = {1063-6560},
pages = {173--195},
numpages = {23},
url = {http://dx.doi.org/10.1162/106365600568202},
doi = {10.1162/106365600568202},
acmid = {1108876},
publisher = {MIT Press},
address = {Cambridge, MA, USA},
}
@Inbook{Joel:WFG_Main,
author="Huband, Simon
and Barone, Luigi
and While, Lyndon
and Hingston, Phil",
editor="Coello Coello, Carlos A.
and Hern{\'a}ndez Aguirre, Arturo
and Zitzler, Eckart",
title="A Scalable Multi-objective Test Problem Toolkit",
bookTitle="Evolutionary Multi-Criterion Optimization: Third International Conference, EMO 2005, Guanajuato, Mexico, March 9-11, 2005. Proceedings",
year="2005",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="280--295",
isbn="978-3-540-31880-4",
doi="10.1007/978-3-540-31880-4_20",
url="http://dx.doi.org/10.1007/978-3-540-31880-4_20"
}
@inproceedings{Joel:MOMBI-II,
author = {Hern\'{a}ndez G\'{o}mez, Raquel and Coello Coello, Carlos A.},
title = {Improved Metaheuristic Based on the R2 Indicator for Many-Objective Optimization},
booktitle = {Proceedings of the 2015 Annual Conference on Genetic and Evolutionary Computation},
series = {GECCO '15},
year = {2015},
isbn = {978-1-4503-3472-3},
location = {Madrid, Spain},
pages = {679--686},
numpages = {8},
url = {http://doi.acm.org/10.1145/2739480.2754776},
doi = {10.1145/2739480.2754776},
acmid = {2754776},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {genetic algorithms, multi-objective optimization, performance measures},
}
@INPROCEEDINGS{Joel:GD,
author = {David A. Van Veldhuizen and Gary B. Lamont},
title = {Evolutionary Computation and Convergence to a Pareto Front},
booktitle = {Stanford University, California},
year = {1998},
pages = {221--228},
publisher = {Morgan Kaufmann}
}
@ARTICLE{Joel:MultiDynamic,
author={C. Segura and C. A. Coello Coello and E. Segredo and A. H. Aguirre},
journal={IEEE Transactions on Cybernetics},
title={A Novel Diversity-Based Replacement Strategy for Evolutionary Algorithms},
year={2016},
volume={46},
number={12},
pages={3233-3246},
keywords={convergence;evolutionary computation;diversity-based replacement strategy;evolutionary algorithms;multimodal function;packing problem;premature convergence;single-objective problem;Convergence;Cybernetics;Evolutionary computation;Memetics;Optimization;Sociology;Statistics;Diversity preservation;exploitation;exploration;replacement strategy;survivor selection},
doi={10.1109/TCYB.2015.2501726},
ISSN={2168-2267},
month={Dec},}
@Inbook{Joel:AlgoritmoHungaro,
author="Molinet Berenguer, Jos{\'e} A.
and Coello Coello, Carlos A.",
editor="Gaspar-Cunha, Ant{\'o}nio
and Henggeler Antunes, Carlos
and Coello, Carlos Coello",
title="Evolutionary Many-Objective Optimization Based on Kuhn-Munkres' Algorithm",
bookTitle="Evolutionary Multi-Criterion Optimization: 8th International Conference, EMO 2015, Guimar{\~a}es, Portugal, March 29 --April 1, 2015. Proceedings, Part II",
year="2015",
publisher="Springer International Publishing",
address="Cham",
pages="3--17",
isbn="978-3-319-15892-1",
doi="10.1007/978-3-319-15892-1_1",
url="http://dx.doi.org/10.1007/978-3-319-15892-1_1"
}
@book{Joel:Hammersley,
title={Number Theoretic Methods in Designing Experiments},
author={Talke, I.S.},
url={https://books.google.com.mx/books?id=hOsRnQAACAAJ},
year={2012},
publisher={Montana State University}
}
@inproceedings{Joel:VEGA,
author = {Schaffer, J. David},
title = {Multiple Objective Optimization with Vector Evaluated Genetic Algorithms},
booktitle = {Proceedings of the 1st International Conference on Genetic Algorithms},
year = {1985},
isbn = {0-8058-0426-9},
pages = {93--100},
numpages = {8},
url = {http://dl.acm.org/citation.cfm?id=645511.657079},
acmid = {657079},
publisher = {L. Erlbaum Associates Inc.},
address = {Hillsdale, NJ, USA},
}
@INPROCEEDINGS{Joel:Dominancia-ManyObjective,
author={Hisao Ishibuchi and Noritaka Tsukamoto and Yusuke Nojima},
booktitle={2008 IEEE Congress on Evolutionary Computation (IEEE World Congress on Computational Intelligence)},
title={Evolutionary many-objective optimization: A short review},
year={2008},
pages={2419-2426},
keywords={evolutionary computation;optimisation;EMO algorithms;evolutionary many-objective optimization;multiobjective optimization;Scalability},
doi={10.1109/CEC.2008.4631121},
ISSN={1089-778X},
month={June},}
@article{Joel:NSGAIII,
title = "An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, Part I: Solving problems with box constraints",
abstract = "Having developed multiobjective optimization algorithms using evolutionary optimization methods and demonstrated their niche on various practical problems involving mostly two and three objectives, there is now a growing need for developing evolutionary multiobjective optimization (EMO) algorithms for handling many-objective (having four or more objectives) optimization problems. In this paper, we recognize a few recent efforts and discuss a number of viable directions for developing a potential EMO algorithm for solving many-objective optimization problems. Thereafter, we suggest a reference-point-based many-objective evolutionary algorithm following NSGA-II framework (we call it NSGA-III) that emphasizes population members that are nondominated, yet close to a set of supplied reference points. The proposed NSGA-III is applied to a number of many-objective test problems with three to 15 objectives and compared with two versions of a recently suggested EMO algorithm (MOEA/D). While each of the two MOEA/D methods works well on different classes of problems, the proposed NSGA-III is found to produce satisfactory results on all problems considered in this paper. This paper presents results on unconstrained problems, and the sequel paper considers constrained and other specialties in handling many-objective optimization problems. © 1997-2012 IEEE.",
keywords = "evolutionary computation, large dimension, Many-objective optimization, multi-criterion optimization, non-dominated sorting, NSGA-III",
author = "Kalyanmoy Deb and Himanshu Jain",
year = "2014",
doi = "10.1109/TEVC.2013.2281535",
volume = "18",
pages = "577--601",
journal = "IEEE Transactions on Evolutionary Computation",
issn = "1089-778X",
publisher = "Institute of Electrical and Electronics Engineers Inc.",
number = "4",
}
@Inbook{Joel:ASF,
author="Wierzbicki, Andrzej P.",
editor="Fandel, G{\"u}nter
and Gal, Tomas",
title="The Use of Reference Objectives in Multiobjective Optimization",
bookTitle="Multiple Criteria Decision Making Theory and Application: Proceedings of the Third Conference Hagen/K{\"o}nigswinter, West Germany, August 20--24, 1979",
year="1980",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="468--486",
isbn="978-3-642-48782-8",
doi="10.1007/978-3-642-48782-8_32",
url="http://dx.doi.org/10.1007/978-3-642-48782-8_32"
}
@inproceedings{Joel:AttainmentSurface,
author = {Knowles, Joshua},
title = {A Summary-attainment-surface Plotting Method for Visualizing the Performance of Stochastic Multiobjective Optimizers},
booktitle = {Proceedings of the 5th International Conference on Intelligent Systems Design and Applications},
series = {ISDA '05},
year = {2005},
isbn = {0-7695-2286-06},
pages = {552--557},
numpages = {6},
url = {http://dx.doi.org/10.1109/ISDA.2005.15},
doi = {10.1109/ISDA.2005.15},
acmid = {1108020},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@Inbook{Joel:ComparativoDEMO_FalloDTLZ6,
author="Tu{\v{s}}ar, Tea
and Filipi{\v{c}}, Bogdan",
editor="Obayashi, Shigeru
and Deb, Kalyanmoy
and Poloni, Carlo
and Hiroyasu, Tomoyuki
and Murata, Tadahiko",
title="Differential Evolution versus Genetic Algorithms in Multiobjective Optimization",
bookTitle="Evolutionary Multi-Criterion Optimization: 4th International Conference, EMO 2007, Matsushima, Japan, March 5-8, 2007. Proceedings",
year="2007",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="257--271",
isbn="978-3-540-70928-2",
doi="10.1007/978-3-540-70928-2_22",
url="http://dx.doi.org/10.1007/978-3-540-70928-2_22"
}
@article{Joel:CEC2009,
title={Multiobjective optimization test instances for the CEC 2009 special session and competition},
author={Zhang, Qingfu and Zhou, Aimin and Zhao, Shizheng and Suganthan, Ponnuthurai Nagaratnam and Liu, Wudong and Tiwari, Santosh},
journal={University of Essex, Colchester, UK and Nanyang technological University, Singapore, special session on performance assessment of multi-objective optimization algorithms, technical report},
volume={264},
year={2008}
}
@article{li2009multiobjective,
title={Multiobjective optimization problems with complicated Pareto sets, MOEA/D and NSGA-II},
author={Li, Hui and Zhang, Qingfu},
journal={IEEE transactions on evolutionary computation},
volume={13},
number={2},
pages={284--302},
year={2009},
publisher={IEEE}
}
@INPROCEEDINGS{Joel:Lebesgue_Measure,
author={J. D. Knowles and D. W. Corne and M. Fleischer},
booktitle={Evolutionary Computation, 2003. CEC '03. The 2003 Congress on},
title={Bounded archiving using the lebesgue measure},
year={2003},
volume={4},
pages={2490-2497 Vol.4},
keywords={evolutionary computation;Lebesgue measure;MOEA optimization;archive hyper-volume;bounded archiving;multiobjective evolutionary algorithm;state-of-the-art;Chemistry;Computer science;Convergence;Data structures;Educational institutions;Genetics;Modems;Physics;Systems engineering and theory;Technological innovation},
doi={10.1109/CEC.2003.1299401},
month={Dec},}
@Inbook{Joel:ParallelizationMOEA,
author="Coello Coello, Carlos A.
and Reyes Sierra, Margarita",
editor="Monroy, Ra{\'u}l
and Arroyo-Figueroa, Gustavo
and Sucar, Luis Enrique
and Sossa, Humberto",
title="A Study of the Parallelization of a Coevolutionary Multi-objective Evolutionary Algorithm",
bookTitle="MICAI 2004: Advances in Artificial Intelligence: Third Mexican International Conference on Artificial Intelligence, Mexico City, Mexico, April 26-30, 2004. Proceedings",
year="2004",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="688--697",
isbn="978-3-540-24694-7",
doi="10.1007/978-3-540-24694-7_71",
url="http://dx.doi.org/10.1007/978-3-540-24694-7_71"
}
@article{Joel:SwarmOptimizerDiversity,
title={A new multi-objective particle swarm optimizer with improved selection and diversity mechanisms},
author={Sierra, Margarita Reyes and Coello, Carlos A Coello},
journal={Technical Report of CINVESTAV-IPN},
year={2004}
}
@article{Joel:SimulatedAnnealingMetaheuristic,
title={Pareto simulated annealing—a metaheuristic technique for multiple-objective combinatorial optimization},
author={Czyz{\.z}ak, Piotr and Jaszkiewicz, Adrezej},
journal={Journal of Multi-Criteria Decision Analysis},
volume={7},
number={1},
pages={34--47},
year={1998},
publisher={Wiley Online Library}
}
@article{Joel:HausdorffDistance,
title={Using the averaged Hausdorff distance as a performance measure in evolutionary multiobjective optimization},
author={Schutze, Oliver and Esquivel, Xavier and Lara, Adriana and Coello, Carlos A Coello},
journal={IEEE Transactions on Evolutionary Computation},
volume={16},
number={4},
pages={504--522},
year={2012},
publisher={IEEE}
}
@inproceedings{Joel:ComparativeCaseStudy,
title={Multiobjective optimization using evolutionary algorithms—a comparative case study},
author={Zitzler, Eckart and Thiele, Lothar},
booktitle={International Conference on Parallel Problem Solving from Nature},
pages={292--301},
year={1998},
organization={Springer}
}
@article{Joel:EjemploFallaGD,
title={Performance assessment of multiobjective optimizers: An analysis and review},
author={Zitzler, Eckart and Thiele, Lothar and Laumanns, Marco and Fonseca, Carlos M and Da Fonseca, Viviane Grunert},
journal={IEEE Transactions on evolutionary computation},
volume={7},
number={2},
pages={117--132},
year={2003},
publisher={IEEE}
}
@inproceedings{Joel:HypervolumeRevisited,
title={The hypervolume indicator revisited: On the design of Pareto-compliant indicators via weighted integration},
author={Zitzler, Eckart and Brockhoff, Dimo and Thiele, Lothar},
booktitle={Evolutionary multi-criterion optimization},
pages={862--876},
year={2007},
organization={Springer}
}
@inproceedings{Joel:ComparisonStochasticSurfaces,
title={On the performance assessment and comparison of stochastic multiobjective optimizers},
author={Fonseca, Carlos M and Fleming, Peter J},
booktitle={International Conference on Parallel Problem Solving from Nature},
pages={584--593},
year={1996},
organization={Springer}
}
@INPROCEEDINGS{Joel:ComparacionMetricas,
author={J. Knowles and D. Corne},
booktitle={Evolutionary Computation, 2002. CEC '02. Proceedings of the 2002 Congress on},
title={On metrics for comparing nondominated sets},
year={2002},
volume={1},
pages={711-716},
keywords={evolutionary computation;optimisation;set theory;evolutionary multiobjective optimization;metrics;nondominated set comparison;outperformance relations;vectors;Approximation algorithms;Benchmark testing;Computer science;Graphics;Pathology;Shape},
doi={10.1109/CEC.2002.1007013},
month={May},}
@inproceedings{Joel:IGDPlus_And_GDPlus,
title={Modified distance calculation in generational distance and inverted generational distance},
author={Ishibuchi, Hisao and Masuda, Hiroyuki and Tanigaki, Yuki and Nojima, Yusuke},
booktitle={International Conference on Evolutionary Multi-Criterion Optimization},
pages={110--125},
year={2015},
organization={Springer}
}
@INPROCEEDINGS{Joel:R2_Many_Objective,
author={A. Díaz-Manríquez and G. Toscano-Pulido and C. A. C. Coello and R. Landa-Becerra},
booktitle={2013 IEEE Congress on Evolutionary Computation},
title={A ranking method based on the R2 indicator for many-objective optimization},
year={2013},
pages={1523-1530},
keywords={evolutionary computation;optimisation;performance evaluation;search problems;R2 indicator;algorithmic design;hypervolume-based MOEA;many-objective optimization problems;modified Goldberg nondominated sorting method;multiobjective evolutionary algorithms;performance indicators;performance measures;ranking method;search engines;selection mechanism;Approximation algorithms;Evolutionary computation;Optimization;Sociology;Sorting;Statistics;Vectors},
doi={10.1109/CEC.2013.6557743},
ISSN={1089-778X},
month={June},}
@inproceedings{Joel:OnPropertiesR2Indicator,
author = {Brockhoff, Dimo and Wagner, Tobias and Trautmann, Heike},
title = {On the Properties of the R2 Indicator},
booktitle = {Proceedings of the 14th Annual Conference on Genetic and Evolutionary Computation},
series = {GECCO '12},
year = {2012},
isbn = {978-1-4503-1177-9},
location = {Philadelphia, Pennsylvania, USA},
pages = {465--472},
numpages = {8},
url = {http://doi.acm.org/10.1145/2330163.2330230},
doi = {10.1145/2330163.2330230},
acmid = {2330230},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {hypervolume indicator, multiobjective optimization, performance assessment, r2 indicator},
}
@article{Joel:ReferencePointBasedNonDominateSortingApproach,
title={An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, part I: Solving problems with box constraints.},
author={Deb, Kalyanmoy and Jain, Himanshu},
journal={IEEE Trans. Evolutionary Computation},
volume={18},
number={4},
pages={577--601},
year={2014}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%CAPITULO 3
@INPROCEEDINGS{Joel:MOEA_Survey,
author={Hisao Ishibuchi and Noritaka Tsukamoto and Yusuke Nojima},
booktitle={2008 IEEE Congress on Evolutionary Computation (IEEE World Congress on Computational Intelligence)},
title={Evolutionary many-objective optimization: A short review},
year={2008},
pages={2419-2426},
keywords={evolutionary computation;optimisation;EMO algorithms;evolutionary many-objective optimization;multiobjective optimization;Scalability},
doi={10.1109/CEC.2008.4631121},
ISSN={1089-778X},
month={June},}
@inproceedings{Joel:Dominance_Area,
author = {Sato, Hiroyuki and Aguirre, Hern\'{a}n E. and Tanaka, Kiyoshi},
title = {Controlling Dominance Area of Solutions and Its Impact on the Performance of MOEAs},
booktitle = {Proceedings of the 4th International Conference on Evolutionary Multi-criterion Optimization},
series = {EMO'07},
year = {2007},
isbn = {978-3-540-70927-5},
location = {Matsushima, Japan},
pages = {5--20},
numpages = {16},
url = {http://dl.acm.org/citation.cfm?id=1762545.1762552},
acmid = {1762552},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
}
@Inbook{Joel:MOEA_Optimisation_Based_on_Relation_Favour,
author="Drechsler, Nicole
and Drechsler, Rolf
and Becker, Bernd",
editor="Zitzler, Eckart
and Thiele, Lothar
and Deb, Kalyanmoy
and Coello Coello, Carlos Artemio
and Corne, David",
title="Multi-objective Optimisation Based on Relation Favour ",
bookTitle="Evolutionary Multi-Criterion Optimization: First International Conference, EMO 2001 Zurich, Switzerland, March 7--9, 2001 Proceedings",
year="2001",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="154--166",
abstract="Many optimisation problems in circuit design, in the following also refereed to as VLSI CAD, consist of mutually dependent sub-problems, where the resulting solutions must satisfy several requirements. Recently, a new model for Multi-Objective Optimisation (MOO) for applications in Evolutionary Algorithms (EAs) has been proposed. The search space is partitioned into so-called Satisfiability Classes (SCs), where each region represents the quality of the optimisation criteria. Applying the SCs to individuals in a population a fitness can be assigned during the EA run. The model also allows the handling of infeasible regions and restrictions in the search space. Additionally, different priorities for optimisation objectives can be modelled. In this paper, the model is studied in further detail. Various properties are shown and advantages and disadvantages are discussed. The relations to other techniques are presented and experimental results are given to demonstrate the efficiency of the model.",
isbn="978-3-540-44719-1",
doi="10.1007/3-540-44719-9_11",
url="https://doi.org/10.1007/3-540-44719-9_11"
}
@INPROCEEDINGS{Joel:Ranking_Dominance_And_Many_Objective_Optimization,
author={Saku Kukkonen and Jouni Lampinen},
booktitle={2007 IEEE Congress on Evolutionary Computation},
title={Ranking-Dominance and Many-Objective Optimization},
year={2007},
pages={3983-3990},
keywords={Pareto optimisation;search problems;Pareto-dominance relation;Pareto-front;aggregation function;diversity maintenance;multiobjective optimization;ranking dominance;scalar fitness value;Evolutionary computation;Genetic algorithms;Hypercubes;Information technology;Random number generation;Sorting},