-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathreferences.bib
executable file
·1061 lines (939 loc) · 31.9 KB
/
references.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
@String{jlp = "Journal of Logic Programming"}
@String{jsat = "Journal on Satisfiability, Boolean Modeling and Computation"}
@String{spr = "Springer-Verlag"}
@String{spraddr = "Berlin, Germany"}
@String{lnai = "Lecture Notes in Artificial Intelligence" }
@String{lncs = "Lecture Notes in Computer Science" }
@String{mit = "The MIT Press"}
@String{mitaddr = "Cambridge, MA, USA"}
@String{tplp = "Theory and Practice of Logic Programming" }
@String{toplas = "ACM Trans\@. Program\@. Lang\@. Syst\@." }
@String{cacm = "Commun. ACM" }
@Book{GareyJohnson:79,
Author = "Michael R. Garey and David S. Johnson",
Title = "Computers and Intractability",
Year = 1979,
Publisher = "W. H. Freeman And Company",
Address = "New York, NY, USA"
}
@InProceedings{SchulteTack:CP:2009,
Crossref = "CP:2009",
Author = "Christian Schulte and Guido Tack",
Title = "Weakly Monotonic Propagators",
Pages = "723-730",
Note = "\publink{https://www.gecode.org/publications/2009-06-17-weakly-monotonic-propagators.html}"
}
@Book{Schulte:LNAI:2002,
Author = "Christian Schulte",
Title = "Programming Constraint Services",
Publisher = "Springer-Verlag",
Series = lnai,
Volume = "2302",
Year = 2002,
URL = "http://link.springer.de/link/service/series/0558/tocs/t2302.htm"
}
@article{DecoSearch,
author = {Laurent Michel and Pascal {Van Hentenryck}},
title = {A decomposition-based implementation of search strategies},
journal = "Transactions of Computational Logic",
volume = {5},
number = {2},
year = {2004},
pages = {351-383},
publisher = {ACM Press},
address = {New York, NY, USA},
}
@InProceedings{LagerkvistPesant:BPPC:2008,
Author = "Mikael Z. Lagerkvist and Gilles Pesant",
Title = "Modeling Irregular Shape Placement Problems with Regular Constraints",
Booktitle = "First Workshop on Bin Packing and Placement Constraints BPPC'08",
Year = 2008,
}
@TechReport{Ueda:1996,
author = {Nobuhisa Ueda and Tadaaki Nagao},
title = {{NP}-completeness results for NONOGRAM via parsimonious reductions},
institution = {Dept. of Computer Science, Tokyo Institute of Technology},
year = {1996},
number = {TR96-008},
}
@InProceedings{components,
author = {Chiu Wo Choi and Martin Henz and Ka Boon Ng},
title = {Components for State Restoration in Tree Search},
booktitle = {Proceedings of the Seventh International Conference on Principles
and Practice of Constraint Programming},
editor = {Toby Walsh},
year = {2001},
publisher = {Springer-Verlag},
series = lncs,
Pages = "240-255",
Volume = 2239,
address = "Paphos, Cyprus",
month = nov
}
@Book{Weiss:2004,
Author = "Mark Allen Weiss",
Title = "\CPP{} for Java Programmers",
Publisher = "Pearson Prentice Hall",
Year = 2004
}
@Book{LippmanLajoieMoo:2005,
Author = "Stanley B. Lippman and Josée Lajoie and Barbara E. Moo",
Title = "\CPP{} Primer",
Publisher = "Addison Wesley",
Year = 2013,
Edition = "Fifth"
}
@InProceedings{HarveyGinsberg:95,
crossref = "IJCAI:95",
author = "William D. Harvey and Matthew L. Ginsberg",
title = "Limited Discrepancy Search",
pages = "607-615",
}
@Book{IJCAI:95,
editor = "Chris S. Mellish",
title = "Fourteenth International Joint
Conference on Artificial Intelligence",
booktitle = "Fourteenth International Joint
Conference on Artificial Intelligence",
year = "1995",
address = "Montréal, Québec, Canada",
month = aug,
publisher = "Morgan Kaufmann Publishers",
}
@InCollection{bounds-consistency,
author = {Chiu Wo Choi and Warwick Harvey and Jimmy Ho-Man Lee and Peter J. Stuckey},
title = {Finite Domain Bounds Consistency Revisited},
volume = {4304},
year = 2006,
Pages = "49-58",
booktitle = "AI 2006: Advances in Artificial Intelligence",
series = lncs,
publisher = "Springer Verlag",
}
@inproceedings{DBLP:conf/cp/BeldiceanuC02,
author = {Nicolas Beldiceanu and
Mats Carlsson},
title = {A New Multi-resource cumulatives Constraint with Negative
Heights},
pages = {63-79},
crossref = "CP:2002",
}
@PhdThesis{Vilim:2007,
Author = "Petr Vilím",
Title = "Global Constraints in Scheduling",
Year = 2007,
School = "Charles University",
Address = "Prague, Czech Republic"
}
@inproceedings{Vilim:CP:2009,
author = {Petr Vil\'{\i}m},
title = {Edge Finding Filtering Algorithm for Discrete Cumulative
Resources in {$O(kn\log n)$}},
year = {2009},
pages = {802-816},
crossref = {CP:2009},
}
@inproceedings{Vilim:CPAIOR:2009,
author = {Petr Vil\'{\i}m},
title = {Max Energy Filtering Algorithm for Discrete Cumulative Resources},
year = {2009},
pages = {294-308},
crossref = {DBLP:conf/cpaior/2009},
}
@proceedings{DBLP:conf/cpaior/2009,
editor = {Willem Jan van Hoeve and
John N. Hooker},
title = {Sixth International Conference on the Integration of AI and OR Techniques in Constraint Programming
for Combinatorial Optimization Problems},
booktitle = {Sixth International Conference on the Integration of AI and OR Techniques in Constraint Programming
for Combinatorial Optimization Problems},
Address = "Pittsburgh, PA, USA",
Month = may,
publisher = {Springer-Verlag},
series = lncs,
volume = {5547},
year = {2009},
}
@InProceedings{ReischukSchulteEa:CP:2009,
Crossref = "CP:2009",
Author = "Raphael M. Reischuk and Christian Schulte and Peter J. Stuckey and Guido Tack",
Title = "Maintaining State in Propagation Solvers",
Pages = "692-706",
Note = "\publink{https://www.gecode.org/publications/2009-10-07-maintaining-state-in-propagation-solvers.html}"
}
@inproceedings{AFC,
author = {Fr{\'e}d{\'e}ric Boussemart and
Fred Hemery and
Christophe Lecoutre and
Lakhdar Sais},
title = {Boosting Systematic Search by Weighting Constraints},
year = {2004},
pages = {146-150},
crossref = {DBLP:conf/ecai/2004},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@proceedings{DBLP:conf/ecai/2004,
editor = {Ramon L{\'o}pez de M{\'a}ntaras and
Lorenza Saitta},
title = {Sixteenth European Conference on Artificial
Intelligence},
booktitle = {Sixteenth European Conference on Artificial
Intelligence},
address = {Valencia, Spain},
month = aug,
publisher = {IOS Press},
year = {2004},
isbn = {1-58603-452-9},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@article{DBLP:journals/constraints/HoevePRS09,
author = {Willem Jan van Hoeve and
Gilles Pesant and
Louis-Martin Rousseau and
Ashish Sabharwal},
title = {New filtering algorithms for combinations of among constraints},
journal = {Constraints},
volume = {14},
number = {2},
year = {2009},
pages = {273-292},
ee = {http://dx.doi.org/10.1007/s10601-008-9067-7},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{DBLP:conf/aaai/Regin96,
author = {Jean-Charles R{\'e}gin},
title = {Generalized Arc Consistency for Global Cardinality Constraint},
booktitle = {AAAI/IAAI, Vol. 1},
year = {1996},
pages = {209-215},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@article{GlobalConstraintCatalog,
author = {Beldiceanu, Nicolas and Carlsson, Mats and Demassey, Sophie and Petit, Thierry},
title = {Global Constraint Catalogue: Past, Present and Future},
journal = {Constraints},
volume = {12},
number = {1},
year = {2007},
pages = {21-62},
}
@PhDThesis{Tack:PhD:2009,
Author = "Guido Tack",
Title = "Constraint Propagation - Models, Techniques, Implementation",
Type = "Doctoral dissertation",
School = "Saarland University, Germany",
Year = 2009,
note = "\publink{https://www.gecode.org/publications/2009-02-24-constraint-propagation---models--techniques--implementation.html}"
}
@InCollection{SchulteCarlsson:CPH:2006,
Author = "Christian Schulte and Mats Carlsson",
Title = "Finite Domain Constraint Programming Systems",
Chapter = 14,
Pages = "495-526",
Crossref = "CPH:2006"
}
@InCollection{vanBeek:CPH:2006,
Author = "Peter {van Beek}",
Title = "Backtracking Search Algorithms",
Chapter = 4,
Pages = "85-134",
Crossref = "CPH:2006"
}
@Book{CPH:2006,
Editor = "Francesca Rossi and Peter {van Beek} and Toby Walsh",
Title = "Handbook of Constraint Programming",
Booktitle = "Handbook of Constraint Programming",
Year = 2006,
Address = "Amsterdam, The Netherlands",
Publisher = "Elsevier Science Publishers",
Series = "Foundations of Artificial Intelligence",
}
@Article{SchulteStuckey:TOPLAS:2008,
Author = "Christian Schulte and Peter J. Stuckey",
Title = "Efficient Constraint Propagation Engines",
Journal = "Transactions on Programming Languages and Systems",
Year = 2008,
Month = dec,
Publisher = "ACM Press",
Volume = "31",
Number = "1",
Pages = "2:1-2:43",
DOI = "10.1145/1452044.1452046",
note = "\publink{https://www.gecode.org/publications/2009-02-23-efficient-constraint-propagation-engines.html}"
}
@inproceedings{chaff,
author = {Matthew W. Moskewicz and
Conor F. Madigan and
Ying Zhao and
Lintao Zhang and
Sharad Malik},
title = {{Chaff}: Engineering an Efficient {SAT} Solver},
pages = {530-535},
crossref = {DBLP:conf/dac/2001},
}
@proceedings{DBLP:conf/dac/2001,
title = {Proceedings of the 38th Design Automation Conference, DAC
2001},
booktitle = {Proceedings of the 38th Design Automation Conference, DAC
2001},
address = "Las Vegas, NV, USA",
publisher = {ACM},
year = {2001},
}
@Article{SchulteStuckey:TOPLAS:2005,
Author = "Christian Schulte and Peter J. Stuckey",
Title = "When Do Bounds and Domain Propagation Lead to the Same Search Space?",
Journal = "Transactions on Programming Languages and Systems",
Year = 2005,
Month = may,
Publisher = "ACM Press",
Volume = "27",
Number = "3",
Pages = "388-425",
}
@InProceedings{LagerkvistSchulte:CP:2007,
Author = "Mikael Z. Lagerkvist and Christian Schulte",
Title = "Advisors for Incremental Propagation",
Editor = "Christian Bessière",
Booktitle = "Thirteenth International Conference on Principles and Practice of Constraint Programming",
Year = 2007,
Month = sep,
Address = "Providence, RI, USA",
Publisher = "Springer-Verlag",
Series = lncs,
Volume = "4741",
Pages = "409-422",
DOI = "10.1007/978-3-540-74970-7_30",
Note = "\publink{https://www.gecode.org/publications/2007-07-04-advisors-for-incremental-propagation.html}"
}
@phdthesis{Gervet:1995:0:Finite,
Address = {Besan\c{c}on, France},
Author = {Carmen Gervet},
Date-Modified = {2008-10-23 10:03:39 +0200},
School = {L'Universit{\'e} de Franche-Comt{\'e}},
Title = {Finite Set Constraints},
Year = {1995}
}
@InProceedings{SchulteTack:Advances:2006,
Author = "Christian Schulte and Guido Tack",
Title = "Views and Iterators for Generic Constraint Implementations",
Booktitle = "Recent Advances in Constraints (2005)",
Year = 2006,
Publisher = "Springer-Verlag",
Series = lncs,
Volume = "3978",
Pages = "118-132",
Note = "\publink{https://www.gecode.org/publications/2006-09-08-views-and-iterators-for-generic-constraint-implementations.html}"
}
@Article{SchulteTack:Constraints:2013,
Author = "Christian Schulte and Guido Tack",
Title = "View-based Propagator Derivation",
Journal = "Constraints",
Year = 2013,
Month = jan,
Publisher = "Springer-Verlag",
Volume = "18",
Number = "1",
Pages = "75-107",
DOI = "10.1007/s10601-012-9133-z",
URL = "http://www.ict.kth.se/~cschulte/paper.php?id=SchulteTack:Constraints:2013"
}
@Article{SchulteTack:CCoR:2009,
Author = "Christian Schulte and Guido Tack",
Title = "View-based Propagator Derivation",
Year = 2013,
Journal = "Constraints",
Publisher = "Springer-Verlag",
Note = "\publink{https://www.gecode.org/publications/2012-12-01-view-based-propagator-derivation.html}"
}
@InProceedings{Pesant:CP:2004,
Crossref = "CP:2004",
Author = "Gilles Pesant",
Title = "A Regular Language Membership Constraint for Finite Sequences of Variables",
Pages = "482-495",
}
@InProceedings{SchulteStuckey:CP:2004,
Crossref = "CP:2004",
Author = "Christian Schulte and Peter J. Stuckey",
Title = "Speeding Up Constraint Propagation",
Pages = "619-633",
}
@InProceedings{Shaw:CP:2004,
Crossref = "CP:2004",
Author = "Paul Shaw",
Title = "A Constraint for {Bin Packing}",
Pages = "648-662",
}
@inproceedings{CDBF,
author = {Ian P. Gent and
Toby Walsh},
title = {From Approximate to Optimal Solutions: Constructing Pruning
and Propagation Rules},
booktitle = {IJCAI},
year = {1997},
pages = {1396-1401},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings {Regin94,
author = "Jean-Charles Régin",
title = "A filtering algorithm for constraints of difference
in {CSP}s",
booktitle = "Proceedings of the Twelfth National Conference on
Artificial Intelligence",
volume = 1,
pages = "362-367",
year = "1994",
address = "Seattle, WA, USA",
publisher = "AAAI Press"
}
@misc{Warnsdorff,
Author = "H.C. von Warnsdorff",
Title = "{Des Rösselsprungs einfachste und allgemeinste Lösung}",
Note = "Schmalkalden, Germany",
Year = 1823
}
@Book{OPL:1999,
Author = {Pascal {Van Hentenryck}},
Title = "The {OPL} Optimization Programming Language",
Year = 1999,
Publisher = mit,
Address = mitaddr,
}
@TechReport{Golomb,
Author = "Barbara M. Smith and Kostas Stergiou and Toby Walsh",
Title = "Modelling the Golomb Ruler Problem",
Year = 1999,
Month = jun,
Institution = "University of Leeds",
Number = "1999.12",
Address = "Leeds, UK",
Type = "School of Computer Studies Research Report"
}
@article{Barnier:2005:KirkmansSchoolgirlProblem,
author = {Barnier, Nicolas and Brisset, Pascal},
title = {Solving {Kirkman}'s Schoolgirl Problem in a Few Seconds},
journal = {Constraints},
volume = {10},
number = {1},
year = {2005},
issn = {1383-7133},
pages = {7-21},
}
@inproceedings{DBLP:conf/cp/AnbulaganB08,
author = {Anbulagan and
Adi Botea},
title = {Crossword Puzzles as a Constraint Problem},
pages = {550-554},
crossref = {CP:2008},
}
@inproceedings{DBLP:conf/ai/BeachamCSB01,
author = {Adam Beacham and
Xinguang Chen and
Jonathan Sillito and
Peter van Beek},
title = {Constraint Programming Lessons Learned from Crossword Puzzles},
booktitle = {Canadian Conference on AI},
year = {2001},
pages = {78-87},
ee = {http://link.springer.de/link/service/series/0558/bibs/2056/20560078.htm},
crossref = {DBLP:conf/ai/2001},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@proceedings{DBLP:conf/ai/2001,
editor = {Eleni Stroulia and
Stan Matwin},
title = {Advances in Artificial Intelligence, 14th Biennial Conference
of the Canadian Society for Computational Studies of Intelligence,
AI 2001, Ottawa, Canada, June 7-9, 2001, Proceedings},
booktitle = {Canadian Conference on AI},
publisher = {Springer},
series = lncs,
volume = {2056},
year = {2001},
isbn = {3-540-42144-0},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{DBLP:conf/aaai/GinsbergFHT90,
author = {Matthew L. Ginsberg and
Michael Frank and
Michael P. Halpin and
Mark C. Torrance},
title = {Search Lessons Learned from Crossword Puzzles},
booktitle = {AAAI},
year = {1990},
pages = {210-215},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{HelmutKakuro,
Author = "Helmut Simonis",
Title = "Kakuro as a Constraint Problem",
Booktitle = "Workshop on Modeling and Reformulation",
Month = sep,
Year = 2008
}
@book{Hentenryck:1989:0:Constraint,
Address = mitaddr,
Author = {Pascal {Van Hentenryck}},
Publisher = mit,
Title = {Constraint satisfaction in logic programming},
Year = {1989}}
@InProceedings{Schulte:ICLP:99,
crossref = "ICLP:99",
author = "Christian Schulte",
title = "Comparing Trailing and Copying for Constraint
Programming",
pages = "275-289"
}
@InProceedings{Precede,
crossref = "CP:2004",
author = "Yat Chiu Law and Jimmy H.M. Lee",
title = "Global Constraints for Integer and Set Value Precedence",
pages = "362-376"
}
@Book{ICLP:99,
editor = "Danny {De Schreye}",
booktitle = "Proceedings of the 1999 International Conference
on Logic Programming",
title = "Proceedings of the 1999 International Conference
on Logic Programming",
year = "1999",
month = nov,
publisher = mit,
address = "Las Cruces, NM, USA"
}
@proceedings{CP:2002,
Editor = {Pascal {Van Hentenryck}},
Title = "Eigth International Conference on Principles and Practice of Constraint Programming",
Booktitle = "Eigth International Conference on Principles and Practice of Constraint Programming",
publisher = {Springer-Verlag},
series = lncs,
volume = {2470},
year = {2002},
month = sep,
Address = "Ithaca, NY, USA"
}
@Proceedings{CP:2009,
Editor = "Ian Gent",
Title = "Fifteenth International Conference on Principles and Practice of Constraint Programming",
Booktitle = "Fifteenth International Conference on Principles and Practice of Constraint Programming",
Year = 2009,
Month = sep,
Address = "Lisbon, Portugal",
Publisher = "Springer-Verlag",
Series = lncs,
Volume = "5732",
}
@proceedings{CP:2008,
editor = {Peter J. Stuckey},
Booktitle = "Fourteenth International Conference on Principles and Practice of Constraint Programming",
Title = "Fourteenth International Conference on Principles and Practice of Constraint Programming",
publisher = {Springer-Verlag},
address = "Sydney, Australia",
month = sep,
series = {Lecture Notes in Computer Science},
volume = {5202},
year = {2008},
}
@Book{CP:2004,
Editor = "Mark Wallace",
Booktitle = "Tenth International Conference on Principles and Practice of Constraint Programming",
Title = "Tenth International Conference on Principles and Practice of Constraint Programming",
Year = 2004,
Month = sep,
Address = "Toronto, Canada",
Publisher = spr,
Series = lncs,
Volume = 3258,
}
@inproceedings{gccbnd,
author = {Claude-Guy Quimper and
Peter van Beek and
Alejandro L{\'o}pez-Ortiz and
Alexander Golynski and
Sayyed Bashir Sadjad},
title = {An Efficient Bounds Consistency Algorithm for the Global
Cardinality Constraint},
pages = {600-614},
crossref = {CP:2003},
}
@proceedings{CP:2003,
editor = {Francesca Rossi},
title = {Ninth International Conference on Principles and Practice of Constraint Programming},
booktitle = {Ninth International Conference on Principles and Practice of Constraint Programming},
publisher = {Springer-Verlag},
series = {Lecture Notes in Computer Science},
volume = {2833},
year = {2003},
address = "Kinsale, Ireland",
month = sep
}
@inproceedings{distinctbnd,
author = {Alejandro L{\'o}pez-Ortiz and
Claude-Guy Quimper and
John Tromp and
Peter van Beek},
title = {A Fast and Simple Algorithm for Bounds Consistency of the
AllDifferent Constraint},
pages = {245-250},
crossref = {IJCAI:2003},
}
@proceedings{IJCAI:2003,
editor = {Georg Gottlob and
Toby Walsh},
title = {Eighteenth International Joint
Conference on Artificial Intelligence},
booktitle = {Eighteenth International Joint
Conference on Artificial Intelligence},
address = "Acapulco, Mexico",
month = aug,
publisher = {Morgan Kaufmann},
year = {2003},
}
@article{gac2001,
author = {Christian Bessi{\`e}re and
Jean-Charles R{\'e}gin and
Roland H. C. Yap and
Yuanlin Zhang},
title = {An optimal coarse-grained arc consistency algorithm},
journal = {Artificial Intelligence},
volume = {165},
number = {2},
year = {2005},
pages = {165-185},
ee = {http://dx.doi.org/10.1016/j.artint.2005.02.004},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{gacschema,
author = {Christian Bessi{\`e}re and
Jean-Charles R{\'e}gin},
title = {Arc Consistency for General Constraint Networks: Preliminary
Results},
booktitle = {IJCAI (1)},
year = {1997},
pages = {398-404},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{MehlhornThiel:CP:2000,
Crossref = "CP:00",
Author = "Kurt Mehlhorn and Sven Thiel",
Title = "Faster Algorithms for Bound-Consistency of the
Sortedness and the Alldifferent Constraint",
Pages = "306-319"
}
@Book{CP:00,
editor = "Rina Dechter",
booktitle = "Proceedings of the Sixth International Conference on
Principles and Practice of Constraint Programming",
title = "Proceedings of the Sixth International Conference on
Principles and Practice of Constraint Programming",
series = lncs,
volume = "1894",
address = "Singapore",
year = "2000",
month = sep,
publisher = spr,
}
@Article{BISON:1997,
Author = "Armin Scholl and Robert Klein and Christian Jürgens",
Title = "{BISON}: a fast hybrid procedure for exactly solving the one-dimensional bin packing problem",
journal = {Computers {\&} Operations Research},
volume = {24},
number = {7},
year = {1997},
pages = {627-645},
}
@Article{MartelloToth:1990,
author = {Silvano Martello and
Paolo Toth},
title = {Lower bounds and reduction procedures for the bin packing
problem},
journal = {Discrete Applied Mathematics},
volume = {28},
number = {1},
year = {1990},
pages = {59-70},
}
@article{nvalue,
author = {Christian Bessiere and Emanuel Hebrard and Brahim Hnich and Zeynep Kiziltan and Toby Walsh},
title = {Filtering Algorithms for the {NValue} Constraint},
journal = {Constraints},
volume = {11},
number = {4},
year = {2006},
pages = {271-293},
}
@inproceedings{activity,
author = {Laurent Michel and
Pascal {Van Hentenryck}},
title = {Activity-Based Search for Black-Box Constraint Programming
Solvers},
year = {2012},
pages = {228-243},
crossref = {DBLP:conf/cpaior/2012},
}
@proceedings{DBLP:conf/cpaior/2012,
editor = {Nicolas Beldiceanu and
Narendra Jussien and
Eric Pinson},
title = {Integration of {AI} and {OR} Techniques in Constraint Programming
for Combinatorial Optimzation Problems (CPAIOR)},
booktitle = {{CPAIOR}},
Address = "Nantes, France",
month = may,
publisher = {Springer},
series = {Lecture Notes in Computer Science},
volume = {7298},
year = {2012},
}
@InProceedings{HalfReify,
Crossref = "CP:2011",
Author = "Thibaut Feydy and Zoltan Somogyi and Peter J. Stuckey",
Title = "Half Reification and Flattening",
Pages = "286-301"
}
@Book{CP:2011,
editor = "Jimmy Lee",
booktitle = "Proceedings of the Seventeenth International Conference on
Principles and Practice of Constraint Programming",
title = "Proceedings of the Seventeenth International Conference on
Principles and Practice of Constraint Programming",
series = lncs,
volume = "6876",
address = "Perugia, Italy",
year = "2011",
month = sep,
publisher = spr,
}
@inproceedings{GualandiLombardi:2013,
crossref = {CP:2013},
author = {Stefano Gualandi and
Michele Lombardi},
title = {A Simple and Effective Decomposition for the Multidimensional
Binpacking Constraint},
pages = {356-364},
}
@proceedings{CP:2013,
editor = {Christian Schulte},
booktitle = {Proceedings of the Nineteenth International Conference on
Principles and Practice of Constraint Programming},
title = {Proceedings of the Nineteenth International Conference on
Principles and Practice of Constraint Programming},
series = lncs,
address = "Uppsala, Sweden",
publisher = spr,
volume = {8124},
year = {2013},
month = sep
}
@Book{Moore:1966,
Author = "Ramon E. Moore",
Title = "Interval Analysis",
Year = 1966,
publisher = "Prentice-Hall",
address = "Englewood Cliff, NJ, USA"
}
@Article{Luby,
Author = "Michael Luby and Alistair Sinclair and David Zuckerman",
Title = "Optimal speedup of {Las Vegas} algorithms",
Journal = "Information Processing Letters",
Pages = "173-180",
Year = 1993,
Volume = 47
}
@InProceedings{LDSB,
Author = {Christopher Mears and Maria Garcia de la Banda and Bart Demoen and Mark Wallace},
Title = {Lightweight Dynamic Symmetry Breaking},
booktitle = {Eighth International Workshop on Symmetry in Constraint Satisfaction Problems, SymCon'08},
year = {2008},
Note = "\publink{http://www.aloul.net/symcon/Mears2-Symcon08.pdf}"
}
@article{NogoodsRestarts,
author = {Christophe Lecoutre and
Lakhdar Sais and
S{\'e}bastien Tabary and
Vincent Vidal},
title = {Recording and Minimizing Nogoods from Restarts},
journal = jsat,
volume = {1},
number = {3-4},
year = {2007},
pages = {147-167},
}
@inproceedings{gnogoods,
author = {George Katsirelos and
Fahiem Bacchus},
title = {Generalized NoGoods in CSPs},
booktitle = {AAAI},
year = {2005},
pages = {390-396},
ee = {http://www.aaai.org/Library/AAAI/2005/aaai05-062.php},
crossref = {DBLP:conf/aaai/2005},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@proceedings{DBLP:conf/aaai/2005,
editor = {Manuela M. Veloso and
Subbarao Kambhampati},
title = {AAAI},
address = "Pittsburgh, PA, USA",
publisher = {AAAI Press},
year = {2005},
}
@Article{BronKerbosch:1973,
author = "Bron, Coen and Kerbosch, Joep",
year = 1973,
title = "Algorithm 457: finding all cliques of an undirected graph",
journal = cacm,
volume = 16,
issue = 9,
month = sep,
pages = "575-577",
publisher = "ACM"
}
@Article{CazalsKarande:2008,
author = "F[rédéric] Cazals and C[hinmay] Karande",
title = "A note on the problem of reporting maximal cliques",
journal = "Theoretical Computer Science",
publisher = "Elsevier",
volume = 407,
issue = "1-3",
pages = "564-568",
year = 2008,
month = nov
}
@inproceedings{LNS,
crossref = "CP:1998",
author = {Paul Shaw},
title = {Using Constraint Programming and Local Search Methods to Solve Vehicle
Routing Problems},
pages = {417--431},
}
@proceedings{CP:1998,
editor = {Michael J. Maher and
Jean{-}Francois Puget},
title = {Forth International Conference on Principles and Practice of Constraint Programming},
booktitle = {Forth International Conference on Principles and Practice of Constraint Programming},
address = "Pisa, Italy",
series = lncs,
year = {1998},
volume = {1520},
publisher = spr,
}
@Book{CBS,
title = "Constraint-Based Scheduling",
author = "Philippe Baptiste and Claude {Le Pape} and Wim Nuijten",
series = "International Series in Operations Research \& Management Science",
year = 2001,
publisher = spr
}
@article{portfolios,
author = {Carla P. Gomes and Bart Selman},
title = {Algorithm portfolios},
journal = {Artificial Intelligence},
volume = {126},
number = {1-2},
pages = {43--62},
year = {2001},
}
@inproceedings{chb,
crossref = "AAAI:2016",
author = {Jia Hui Liang and
Vijay Ganesh and
Pascal Poupart and
Krzysztof Czarnecki},
title = {Exponential Recency Weighted Average Branching Heuristic for {SAT}
Solvers},
pages = {3434--3440},
}
@proceedings{AAAI:2016,
editor = {Dale Schuurmans and
Michael P. Wellman},
title = {Thirtieth {AAAI} Conference on Artificial Intelligence},
booktitle = {Thirtieth {AAAI} Conference on Artificial Intelligence},
publisher = {{AAAI} Press},
year = {2016},
}
@inproceedings{minisat,
crossref = "SAT:2005",
author = {Niklas E{\'{e}}n and
Niklas S{\"{o}}rensson},
title = {An Extensible {SAT}-solver},
pages = {502--518},
}
@proceedings{SAT:2005,
editor = {Enrico Giunchiglia and
Armando Tacchella},
title = {Theory and Applications of Satisfiability Testing},
booktitle = {Theory and Applications of Satisfiability Testing},
series = lncs,
volume = {2919},
publisher = spr,
year = {2004},
}
@inproceedings{compact-table,
author = {Jordan Demeulenaere and
Renaud Hartert and
Christophe Lecoutre and
Guillaume Perez and
Laurent Perron and
Jean{-}Charles R{\'{e}}gin and
Pierre Schaus},
title = {Compact-Table: Efficiently Filtering Table Constraints with Reversible
Sparse Bit-Sets},
pages = {207--223},
crossref = {CP:2016},
}