-
Notifications
You must be signed in to change notification settings - Fork 335
/
Copy pathbibtex.bib
8006 lines (7227 loc) · 217 KB
/
bibtex.bib
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
% This file was created with JabRef 2.7.2.
% Encoding: UTF-8
@ARTICLE{Aamodt1994,
author = {Aamodt, A. and Plaza, E.},
title = {Case-Based Reasoning: Foundational Issues, Methodological Variations,
and System Approaches},
journal = {Artificial Intelligence Communications},
year = {1994},
volume = {7},
pages = {39--59},
number = {1},
comment = {Record Number: 12240},
owner = {jbrownlee},
timestamp = {2007.10.03}
}
@ARTICLE{Aaronson2005,
author = {S. Aaronson},
title = {{NP}-complete problems and physical reality},
journal = {ACM SIGACT News (COLUMN: Complexity theory)},
year = {2005},
volume = {36},
pages = {30--52},
number = {1},
owner = {jasonb},
timestamp = {2010.01.14}
}
@INPROCEEDINGS{Adamidis1996,
author = {Adamidis, P. and Adamidis, P. and Petridis, V.},
title = {Co--operating Populations with Different Evolution Behaviours},
booktitle = {Proceedings IEEE International Conference on Evolutionary Computation},
year = {1996},
editor = {Petridis, V.},
pages = {188--191},
doi = {10.1109/ICEC.1996.542358},
keywords = {biocybernetics, cooperative systems, evolution (biological), genetic
algorithms, learning (artificial intelligence), parallel algorithms,
problem solving, recurrent neural nets, CoPDEB, Cooperating Populations
with Different Evolution Behaviours, communication methods, evolution
behaviour, operators, parallel genetic algorithms, problem solving,
recurrent artificial neural network training, selection mechanisms,
single population},
owner = {jbrownlee},
timestamp = {2008.02.25}
}
@BOOK{Alba2005a,
title = {Parallel Metaheuristics: A New Class of Algorithms},
publisher = {John Wiley},
year = {2005},
author = {E. Alba},
owner = {jbrownlee},
timestamp = {2008.02.26}
}
@ARTICLE{Alba2002a,
author = {E. Alba},
title = {Parallel evolutionary algorithms can achieve super-linear performance},
journal = {Information Processing Letters},
year = {2002},
volume = {82},
pages = {7-13},
owner = {jbrownlee},
timestamp = {2008.02.25}
}
@BOOK{Alba2008,
title = {Cellular Genetic Algorithms},
publisher = {Springer},
year = {2008},
author = {Alba, E. and Dorronsoro, B.},
owner = {jasonb},
timestamp = {2010.12.15}
}
@ARTICLE{Alba2002,
author = {Alba, E. and Tomassini, M.},
title = {Parallelism and evolutionary algorithms},
journal = {IEEE Transactions on Evolutionary Computation},
year = {2002},
volume = {6},
pages = {443--462},
number = {5},
comment = {Record Number: 2040},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://ieeexplore.ieee.org/iel5/4235/22327/01041554.pdf}
}
@ARTICLE{Alba2000,
author = {E. Alba and J. M. Troya},
title = {Influence of the Migration Policy in Parallel Distributed GAs with
Structured and Panmictic Populations},
journal = {Applied Intelligence},
year = {2000},
volume = {12},
pages = {163--181},
owner = {jbrownlee},
timestamp = {2008.02.25}
}
@ARTICLE{Ali1997,
author = {M. M. Ali and C. Storey and A T\"orn},
title = {Application of Stochastic Global Optimization Algorithms to Practical
Problems},
journal = {Journal of Optimization Theory and Applications},
year = {1997},
volume = {95},
pages = {545--563},
number = {3},
owner = {jbrownlee},
timestamp = {2008.02.25}
}
@BOOK{Anderson1988,
title = {Proceedings of The Santa Fe Institute Studies in the Sciences of
Complexity - Economy As an Evolving Complex System},
publisher = {Addison Wesley Publishing Company},
year = {1988},
author = {Anderson, P. W. and Arrow, K. J. and Pines, D.},
pages = {--},
address = {USA},
comment = {Record ID: 9970},
owner = {jbrownlee},
timestamp = {2007.10.03}
}
@ARTICLE{Andrieu2003,
author = {C. Andrieu and N. de Freitas and A. Doucet and M. I. Jordan},
title = {An Introduction to {MCMC} for Machine Learning},
journal = {Machine Learning},
year = {2003},
volume = {50},
pages = {5--43},
owner = {jbrownlee},
timestamp = {2008.02.24}
}
@INPROCEEDINGS{Angeline1996,
author = {P. J. Angeline},
title = {Two Self-Adaptive Crossover Operators for Genetic Programming},
booktitle = {Advances in Genetic Programming 2},
year = {1996},
editor = {Peter J. Angeline and K. E. {Kinnear, Jr.}},
pages = {89--110},
publisher = {MIT Press},
owner = {jasonb},
timestamp = {2010.03.07}
}
@ARTICLE{Apolloni1989,
author = {B. Apolloni and C. Caravalho and D. De~Falco},
title = {Quantum stochastic optimization},
journal = {Stochastic Processes and their Applications},
year = {1989},
volume = {33},
pages = {233--244},
owner = {jasonb},
timestamp = {2010.11.25}
}
@INCOLLECTION{Arthur1997,
author = {Arthur, W. B.},
title = {Introduction: Process and Emergence in the Economy},
booktitle = {The Economy as an Evolving Complex System II},
publisher = {Addison-Wesley Pub. Co},
year = {1997},
editor = {Durlauf, S. and Lane, D. A.},
volume = {Volume XXVII},
address = {Reading, Mass, USA},
comment = {9790
Medium Designator: Book Chapter
Author Role: Editors
Series Title: Proceedings Santa Fe Institute Studies in the Science
of Complexity},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://www.santafe.edu/~wbarthur/Papers/ADLIntro.html}
}
@BOOK{Azencott1992,
title = {Simulated annealing: parallelization techniques},
publisher = {Wiley},
year = {1992},
author = {R. Azencott},
owner = {jasonb},
timestamp = {2010.11.15}
}
@INPROCEEDINGS{Back1993,
author = {T. B\"ack},
title = {Optimal Mutation Rates in Genetic Search},
booktitle = {Proceedings of the Fifth International Conference on Genetic Algorithms},
year = {1993},
pages = {2--9},
owner = {jasonb},
timestamp = {2010.02.01}
}
@INPROCEEDINGS{Back1991,
author = {T. B\"ack and F. Hoffmeister and H--P. Schwefel},
title = {A survey of evolution strategies},
booktitle = {Proceedings of the Fourth International Conference on Genetic Algorithms},
year = {1991},
pages = {2--9},
owner = {jasonb},
timestamp = {2010.03.14}
}
@ARTICLE{Back1993b,
author = {T. B\"ack and H--P. Schwefel},
title = {An Overview of Evolutionary Algorithms for Parameter Optimization},
journal = {Evolutionary Computation},
year = {1993},
volume = {1},
pages = {1--23},
number = {1},
owner = {jasonb},
timestamp = {2010.03.24}
}
@PHDTHESIS{Bagley1967,
author = {J. D. Bagley},
title = {The behavior of adaptive systems which employ genetic and correlation
algorithms},
school = {University of Michigan},
year = {1967},
owner = {jasonb},
timestamp = {2010.02.27}
}
@ARTICLE{Bak1993,
author = {P. Bak and K. Sneppen},
title = {Punctuated equilibrium and criticality in a simple model of evolution},
journal = {Physical Review Letters},
year = {1993},
volume = {71},
pages = {4083--4086},
owner = {jasonb},
timestamp = {2010.11.16}
}
@ARTICLE{Bak1987,
author = {P. Bak and C. Tang and K. Wiesenfeld},
title = {Self-organized criticality: An explanation of the 1/f noise},
journal = {Physical Review Letters},
year = {1987},
volume = {59},
pages = {381--384},
owner = {jasonb},
timestamp = {2010.11.16}
}
@TECHREPORT{Baluja1995b,
author = {S. Baluja},
title = {An Empirical Comparison of Seven Iterative and Evolutionary Function
Optimization Heuristics},
institution = {School of Computer Science Carnegie Mellon University},
year = {1995},
number = {CMU-CS-95-193},
address = {Pittsburgh, Pennsylvania 15213},
month = {September},
owner = {jasonb},
timestamp = {2010.11.18}
}
@TECHREPORT{Baluja1994,
author = {Baluja, S.},
title = {Population-Based Incremental Learning: A Method for Integrating Genetic
Search Based Function Optimization and Competitive Learning},
institution = {School of Computer Science, Carnegie Mellon University},
year = {1994},
number = {CMU-CS-94-163},
address = {Pittsburgh, Pennsylvania 15213},
month = {June},
owner = {jasonb},
timestamp = {2010.11.18}
}
@TECHREPORT{Baluja1995,
author = {S. Baluja and R. Caruana},
title = {Removing the Genetics from the Standard Genetic Algorithm},
institution = {School of Computer Science Carnegie Mellon University},
year = {1995},
number = {CMU-CS-95-141},
address = {Pittsburgh, Pennsylvania 15213},
month = {May},
owner = {jasonb},
timestamp = {2010.11.18}
}
@INPROCEEDINGS{Baluja1995a,
author = {S. Baluja and R. Caruana},
title = {Removing the Genetics from the Standard Genetic Algorithm},
booktitle = {Proceedings of the International Conference on Machine Learning},
year = {1995},
pages = {36--46},
publisher = {Morgan Kaufmann},
owner = {jasonb},
timestamp = {2010.11.18}
}
@BOOK{Banzhaf1998,
title = {Genetic Programming -- An Introduction; On the Automatic Evolution
of Computer Programs and its Applications},
publisher = {Morgan Kaufmann},
year = {1998},
author = {W. Banzhaf and P. Nordin and R. E. Keller and F. D. Francone},
owner = {jasonb},
timestamp = {2010.03.04}
}
@ARTICLE{Bard1996,
author = {J. F. Bard and T. A. Feo and S. Holland},
title = {A {GRASP} for scheduling printed wiring board assembly},
journal = {I.I.E. Trans.},
year = {1996},
volume = {28},
pages = {155--165},
annote = {The assembly of printed wiring boards (PWBs) typically involves the
coordination of thousands of components and hundreds of part numbers
in a job shop environment with more than 50 different processes and
workstations. The authors propose a {GRASP} for solving the daily
scheduling problem that arises in such environment. The first phase
of {GRASP} obtains a user-specified number of schedules. The greedy
function is the product between the weighted processing time and
and the slack time window.}
}
@ARTICLE{Barr1995,
author = {Barr, R. and Golden, B. and Kelly, J. and Rescende, M. and Stewart,
W.},
title = {Designing and Reporting on Computational Experiments with Heuristic
Methods},
journal = {Journal of Heuristics},
year = {1995},
volume = {1},
pages = {9--32},
comment = {Record Number: 7430},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://faculty.smu.edu/barr/pubs/}
}
@ARTICLE{Barrett2003,
author = {Barrett, C. L. and Marathe, A. and Marathe, M. V. and Cook, D. and Hicks, G. and Faber, V. and Srinivasan, A. and Sussmann, Y. J. and Thornquist, H.},
title = {Statistical Analysis of Algorithms: A Case Study of Market-Clearing
Mechanisms in the Power Industry},
journal = {Journal of Graph Algorithms and Applications},
year = {2003},
volume = {7},
pages = {3--31},
number = {1},
comment = {Record Number: 7750},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://www.informatik.uni-trier.de/~ley/db/indices/a-tree/f/Faber:Vance.html}
}
@TECHREPORT{Bartz-Beielstein2003,
author = {Bartz--Beielstein, T.},
title = {Experimental Analysis of Evolution Strategies -- Overview and Comprehensive
Introduction},
institution = {Computational Intelligence, University of Dortmund},
year = {2003},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://ls11-www.cs.uni-dortmund.de/people/tom/},
volume = {Technical Report 157}
}
@ARTICLE{Bartz-Beielstein2004,
author = {Bartz--Beielstein, T. and Parsopoulos, K. E. and Vrahatis, M. N.},
title = {Design and Analysis of Optimization Algorithms Using Computational
Statistics},
journal = {Applied Numerical Analysis \& Computational Mathematics},
year = {2004},
volume = {1},
pages = {413--433},
number = {2},
comment = {Record Number: 7790},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://www3.interscience.wiley.com/cgi-bin/abstract/109860277/ABSTRACT?CRETRY=1&SRETRY=0}
}
@INPROCEEDINGS{Basturk2006,
author = {B. Basturk and D. Karaboga},
title = {An Artificial Bee Colony ({ABC}) Algorithm for Numeric function Optimization},
booktitle = {IEEE Swarm Intelligence Symposium},
year = {2006},
owner = {jasonb},
timestamp = {2010.12.17}
}
@INPROCEEDINGS{Battiti1996,
author = {R. Battiti},
title = {Machine learning methods for parameter tuning in heuristics},
booktitle = {5th DIMACS Challenge Workshop: Experimental Methodology Day},
year = {1996},
owner = {jasonb},
timestamp = {2010.02.06}
}
@INBOOK{Battiti2009,
chapter = {Reactive Search Optimization: Learning while Optimizing},
title = {Handbook of Metaheuristics},
publisher = {Springer Verlag},
year = {2009},
editor = {M. Gendreau and J--Y. Potvin},
author = {R. Battiti and M. Brunato},
edition = {2nd},
owner = {jasonb},
timestamp = {2010.02.06}
}
@BOOK{Battiti2008,
title = {Reactive Search and Intelligent Optimization},
publisher = {Springer},
year = {2008},
author = {R. Battiti and M. Brunato and F. Mascia},
owner = {jasonb},
timestamp = {2010.02.06}
}
@ARTICLE{Battiti2001,
author = {R. Battiti and M. Protasi},
title = {Reactive local search for the Maximum Clique problem},
journal = {Algorithmica},
year = {2001},
volume = {29},
pages = {610--637},
number = {4},
owner = {jasonb},
timestamp = {2010.02.06}
}
@TECHREPORT{Battiti1995,
author = {R. Battiti and M. Protasi},
title = {Reactive local search for the Maximum Clique problem},
institution = {International Computer Science Institute, Berkeley, CA},
year = {1995},
number = {TR-95-052},
owner = {jasonb},
timestamp = {2010.02.06}
}
@ARTICLE{Battiti1995a,
author = {R. Battiti and G. Tecchiolli},
title = {Local search with memory: Benchmarking {RTS}},
journal = {Operations Research Spektrum},
year = {1995},
volume = {17},
pages = {67--86},
number = {2/3},
owner = {jasonb},
timestamp = {2010.02.06}
}
@ARTICLE{Battiti1995b,
author = {R. Battiti and G. Tecchiolli},
title = {Training neural nets with the reactive tabu search},
journal = {IEEE Transactions on Neural Networks},
year = {1995},
volume = {6},
pages = {1185--1200},
number = {5},
owner = {jasonb},
timestamp = {2010.02.20}
}
@ARTICLE{Battiti1994,
author = {R. Battiti and G. Tecchiolli},
title = {The reactive tabu search},
journal = {ORSA Journal on Computing},
year = {1994},
volume = {6},
pages = {126--140},
number = {2},
owner = {jasonb},
timestamp = {2010.02.06}
}
@ARTICLE{Battiti1994a,
author = {R. Battiti and G. Tecchiolli},
title = {Simulated annealing and tabu search in the long run: a comparison
on qap tasks},
journal = {Computer and Mathematics with Applications},
year = {1994},
volume = {28},
pages = {1--8},
number = {6},
owner = {jasonb},
timestamp = {2010.02.06}
}
@ARTICLE{Battiti1992,
author = {R. Battiti and G. Tecchiolli},
title = {Parallel Biased Search for Combinatorial Optimization: genetic algorithms
and TABU},
journal = {Microprocessors and Microsystems},
year = {1992},
volume = {16},
pages = {351-367},
number = {7},
owner = {jasonb},
timestamp = {2010.02.18}
}
@INPROCEEDINGS{Baum1986,
author = {E. B. Baum},
title = {Towards practical ``neural'' computation for combinatorial optimization
problems},
booktitle = {AIP conference proceedings: Neural Networks for Computing},
year = {1986},
pages = {53--64},
owner = {jasonb},
timestamp = {2010.02.10}
}
@ARTICLE{Baxter1981,
author = {J. Baxter},
title = {Local optima avoidance in depot location},
journal = {Journal of the Operational Research Society},
year = {1981},
volume = {32},
pages = {815--819},
owner = {jasonb},
timestamp = {2010.02.10}
}
@BOOK{Beck2002,
title = {Test Driven Development: By Example},
publisher = {Addison-Wesley Professional},
year = {2002},
author = {K. Beck},
owner = {jasonb},
timestamp = {2010.12.06}
}
@INPROCEEDINGS{Belding1995,
author = {T. C. Belding},
title = {The Distributed Genetic Algorithm Revisited},
booktitle = {Proceedings of the 6th International Conference on Genetic Algorithms},
year = {1995},
owner = {jbrownlee},
timestamp = {2008.02.25}
}
@BOOK{Benyus1998,
title = {Biomimicry: Innovation Inspired by Nature},
publisher = {Quill},
year = {1998},
author = {J. M. Benyus},
owner = {jasonb},
timestamp = {2010.01.13}
}
@TECHREPORT{Bergemann2006,
author = {D. Bergemann and J. Valimaki},
title = {Bandit Problems},
institution = {Cowles Foundation, Yale University},
year = {2006},
type = {Cowles Foundation Discussion Papers},
number = {1551},
month = Jan,
url = {http://ideas.repec.org/p/cwl/cwldpp/1551.html}
}
@INCOLLECTION{Bersini1990,
author = {Bersini, H. and Varela, F.},
title = {Hints for Adaptive Problem Solving Gleaned from Immune Networks},
booktitle = {Lecture Notes In Computer Science},
publisher = {Springer-Verlag},
year = {1990},
pages = {343--354},
address = {London, UK},
comment = {Record Number: 2660
Date of Copyright: 1990
Extent of Work:
Series Volume ID: 496
ISBN: 3-540-54148-9},
owner = {jbrownlee},
timestamp = {2007.10.03}
}
@ARTICLE{Beyer2002,
author = {H--G. Beyer and H--P. Schwefel},
title = {Evolution strategies: A comprehensive introduction},
journal = {Natural Computing: an international journal},
year = {2002},
volume = {1},
pages = {3--52},
number = {1},
owner = {jasonb},
timestamp = {2010.03.13}
}
@TECHREPORT{Birattari2005a,
author = {Birattari, M. and Dorigo, M.},
title = {How to assess and report the performance of a stochastic algorithm
on a benchmark problem: Mean or best result on a number of runs?},
institution = {IRIDIA, Universite Libre de Bruxelles},
year = {2005},
address = {Brussels, Belgium},
comment = {Record Number: 7450
Section Title: How to assess and report the performance of a stochastic
algorithm on a benchmark problem: Mean or best result on a number
of runs?
Medium Designator: Technical Report},
owner = {jbrownlee},
pages = {--},
publisher = {IRIDIA, UniversitÈ Libre de Bruxelles},
timestamp = {2007.10.03},
url = {http://iridia.ulb.ac.be/~mbiro/paperi.html},
volume = {TR/IRIDIA/2005-007}
}
@INCOLLECTION{Birattari2002,
author = {Birattari, M. and St\"utzle, T. and Paquete, L. and Varrentrapp,
K.},
title = {A Racing Algorithm for Configuring Metaheuristics},
booktitle = {Proceedings of the Genetic and Evolutionary Computation Conference},
publisher = {Morgan Kaufmann Publishers Inc.},
year = {2002},
pages = {11--18},
address = {San Francisco, CA, USA},
comment = {Record Number: 7700
Extent of Work:
ISBN: 1-55860-878-8},
owner = {jbrownlee},
timestamp = {2007.10.03},
url = {http://portal.acm.org/citation.cfm?id=646205.682291&coll=&dl=acm&CFID=15151515&CFTOKEN=6184618}
}
@BOOK{Bishop1995,
title = {Neural Networks for Pattern Recognition},
publisher = {Oxford University Press},
year = {1995},
author = {C. M. Bishop},
owner = {jasonb},
timestamp = {2010.01.14}
}
@ARTICLE{Blas2005,
author = {A. Di Blas and A. Jagota and R. Hughey},
title = {Optimizing neural networks on {SIMD} parallel computers},
journal = {Parallel Computing},
year = {2005},
volume = {31},
pages = {97--115},
owner = {jbrownlee},
timestamp = {2008.03.06}
}
@ARTICLE{Blum2003,
author = {C. Blum and A. Roli},
title = {Metaheuristics in combinatorial optimization: Overview and conceptual
comparison},
journal = {ACM Computing Surveys (CSUR)},
year = {2003},
volume = {35},
pages = {268--308},
number = {3},
owner = {jasonb},
timestamp = {2010.01.13}
}
@INPROCEEDINGS{Blum2001,
author = {C. Blum and A. Roli and M. Dorigo},
title = {{HC}--{ACO}: The hyper-cube framework for Ant Colony Optimization},
booktitle = {Proceedings of the Fourth Metaheuristics International Conference},
year = {2001},
volume = {1},
pages = {399--403},
owner = {jasonb},
timestamp = {2010.12.17}
}
@ARTICLE{Boettcher2000a,
author = {Boettcher, S.},
title = {Extremal optimization: heuristics via coevolutionary avalanches},
journal = {Computing in Science \& Engineering},
year = {2000},
volume = {2},
pages = {75--82},
number = {6},
owner = {jasonb},
timestamp = {2010.11.16}
}
@ARTICLE{Boettcher2000,
author = {S. Boettcher and A. Percus},
title = {Nature’s Way of Optimizing},
journal = {Artificial Intelligence},
year = {2000},
volume = {119},
pages = {275--286},
number = {1-2},
owner = {jasonb},
timestamp = {2010.11.16}
}
@ARTICLE{Boettcher2001,
author = {S. Boettcher and A. G. Percus},
title = {Optimization with extremal dynamics},
journal = {Phys. Rev. Lett.},
year = {2001},
volume = {86},
pages = {5211--5214},
owner = {jasonb},
timestamp = {2010.11.16}
}
@INPROCEEDINGS{Boettcher1999,
author = {S. Boettcher and A. G. Percus},
title = {Extremal Optimization: Methods derived from Co-Evolution},
booktitle = {Proceedings of the Genetic and Evolutionary Computation Conference},
year = {1999},
owner = {jasonb},
timestamp = {2010.11.16}
}
@BOOK{Bonabeau1999,
title = {Swarm Intelligence: From Natural to Artificial Systems},
publisher = {Oxford University Press US},
year = {1999},
author = {E. Bonabeau and M. Dorigo and G. Theraulaz},
owner = {jasonb},
timestamp = {2010.01.14}
}
@BOOK{Booch1997,
title = {Object-Oriented Analysis and Design with Applications},
publisher = {Addison-Wesley},
year = {1997},
author = {G. Booch and R. Maksimchuk and M. Engle and B. Young and J. Conallen
and K. Houston},
owner = {jasonb},
timestamp = {2010.12.04}
}
@ARTICLE{Booker1989,
author = {L. B. Booker and D. E. Goldberg and J. H. Holland},
title = {Classifier systems and genetic algorithms},
journal = {Artificial Intelligence},
year = {1989},
volume = {40},
pages = {235--282},
owner = {jasonb},
timestamp = {2010.04.05}
}
@BOOK{Boyd2004,
title = {Convex Optimization},
publisher = {Cambridge University Press},
year = {2004},
author = {S. Boyd and L. Vandenberghe},
owner = {jbrownlee},
timestamp = {2008.02.27}
}
@ARTICLE{Breiman1996,
author = {L. Breiman},
title = {Bagging predictors},
journal = {Machine Learning},
year = {1996},
volume = {24},
pages = {123--140},
number = {2},
owner = {jbrownlee},
timestamp = {2008.02.23}
}
@ARTICLE{Brooks1986,
author = {Brooks, R.},
title = {A robust layered control system for a mobile robot},
journal = {IEEE Journal Of Robotics And Automation},
year = {1986},
volume = {2},
pages = {14--23},
number = {1},
issn = {0882-4967},
keywords = {Hierarchical systems, Robots, locomotion, Robustness},
owner = {jbrownlee},
timestamp = {2008.02.28}
}
@ARTICLE{Brooks1958,
author = {S. H. Brooks},
title = {A Discussion of Random Methods for Seeking Maxima},
journal = {Operations Research},
year = {1958},
volume = {6},
pages = {244--251},
number = {2},
owner = {jasonb},
timestamp = {2010.01.27}
}
@BOOK{Brownlee2011,
title = {Clever Algorithms: Nature-Inspired Programming Recipes},
publisher = {Lulu},
year = {2011},
author = {Jason Brownlee},
owner = {jasonb},
timestamp = {2011.01.05}
}
@TECHREPORT{Brownlee2010,
author = {J. Brownlee},
title = {The Clever Algorithms Project: Overview},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20100105-1},
month = {January},
owner = {jasonb},
timestamp = {2010.01.05}
}
@TECHREPORT{Brownlee2010a,
author = {J. Brownlee},
title = {A Template for Standardized Algorithm Descriptions},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20100107-1},
month = {January},
owner = {jasonb},
timestamp = {2010.01.05}
}
@TECHREPORT{Brownlee2010aa,
author = {J. Brownlee},
title = {Negative Selection Algorithm},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20100516-1},
month = {May},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ab,
author = {J. Brownlee},
title = {Artificial Immune Networks},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101114-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ac,
author = {J. Brownlee},
title = {Particle Swarm Optimization},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101114b-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ad,
author = {J. Brownlee},
title = {Ant System},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101115-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ae,
author = {J. Brownlee},
title = {Ant Colony System},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101115a-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010af,
author = {J. Brownlee},
title = {Perceptron},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101116b-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ag,
author = {J. Brownlee},
title = {Back-propagation Algorithm},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101117-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ah,
author = {J. Brownlee},
title = {Hopfield Network},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101124-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ai,
author = {J. Brownlee},
title = {Learning Vector Quantization},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101118-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010aj,
author = {J. Brownlee},
title = {Self-Organizing Map},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101124a-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ak,
author = {J. Brownlee},
title = {Simulated Annealing},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101115c-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010al,
author = {J. Brownlee},
title = {Extremal Optimization},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101116a-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010am,
author = {J. Brownlee},
title = {Harmony Search},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101122-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010an,
author = {J. Brownlee},
title = {Cultural Algorithms},
institution = {The Clever Algorithms Project http://www.CleverAlgorithms.com},
year = {2010},
number = {CA-TR-20101121a-1},
month = {November},
owner = {jasonb},
timestamp = {2010.05.09}
}
@TECHREPORT{Brownlee2010ao,
author = {J. Brownlee},