-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreferences.bib
More file actions
1115 lines (1105 loc) · 39.2 KB
/
Copy pathreferences.bib
File metadata and controls
1115 lines (1105 loc) · 39.2 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
@incollection{SmithMilesLion5,
author = {Smith-Miles, Kate and Lopes, Leo},
affiliation = {School of Mathematical Sciences, Monash University, Victoria 3800, Australia},
title = {Generalising Algorithm Performance in Instance Space: A Timetabling Case Study},
booktitle = {Learning and Intelligent Optimization},
series = {Lecture Notes in Computer Science},
publisher = {Springer},
keyword = {Computer Science},
pages = {524--538},
volume = {6683},
year = {2011}
}% citation verified
@incollection {SmithMilesLion3,
author = {Smith-Miles, Kate and James, Ross and Giffin, John and Tu, Yiqing},
affiliation = {Monash University School of Mathematical Sciences Melbourne Australia},
title = {A Knowledge Discovery Approach to Understanding Relationships between Scheduling Problem Structure and Heuristic Performance},
booktitle = {Learning and Intelligent Optimization},
series = {Lecture Notes in Computer Science},
publisher = {Springer},
keyword = {Computer Science},
pages = {89--103},
volume = {5851},
year = {2009}
}% citation verified
@article{Siggi10,
title = {Learning effective new single machine dispatching rules from optimal scheduling data},
journal = {International Journal of Production Economics},
volume = "128",
number = "1",
pages = "118--126",
year = {2010},
author = {Sigurdur Olafsson and Xiaonan Li}
} % citation verified
@article {Siggi05,
author = {Li, Xiaonan and Olafsson, Sigurdur},
title = {Discovering Dispatching Rules Using Data Mining},
journal = {Journal of Scheduling},
publisher = {Springer},
keyword = {Business and Economics},
pages = {515--527},
volume = {8},
issue = {6},
year = {2005}
} % citation verified
@article{Panwalkar77,
author = {Panwalkar, S. S. and Iskander, Wafik},
title = {A Survey of Scheduling Rules},
volume = {25},
number = {1},
pages = {45--61},
year = {1977},
abstract ={In the past two decades researchers in the field of sequencing and scheduling have analyzed several priority dispatching rules through simulation techniques. This paper presents a summary of over 100 such rules, a list of many references that analyze them, and a classification scheme.},
journal = {Operations Research}
} % citation verified
@article{Stafford88,
author = {Stafford, Edward F},
journal = {Journal of the Operational Research Society},
number = {12},
pages = {1163--1174},
title = {{On the Development of a Mixed-Integer Linear Programming Model for
the Flowshop Sequencing Problem}},
volume = {39},
year = {1988}
}
@article{Tay08,
title={Evolving dispatching rules using genetic programming for solving multi-objective flexible job-shop problems},
journal={Computers and Industrial Engineering},
volume={54},
number={3},
pages={453--473},
year={2008},
author={Joc Cing Tay and Nhu Binh Ho},
} % citation verified
@article{Hildebrandt2010,
author = {Hildebrandt, Torsten and Heger, Jens and Scholz-Reiter, Bernd},
journal = {GECCO '10: Proceedings of the 12th annual conference on Genetic
and evolutionary computation},
pages = {257--264},
title = {{Towards improved dispatching rules for complex shop floor
scenarios: a genetic programming approach}},
year = {2010}
}
@article{Pickardt2013,
author = {Pickardt, Christoph W. and Hildebrandt, Torsten and Branke,
J\"{u}rgen and Heger, Jens and Scholz-Reiter, Bernd},
journal = {International Journal of Production Economics},
number = {1},
pages = {67--77},
title = {{Evolutionary generation of dispatching rule sets for complex
dynamic scheduling problems}},
volume = {145},
year = {2013}
}
@article{Premalatha2012,
author = {Premalatha, S.},
journal = {Journal of Advances in Management Research},
number = {2},
pages = {170--177},
title = {{Implementation of supervised statistical data mining algorithm
for single machine scheduling}},
volume = {9},
year = {2012}
}
@inproceedings{Zhang95,
author = {Zhang, Wei and Dietterich, Thomas G.},
title = {A reinforcement learning approach to job-shop scheduling},
booktitle = {Proceedings of the 14th international joint conference on Artificial Intelligence},
volume = {2},
series = {IJCAI'95},
year = {1995},
location = {Montreal, Quebec, Canada},
pages = {1114--1120},
publisher = {Morgan Kaufmann Publishers Inc.},
} % citation verified
@incollection {Ru06:PPSN,
author = {Runarsson, Thomas},
affiliation = {Science Institute, University of Iceland},
title = {Ordinal Regression in Evolutionary Computation},
booktitle = {Parallel Problem Solving from Nature - PPSN IX},
series = {Lecture Notes in Computer Science},
publisher = {Springer},
pages = {1048--1057},
volume = {4193},
year = {2006}
} % citation verified
@article{Chang96,
title={A study of due-date assignment rules with constrained tightness in a dynamic job shop},
journal={Computers and Industrial Engineering},
volume={31},
number={1–2},
pages={205--208},
year={1996},
author={Feng-Chang R. Chang},
} % citation verified
@article{Thiagarajan05,
title={Scheduling in dynamic assembly job-shops to minimize the sum of weighted earliness, weighted tardiness and weighted flowtime of jobs},
journal={Computers and Industrial Engineering},
volume={49},
number={4},
pages={463--503},
year={2005},
author={S. Thiagarajan and Chandrasekharan Rajendran},
} % citation verified
@article{Garey76:NPhard,
jstor_articletype = {research-article},
title = {The Complexity of Flowshop and Jobshop Scheduling},
author = {Garey, M. R. and Johnson, D. S. and Sethi, Ravi},
journal = {Mathematics of Operations Research},
jstor_issuetitle = {},
volume = {1},
number = {2},
jstor_formatteddate = {May, 1976},
pages = {117--129},
year = {1976},
publisher = {INFORMS},
copyright = {Copyright © 1976 INFORMS},
} % citation verified url = {http://www.jstor.org/stable/3689278},
@incollection {Ru04:PPSN,
author = {Runarsson, Thomas},
affiliation = {Science Institute, University of Iceland},
title = {Constrained Evolutionary Optimization by Approximate Ranking and Surrogate Models},
booktitle = {Parallel Problem Solving from Nature - PPSN VIII},
series = {Lecture Notes in Computer Science},
publisher = {Springer},
keyword = {Computer Science},
pages = {401--410},
volume = {3242},
year = {2004}
} % citation verified
@article{Malik08,
author = {Malik, Abid M. and Russell, Tyrel and Chase, Michael and Beek, Peter},
title = {Learning heuristics for basic block instruction scheduling},
journal = {Journal of Heuristics},
issue_date = {December 2008},
volume = {14},
number = {6},
month = dec,
year = {2008},
pages = {549--569},
publisher = {Kluwer Academic Publishers},
keywords = {Instruction scheduling, List scheduling heuristics, Machine
learning},
} % citation verified
@article{Russell09,
author = {Russell, Tyrel and Malik, Abid M. and Chase, Michael and van Beek, Peter},
title = {Learning Heuristics for the Superblock Instruction Scheduling Problem},
journal = {IEEE Trans. on Knowl. and Data Eng.},
issue_date = {October 2009},
volume = {21},
number = {10},
month = oct,
year = {2009},
pages = {1489--1502},
publisher = {IEEE Educational Activities Department},
keywords = {Pipeline processors, compilers, heuristics design, machine
learning, constraint satisfaction.},
} % citation verified
@article{Kendall38,
jstor_articletype = {research-article},
title = {A New Measure of Rank Correlation},
author = {Kendall, M. G.},
journal = {Biometrika},
jstor_issuetitle = {},
volume = {30},
number = {1/2},
jstor_formatteddate = {Jun., 1938},
pages = {81--93},
abstract = {},
language = {English},
year = {1938},
publisher = {Biometrika Trust},
copyright = {Copyright © 1938 Biometrika Trust},
} % citation verified
@article{Hansen01,
author = {Hansen, Nikolaus and Ostermeier, Andreas},
title = {Completely Derandomized Self-Adaptation in Evolution Strategies},
journal = {Evol. Comput.},
issue_date = {June 2001},
volume = {9},
number = {2},
month = jun,
year = {2001},
pages = {159--195},
publisher = {MIT Press},
} % citation verified
@book{vonNeumann44,
title = {Theory of Games and Economic Behavior},
author = {John von Neumann and Morgenstern, Oskar},
series = {Princeton Classic Editions},
year = {2007},
publisher = {Princeton University Press},
}
@inbook{Rosen03,
author = {Rosen, Kenneth H.},
title = {Discrete Mathematics and Its Applications},
year = {2003},
edition = {5},
chapter ={9},
pages = {631--700},
publisher = {McGraw-Hill, Inc.},
} % citation verified
@article {Burke06,
author = {Burke, Edmund and Petrovic, Sanja and Qu, Rong},
title = {Case-based heuristic selection for timetabling problems},
journal = {Journal of Scheduling},
publisher = {Springer},
keyword = {Business and Economics},
pages = {115--132},
volume = {9},
issue = {2},
year = {2006}
} % citation verified
@article{Asmuni09,
title={An investigation of fuzzy multiple heuristic orderings in the construction of university examination timetables},
journal={Computers and Operations Research},
volume={36},
number={4},
pages={981--1001},
year={2009},
note={},
author={Hishammudin Asmuni and Edmund K. Burke and Jonathan M. Garibaldi and Barry McCollum and Andrew J. Parkes},
} % citation verified
@ARTICLE{Wolpert97nofree,
author = {David H. Wolpert and William G. Macready},
title = {No free lunch theorems for optimization},
journal = {IEEE Transactions on Evolutionary Computation},
year = {1997},
volume = {1},
number = {1},
pages = {67--82}
} % citation verified
@article{Jayamohan04,
title={Development and analysis of cost-based dispatching rules for job shop scheduling},
journal={European Journal of Operational Research},
volume={157},
number={2},
pages={307--321},
year={2004},
author={M.S. Jayamohan and Chandrasekharan Rajendran},
} % citation verified
@misc{libsvm,
author = {Chih-Jen Lin and Chih-Chung Chang},
title = {{LIBSVM}: A Library for Support Vector Machines (Version 3.12) [Software]},
month = {April},
year = {2012},
URL = {http://www.csie.ntu.edu.tw/~cjlin/libsvm/},
} % citation verified
@article{Lin08:newtontrustregion,
author = {Lin, Chih-Jen and Weng, Ruby C. and Keerthi, S. Sathiya},
title = {Trust Region Newton Method for Logistic Regression},
journal = {J. Mach. Learn. Res.},
issue_date = {6/1/2008},
volume = {9},
month = jun,
year = {2008},
pages = {627--650},
publisher = {JMLR.org},
} % citation verified
@misc{gurobi,
author={{Gurobi Optimization, Inc.}},
title={Gurobi Optimization (Version 6.0.0) [Software]},
year ={2014},
url={http://www.gurobi.com/}
}% citation verified
@misc{LiSA,
author = {Andresen, Michael and Engelhardt, Frank and Werner, Frank},
title = {{LiSA - A Library of Scheduling Algorithms} (Version
3.0) [Software]},
url = {http://www.math.ovgu.de/Lisa.html},
year = {2010}
}
@Article{liblinear,
author = {Rong-En Fan and Kai-Wei Chang and Cho-Jui Hsieh and Xiang-Rui Wang and Chih-Jen Lin},
title = {{LIBLINEAR}: A Library for Large Linear Classification},
journal = {Journal of Machine Learning Research},
year = {2008},
volume = {9},
pages = {1871--1874}
} % citation verified %url = {http://www.csie.ntu.edu.tw/~cjlin/liblinear},
@incollection {Corne10,
author = {Corne, David and Reynolds, Alan},
affiliation = {School of MACS, Heriot-Watt University, Edinburgh, UK},
title = {Optimisation and Generalisation: Footprints in Instance Space},
booktitle = {Parallel Problem Solving from Nature, PPSN XI},
series = {Lecture Notes in Computer Science},
publisher = {Springer},
keyword = {Computer Science},
pages = {22--31},
volume = {6238},
year = {2010}
} % citation verified
@INPROCEEDINGS{Pfahringer00,
author = {Bernhard Pfahringer and Hilan Bensusan and Christophe Giraud-carrier},
title = {Meta-learning by landmarking various learning algorithms},
booktitle = {in Proceedings of the 17th International Conference on Machine Learning, ICML’2000},
year = {2000},
pages = {743--750},
publisher = {Morgan Kaufmann}
} % citiation verified
@article{Rice76,
author = {John R. Rice},
title = {The Algorithm Selection Problem},
journal = {Advances in Computers},
volume = {15},
year = {1976},
pages = {65--118},
} % citation verified
@INPROCEEDINGS{Ong04,
author = {Y. S. Ong and P. B. Nair and A. J. Keane and K. W. Wong},
title = {Surrogate-Assisted Evolutionary Optimization Frameworks for High-Fidelity Engineering Design Problems},
booktitle = {In Knowledge Incorporation in Evolutionary Computation},
year = {2004},
pages = {307--332},
publisher = {Springer}
} % citation verified
@article{Sobester05,
author = {S\'{o}bester, Andr\'{a}s and Leary, Stephen J. and Keane, Andy J.},
title = {On the Design of Optimization Strategies Based on Global Response Surface Approximation Models},
journal = {J. of Global Optimization},
issue_date = {September 2005},
volume = {33},
number = {1},
month = sep,
year = {2005},
pages = {31--59},
publisher = {Kluwer Academic Publishers},
keywords = {Gaussian kernels, Radial basis functions, expected improvement},
} % citation verified
@article {Jin05,
author = {Jin, Y.},
affiliation = {Honda Research Institute Europe 63073 Offenbach Carl-Legin-str. 30 Germany},
title = {A comprehensive survey of fitness approximation in evolutionary computation},
journal = {Soft Computing - A Fusion of Foundations, Methodologies and Applications},
publisher = {Springer},
pages = {3--12},
volume = {9},
issue = {1},
year = {2005}
} % citation verified
@inproceedings{Lim07,
author = {Lim, Dudy and Ong, Yew-Soon and Jin, Yaochu and Sendhoff, Bernhard},
title = {A study on metamodeling techniques, ensembles, and multi-surrogates in evolutionary computation},
booktitle = {Proceedings of the 9th annual conference on Genetic and evolutionary computation},
series = {GECCO '07},
year = {2007},
location = {London, England},
pages = {1288--1295},
publisher = {ACM},
keywords = {evolutionary algorithm using approximation, surrogate-asssisted
memetic algorithm},
} % citation verified
@ARTICLE{Jin02,
author = {Yaochu Jin and Markus Olhofer and Bernhard Sendhoff},
title = {A Framework for Evolutionary Optimization with Approximate Fitness Functions},
journal = {IEEE Transactions on Evolutionary Computation},
year = {2002},
volume = {6},
pages = {481--494}
} % citation verified
@book{Schwefel95:book,
publisher = {Wiley},
series = {A Wiley-Interscience publication},
title = {Evolution and optimum seeking},
year = 1995
} % citation verified
@inproceedings{Loshchilov10,
author = {Loshchilov, Ilya and Schoenauer, Marc and Sebag, Mich\`{e}le},
title = {Comparison-based optimizers need comparison-based surrogates},
booktitle = {Proceedings of the 11th international conference on Parallel problem solving from nature: Part I},
series = {PPSN'10},
year = {2010},
location = {Krak\&\#243;w, Poland},
pages = {364--373},
publisher = {Springer},
} % citation verified
@book{ShaweTaylor04:book,
author = {Shawe-Taylor, John and Cristianini, Nello},
title = {Kernel Methods for Pattern Analysis},
year = {2004},
publisher = {Cambridge University Press},
} % citation verified
@article{Sasena02,
author = {Sasena, Michael J. and Papalambros, Panos and Goovaerts, Pierre},
title = {Exploration of Metamodeling Sampling Criteria for Constrained Global Optimization},
journal = {Engineering Optimization},
volume = {34},
number = {3},
pages = {263--278},
year = {2002},
} % citation verified
@phdthesis{Miller97,
author = {Miller, Brad L.},
title = {Noise, sampling, and efficient genetic algorthms},
year = {1997},
school = {University of Illinois at Urbana-Champaign},
address = {Champaign, IL, USA},
} % citation verified
@INPROCEEDINGS{Ponweiser08,
author={Ponweiser, W. and Wagner, T. and Vincze, M.},
booktitle={Evolutionary Computation, 2008. CEC 2008. (IEEE World Congress on
Computational Intelligence). IEEE Congress on},
title={Clustered multiple generalized expected improvement: A novel infill
sampling criterion for surrogate models},
year={2008},
month={june},
pages={3515--3522},
} % citation verified
@INPROCEEDINGS{Ratle99,
author={Ratle, A.},
booktitle={Evolutionary Computation, 1999. CEC 99. Proceedings of the 1999 Congress on},
title={Optimal sampling strategies for learning a fitness model},
year={1999},
volume={3},
pages={2078--2085},
} % citation verified
@inbook{Herbrich00,
author = {Herbrich, Ralf and Graepel, Thore and Obermayer, Klaus},
booktitle = {Advances in Large Margin Classifiers},
citeulike-article-id = {5372764},
citeulike-linkout-0 = {http://research.microsoft.com/apps/pubs/default.aspx?id=65610},
day = {26},
keywords = {machine-learning, ordinal-regression, svm},
month = mar,
posted-at = {2009-08-05 15:33:05},
priority = {2},
publisher = {MIT Press},
chapter= {7},
title = {{Large Margin Rank Boundaries for Ordinal Regression}},
year = {2000}
} % citation verified
@inproceedings{Joachims02,
author = {Joachims, Thorsten},
title = {Optimizing search engines using clickthrough data},
booktitle = {Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining},
series = {KDD '02},
year = {2002},
location = {Edmonton, Alberta, Canada},
pages = {133--142},
publisher = {ACM},
} % citation verified
@book{alice,
title={Alice's Adventures in Wonderland},
author={Lewis Carroll},
year={1865},
publisher={Macmillan},
}
@book{lookingglass,
title={Through the Looking-Glass, and What Alice Found There },
author={Lewis Carroll},
year={1871},
publisher={Macmillan},
} % citation verified
@article{Jain99,
title={Deterministic job-shop scheduling: Past, present and future},
journal={European Journal of Operational Research},
volume={113},
number={2},
pages={390--434},
year={1999},
author={A.S. Jain and S. Meeran},
} % citation verified
@article {Haupt89,
author = {Haupt, R.},
affiliation = {Lehrstuhl für Personalwirtschaft Universität zu Köln Albertus-Magnus-Platz D-5000 Koln 41 Federal Republic of Germany},
title = {A survey of priority rule-based scheduling},
journal = {OR Spectrum},
publisher = {Springer},
keyword = {Business and Economics},
pages = {3--16},
volume = {11},
issue = {1},
year = {1989}
} % citation verified -- ref frá Anne Auger
@book{Pinedo08,
author = {Pinedo, Michael L.},
title = {Scheduling: Theory, Algorithms, and Systems},
year = {2008},
edition = {3},
publisher = {Springer},
} % citation verified -- scheduling book
@article{Demirkol98,
title={Benchmarks for shop scheduling problems},
journal={European Journal of Operational Research},
volume={109},
number={1},
pages={137--141},
year={1998},
author={Ebru Demirkol and Sanjay Mehta and Reha Uzsoy},
} % citation verified -- yamada benchmark
@article{ORlibrary,
author = {Beasley, J. E.},
journal = {Journal of the Operational Research Society},
keywords = {2006, benchmark-problem, operations-research, scheduling},
number = {11},
pages = {1069--1072},
title = {{OR-Library: distributing test problems by electronic mail}},
volume = {41},
year = {1990},
url = {http://people.brunel.ac.uk/~mastjjb/jeb/info.html}
} % citation verified -- OR library - benchmark functions in JSP
@article{orlib_swv,
title = {New Search Spaces for Sequencing Problems with Application to Job Shop Scheduling},
author = {Storer, Robert H. and Wu, S. David and Vaccari, Renzo},
journal = {Management Science},
volume = {38},
number = {10},
pages = {1495--1509},
year = {1992},
publisher = {INFORMS},
} % citation verified
@article{Holtsclaw96,
jstor_articletype = {research-article},
title = {Machine Criticality Measures and Subproblem Solution Procedures in Shifting Bottleneck Methods: A Computational Study},
author = {Holtsclaw, Harry H. and Uzsoy, Reha},
journal = {The Journal of the Operational Research Society},
volume = {47},
number = {5},
pages = {666--677},
year = {1996},
publisher = {Palgrave Macmillan Journals on behalf of the Operational Research Society},
} % citation verified
@article{Giffler60,
title = {Algorithms for Solving Production-Scheduling Problems},
author = {Giffler, B. and Thompson, G. L.},
journal = {Operations Research},
volume = {8},
number = {4},
pages = {487--503},
year = {1960},
publisher = {INFORMS},
} % citation verified -- game tree for jssp?
@article{Guinet1998,
title={Reduction of job-shop problems to flow-shop problems with precedence constraints},
journal={European Journal of Operational Research},
volume={109},
number={1},
pages={96--110},
year={1998},
author={Alain Guinet and Marie Legrand},
} % citation verified
@article{orlib_abz,
jstor_articletype = {research-article},
title = {The Shifting Bottleneck Procedure for Job Shop Scheduling},
author = {Adams, Joseph and Egon Balas and Zawack, Daniel},
journal = {Management Science},
jstor_issuetitle = {Focussed Issue on Heuristics},
volume = {34},
number = {3},
pages = {391--401},
year = {1988},
publisher = {INFORMS},
} % citation verified
@article{orlib_orb,
title = {A computational study of the job-shop scheduling instance},
author = {D. Applegate and W. Cook},
journal = {ORSA Journal on Computing},
volume = {3},
pages = {149--156},
year = {1991}
} % citation semi-verified
@techreport{orlib_la,
title = {Resource constrained project scheduling: an experimental investigation of heuristic scheduling techniques (Supplement)},
author = {S. Lawrence },
INSTITUTION = {Graduate School of Industrial Administration, Carnegie-Mellon University, Pittsburgh, Pennsylvania},
year = {1984}
} % citation semi-verified
@INBOOK{orlib_ft,
AUTHOR = {H. Fisher and G.L. Thompson },
BOOKTITLE = {Industrial scheduling},
pages = { 225--251 },
TITLE = {Probabilistic learning combinations of local job-shop scheduling rules},
PUBLISHER = {Prenice-Hall},
YEAR = {1963},
} % verified
@incollection {orlib_yn,
author = {T. Yamada and R. Nakano},
title = {A genetic algorithm applicable to large-scale job-shop instances},
booktitle = {Parallel Problem Solving from Nature - PPSN II},
publisher = {Elsevier},
pages = {281--290},
year = {1992}
} % citation semi-verified
@article{orlib_rec,
author = {C.R. Reeves},
title = {A genetic algorithm for flowshop sequencing},
journal = {Computer Operations Research},
volume= 22,
pages = {5--13},
year = {1995}
} % citation semi-verified
@incollection {orlib_hel,
author = {J. Heller },
title = {Some numerical experiments for an $M\times J$ flow shop and its decision-theoretical aspects,},
journal = {Operations Research},
volume = 8,
pages = {178--184},
year = {1960}
} % citation semi-verified
@incollection {orlib_car,
author = {J. Carlier},
title = {Ordonnancements a contraintes disjonctives},
journal = {R.A.I.R.O. Recherche operationelle/Operations Research},
volume = 12,
pages = {333--351},
year = {1978}
} % citation semi-verified
@article{jsspBESTsofar,
title = {Job Shop Scheduling with the Best-so-far ABC},
journal = {Engineering Applications of Artificial Intelligence},
volume = "25",
number = "3",
pages = "583--593",
year = "2012",
author = {Anan Banharnsakun and Booncharoen Sirinaovakul and Tiranee Achalakul},
} %citation verified
@article{Taillard1993,
author = {{\'E}. D. Taillard},
journal = {European Journal of Operational Research},
keywords = {benchmarks,combinatorial optimization,scheduling},
pages = {1--17},
title = {{Benchmarks for basic scheduling problems}},
year = {1993}
} %citation verified
@ARTICLE{Whitley,
author = {Jean-Paul Watson and Laura Barbulescu and L. Darrell Whitley and Adele E. Howe},
title = {Contrasting Structured and Random Permutation Flow-Shop Scheduling Problems: Search-Space Topology and Algorithm Performance},
journal = {INFORMS Journal on Computing},
year = {2002},
volume = {14},
pages = {98--123}
} %citation verified
@Article{Dudek92,
author = {R.A. Dudek and S.S. Panwalkar and M.L. Smith},
title = {The Lessons of Flowshop Scheduling Research},
journal = {Operations Research},
year = 1992,
volume = 40,
number = 1,
pages = {7--13}
}
@article{Ho2007,
author = {Ho, Nhu Binh and Tay, Joc Cing and Lai, Edmund M},
journal = {European Journal Of Operational Research},
pages = {316--333},
title = {{An effective architecture for learning and evolving flexible job-shop schedules}},
volume = {179},
year = {2007}
} %citation verified
@article{Gao2007,
author = {Gao, Jie and Gen, Mitsuo and Sun, Linyan and Zhao, Xiaohui},
title = {A Hybrid of Genetic Algorithm and Bottleneck Shifting for Multiobjective Flexible Job Shop Scheduling Problems},
journal = {Comput. Ind. Eng.},
issue_date = {August, 2007},
volume = {53},
number = {1},
month = aug,
year = {2007},
issn = {0360-8352},
pages = {149--162},
publisher = {Pergamon Press, Inc.},
keywords = {Bottleneck shifting, Flexible job shop scheduling problem, Genetic
algorithm, Neighborhood structure},
} %citation verified
@article{Drobouchevitch2000,
title = "Heuristics for the two-stage job shop scheduling problem with a bottleneck machine ",
journal = "European Journal of Operational Research ",
volume = "123",
number = "2",
pages = "229 - 240",
year = "2000",
issn = "0377-2217",
author = "I.G. Drobouchevitch and V.A. Strusevich",
keywords = "Job shop scheduling",
keywords = "Approximation algorithm",
keywords = "Worst-case analysis "
}%citation verified
%
%
%
%
%@article{Nguyen13,
author = {Nguyen, Su and Zhang, Mengjie and Johnston, Mark and Tan, Kay Chen},
journal = {The International Journal of Advanced Manufacturing Technology},
keywords = {dispatching,genetic programming,job shop},
month = feb,
title = {{Learning iterative dispatching rules for job shop scheduling with genetic programming}},
year = {2013}
}
@article{Lu13,
author = {Lu, M.-S. and Romanowski, R.},
journal = {The International Journal of Advanced Manufacturing Technology},
keywords = {dispatching,dynamic job arrival,job shop},
month = jan,
title = {{Multicontextual dispatching rules for job shops with dynamic job arrival}},
year = {2013}
}
@article{Chen13,
author = {Chen, Toly and Rajendran, Chandrasekharan and Wu, Chien-Wei},
journal = {The International Journal of Advanced Manufacturing Technology},
month = feb,
title = {{Advanced dispatching rules for large-scale manufacturing systems}},
year = {2013}
}
@article{Gomes01,
author = {Gomes, Carla P. and Selman, Bart},
journal = {Artificial Intelligence},
month = feb,
number = {1-2},
pages = {43--62},
title = {{Algorithm portfolios}},
volume = {126},
year = {2001}
}
@article{Xu07,
author = {Xu, Lin and Hutter, Frank and Hoos, HH and Leyton-Brown, K},
journal = {Principles and Practice of Constraint Programming},
title = {{SATzilla-07: The design and analysis of an algorithm portfolio for
SAT}},
year = {2007}
}
@article{Vilalta02,
author = {Vilalta, R and Drissi, Y},
journal = {Artificial Intelligence Review},
title = {{A perspective view and survey of meta-learning}},
year = {2002}
}
@article{Kalyanakrishnan11,
author = {Kalyanakrishnan, Shivaram and Stone, Peter},
journal = {Machine Learning},
month = jun,
number = {1-2},
pages = {205--247},
title = {{Characterizing reinforcement learning methods through parameterized learning problems}},
volume = {84},
year = {2011}
}
@article{Cheng96,
author = {Cheng, Runwei and Gen, Mitsuo and Tsujimura, Yasuhiro},
journal = {Computers \& Industrial Engineering},
number = {4},
pages = {983--997},
title = {{A tutorial survey of job-shop scheduling problems using genetic algorithms—I. Representation}},
volume = {30},
year = {1996}
}
@incollection{Koza05,
author = {Koza, John R. and Poli, Riccardo},
booktitle = {Introductory Tutorials in Optimization and Decision Support Techniques},
chapter = {5},
publisher = {Springer},
title = {{Genetic programming}},
year = {2005}
}
@article{Burke10,
author={Burke, E. K. and Gendreau, M. and Hyde, M. and Kendall, G. and Ochoa, G. and Ozcan, E. and Qu, R.},
title={Hyper-heuristics: a survey of the state of the art},
journal={Journal of the Operational Research Society},
year={2013},
publisher={Palgrave Macmillan},
volume={64},
number={12},
pages={1695--1724}
}
@article{Vazquez-Rodriguez09,
author = {V\'{a}zquez-Rodr\'{\i}guez, Jos\'{e} Antonio and Petrovic, Sanja},
journal = {Journal of Heuristics},
month = dec,
number = {6},
pages = {771--793},
title = {{A new dispatching rule based genetic algorithm for the multi-objective job shop problem}},
volume = {16},
year = {2009}
}
@article{Yu13,
author = {Yu, Jae-Min and Doh, Hyoung-Ho and Kim, Ji-Su and Kwon, Yong-Ju and Lee, Dong-Ho and Nam, Sung-Ho},
journal = {The International Journal of Advanced Manufacturing Technology},
keywords = {input,priority rules,reconfigurable manufacturing system,scheduling,sequencing,simulation},
month = jan,
title = {{Input sequencing and scheduling for a reconfigurable manufacturing system with a limited number of fixtures}},
year = {2013}
}
@article{Tsai07,
author = {Tsai, Jinn-Tsong and Liu, Tung-Kuan and Ho, Wen-Hsien and Chou, Jyh-Horng},
journal = {The International Journal of Advanced Manufacturing Technology},
month = aug,
number = {9-10},
pages = {987--994},
title = {{An improved genetic algorithm for job-shop scheduling problems using Taguchi-based crossover}},
volume = {38},
year = {2007}
}
@article{Korytkowski13,
author = {Korytkowski, Przemysław and Rymaszewski, Szymon and Wi\'{s}niewski, Tomasz},
journal = {The International Journal of Advanced Manufacturing Technology},
keywords = {ant colony optimization,discrete-event simulation,dispatching rules,multi-attribute},
month = feb,
title = {{Ant colony optimization for job shop scheduling using multi-attribute dispatching rules}},
year = {2013}
}
@article{Dhingra10,
author = {Dhingra, Ashwani and Chandna, Pankaj},
number = {5},
pages = {216--225},
title = {{A bi-criteria M-machine SDST flow shop scheduling using modified heuristic genetic algorithm}},
volume = {2},
journal = {International Journal of Engineering, Science and Technology},
year = {2010}
} % verified
@inbook{Monch13,
author = {M\"{o}nch, Lars and Fowler, John W. and Mason, Scott J.},
publisher = {Springer},
series = {Operations Research/Computer Science Interfaces Series},
chapter={4},
title = {{Production Planning and Control for Semiconductor Wafer Fabrication Facilities}},
volume = {52},
year = {2013}
}
@article{Ak12,
author = {Ak, Bilgesu and Koc, Erdem},
journal = {Procedia - Social and Behavioral Sciences},
keywords = {chromosome representation,crossover and mutation,flexible job shop problem,genetic algorithm,parallel machine scheduling},
month = oct,
pages = {817--823},
title = {{A Guide for Genetic Algorithm Based on Parallel Machine Scheduling and Flexible Job-Shop Scheduling}},
volume = {62},
year = {2012}
}
@article{Qing-dao-er-ji12,
author = {Qing-dao-er-ji, Ren and Wang, Yuping},
journal = {Computers \& Operations Research},
keywords = {Crossover operator,Genetic algorithm,Job shop scheduling problem,Local search,Mutation operator},
month = oct,
number = {10},
pages = {2291--2299},
publisher = {Elsevier},
title = {{A new hybrid genetic algorithm for job shop scheduling problem}},
volume = {39},
year = {2012}
}
@article{Cheng99,
author = {Cheng, Runwei and Gen, Mitsuo and Tsujimura, Yasuhiro},
journal = {Computers \& Industrial Engineering},
keywords = {combinatorial optimization problem,genetic algorithms,hybrid heuristics,job-shop scheduling},
month = apr,
number = {2},
pages = {343--364},
title = {{A tutorial survey of job-shop scheduling problems using genetic algorithms, part II: hybrid genetic search strategies}},
volume = {36},
year = {1999}
}
@article{Smith-Miles12,
author = {Smith-Miles, Kate and Tan, Thomas T.},
journal = {2012 IEEE Congress on Evolutionary Computation},
month = jun,
pages = {1--8},
publisher = {IEEE},
title = {{Measuring algorithm footprints in instance space}},
year = {2012}
}
@article{Yang13,
author = {Yang, Dar-Li and Cheng, T. C. E. and Kuo, Wen-Hung},
journal = {The International Journal of Advanced Manufacturing Technology},
keywords = {flowshop,scheduling,single machine},
month = jan,
title = {{Scheduling with a general learning effect}},
year = {2013}
}
@article{Meeran12,
title={A hybrid genetic tabu search algorithm for solving job shop scheduling problems: a case study},
author={Meeran, S and Morshed, MS},
journal={Journal of intelligent manufacturing},
volume={23},
number={4},
pages={1063--1078},
year={2012},
publisher={Springer}
}
@inproceedings{RossB10,
Author = {Stéphane Ross and Drew Bagnell},
Journal = {Journal of Machine Learning Research - Workshop and Conference
Proceedings},
Title = {Efficient Reductions for Imitation Learning},
Volume = {9},
Year = {2010},
Booktitle = {Proceedings of the Thirteenth International Conference on
Artificial Intelligence and Statistics},
Pages = {661-668}
} % citation verified
@inproceedings{RossGB11,
Publisher = {Journal of Machine Learning Research - Workshop and Conference Proceedings},
Author = {Stéphane Ross and Geoffrey J. Gordon and Drew Bagnell},
Booktitle = {Proceedings of the Fourteenth International Conference on
Artificial Intelligence and Statistics},
Title = {A Reduction of Imitation Learning and Structured Prediction to No-Regret Online Learning},
Volume = {15},
Year = {2011},
Pages = {627-635}
} % citation verified
@MISC{Ross12,
author = {Stéphane Ross and Narek Melik-barkhudarov and Kumar Shaurya Shankar
and Andreas Wendel and Debadeepta Dey and J. Andrew Bagnell and Martial
Hebert},
title = {Learning Monocular Reactive UAV Control in Cluttered Natural
Environments},
year = {2012}
}
@INPROCEEDINGS{Ross13,
author={Ross, S. and Melik-Barkhudarov, N. and Shankar, K.S. and Wendel, A.
and Dey, D. and Bagnell, J.A. and Hebert, M.},
booktitle={Robotics and Automation, 2013 IEEE Intl. Conference
on},
title={Learning monocular reactive UAV control in cluttered natural
environments},
year={2013},
month={May},
pages={1765-1772}
} % citation verified
@INPROCEEDINGS{Ross11,
author={Ross, S. and Munoz, D. and Hebert, M. and Bagnell, J.A.},
booktitle={Computer Vision and Pattern Recognition, 2011 IEEE
Conference on},
title={Learning message-passing inference machines for structured prediction},
year={2011},
pages={2737-2744},
month={June}
} % verified
@article{Brandimarte1993,
year={1993},
journal={Annals of Operations Research},
volume={41},
number={3},
title={Routing and scheduling in a flexible job shop by tabu search},
publisher={Baltzer Science Publishers, Baarn/Kluwer Academic Publishers},
author={Brandimarte, Paolo},
pages={157--183}
} % citation verified
@article{Xia2005,
title = "An effective hybrid optimization approach for multi-objective
flexible job-shop scheduling problems",
journal = "Computers \& Industrial Engineering",
volume = "48",
number = "2",
pages = "409--425",
year = "2005",
author = "Weijun Xia and Zhiming Wu"
} % citation verified
@article{Pezzella2008,
title = "A genetic algorithm for the Flexible Job-shop Scheduling Problem ",
journal = "Computers \& Operations Research",
volume = "35",
number = "10",
pages = "3202--3212",
year = "2008",