-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprocs.bib
4645 lines (4115 loc) · 185 KB
/
procs.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
@proceedings{aaai00,
title = {Proceedings of the Seventeenth National Conference on Artificial Intelligence (AAAI'00)},
editor = {H. Kautz and B. Porter},
booktitle = {Proceedings of the Seventeenth National Conference on Artificial Intelligence (AAAI'00)},
publisher = aaaimit,
year = {2000}
}
@proceedings{aaai02,
title = {Proceedings of the Eighteenth National Conference on Artificial Intelligence (AAAI'02)},
editor = {R. Dechter and M. Kearns and R. Sutton},
booktitle = {Proceedings of the Eighteenth National Conference on Artificial Intelligence (AAAI'02)},
publisher = {{AAAI} Press},
year = {2002}
}
@proceedings{aaai04,
title = {Proceedings of the Nineteenth National Conference on Artificial Intelligence (AAAI'04)},
editor = {D. McGuinness and G. Ferguson},
booktitle = {Proceedings of the Nineteenth National Conference on Artificial Intelligence (AAAI'04)},
publisher = {{AAAI} Press},
year = {2004}
}
@proceedings{aaai05,
title = {Proceedings of the Twentieth National Conference on Artificial Intelligence (AAAI'05)},
editor = {M. Veloso and S. Kambhampati},
booktitle = {Proceedings of the Twentieth National Conference on Artificial Intelligence (AAAI'05)},
publisher = {{AAAI} Press},
year = {2005}
}
@proceedings{aaai06,
title = {Proceedings of the Twenty-first National Conference on Artificial Intelligence (AAAI'06)},
editor = {Y. Gil and R. Mooney},
booktitle = {Proceedings of the Twenty-first National Conference on Artificial Intelligence (AAAI'06)},
publisher = {{AAAI} Press},
year = {2006}
}
@proceedings{aaai07,
title = {Proceedings of the Twenty-second National Conference on Artificial Intelligence (AAAI'07)},
booktitle = {Proceedings of the Twenty-second National Conference on Artificial Intelligence (AAAI'07)},
publisher = {{AAAI} Press},
year = {2007}
}
@proceedings{aaai08,
title = {Proceedings of the Twenty-third National Conference on Artificial Intelligence (AAAI'08)},
editor = {D. Fox and C. Gomes},
booktitle = {Proceedings of the Twenty-third National Conference on Artificial Intelligence (AAAI'08)},
publisher = {{AAAI} Press},
year = {2008}
}
@proceedings{aaai10,
title = {Proceedings of the Twenty-fourth National Conference on Artificial Intelligence (AAAI'10)},
editor = {M. Fox and D. Poole},
booktitle = {Proceedings of the Twenty-fourth National Conference on Artificial Intelligence (AAAI'10)},
publisher = {{AAAI} Press},
year = {2010}
}
@proceedings{aaai11,
title = {Proceedings of the Twenty-fifth National Conference on Artificial Intelligence (AAAI'11)},
editor = {W. Burgard and D. Roth},
booktitle = {Proceedings of the Twenty-fifth National Conference on Artificial Intelligence (AAAI'11)},
publisher = {{AAAI} Press},
year = {2011}
}
@proceedings{aaai12,
title = {Proceedings of the Twenty-sixth National Conference on Artificial Intelligence (AAAI'12)},
editor = {J. Hoffmann and B. Selman},
booktitle = {Proceedings of the Twenty-sixth National Conference on Artificial Intelligence (AAAI'12)},
publisher = {{AAAI} Press},
year = {2012}
}
@proceedings{aaai13,
title = {Proceedings of the Twenty-seventh National Conference on Artificial Intelligence (AAAI'13)},
editor = {M. {desJardins} and M. Littman},
booktitle = {Proceedings of the Twenty-seventh National Conference on Artificial Intelligence (AAAI'13)},
publisher = {{AAAI} Press},
year = {2013}
}
@proceedings{aaai14,
title = {Proceedings of the Twenty-eighth National Conference on Artificial Intelligence (AAAI'14)},
editor = {C. Brodley and P. Stone},
booktitle = {Proceedings of the Twenty-eighth National Conference on Artificial Intelligence (AAAI'14)},
publisher = {{AAAI} Press},
year = {2014}
}
@proceedings{aaai15,
title = {Proceedings of the Twenty-ninth National Conference on Artificial Intelligence (AAAI'15)},
editor = {B. Bonet and S. Koenig},
booktitle = {Proceedings of the Twenty-ninth National Conference on Artificial Intelligence (AAAI'15)},
publisher = {{AAAI} Press},
year = {2015}
}
@proceedings{aaai16,
title = {Proceedings of the Thirtieth National Conference on Artificial Intelligence (AAAI'16)},
editor = {D. Schuurmans and M. Wellman},
booktitle = {Proceedings of the Thirtieth National Conference on Artificial Intelligence (AAAI'16)},
publisher = {{AAAI} Press},
year = {2016}
}
@proceedings{aaai17,
title = {Proceedings of the Thirty-first National Conference on Artificial Intelligence (AAAI'17)},
editor = {S. Singh and S. Markovitch},
booktitle = {Proceedings of the Thirty-first National Conference on Artificial Intelligence (AAAI'17)},
publisher = {{AAAI} Press},
year = {2017}
}
@proceedings{aaai19,
title = {Proceedings of the Thirty-third National Conference on Artificial Intelligence (AAAI'19)},
editor = {P. {V}an Hentenryck and Z. Zhou},
booktitle = {Proceedings of the Thirty-third National Conference on Artificial Intelligence (AAAI'19)},
publisher = {{AAAI} Press},
year = {2019}
}
@proceedings{aaai20,
title = {Proceedings of the Thirty-fourth National Conference on Artificial Intelligence (AAAI'20)},
booktitle = {Proceedings of the Thirty-fourth National Conference on Artificial Intelligence (AAAI'20)},
publisher = {{AAAI} Press},
year = {2020}
}
@proceedings{aaai21,
title = {Proceedings of the Thirty-fifth National Conference on Artificial Intelligence (AAAI'21)},
booktitle = {Proceedings of the Thirty-fifth National Conference on Artificial Intelligence (AAAI'21)},
publisher = {{AAAI} Press},
year = {2021}
}
@proceedings{aaai22,
title = {Proceedings of the Thirty-sixth National Conference on Artificial Intelligence (AAAI'22)},
editor = {K. Sycara and V. Honavar and M. Spaan},
booktitle = {Proceedings of the Thirty-sixth National Conference on Artificial Intelligence (AAAI'22)},
publisher = {{AAAI} Press},
url = {https://ojs.aaai.org/index.php/AAAI/issue/view/507},
year = {2022}
}
@proceedings{aaai23,
title = {Proceedings of the Thirty-seventh National Conference on Artificial Intelligence (AAAI'23)},
editor = {B. Williams and Y. Chen and J. Neville},
booktitle = {Proceedings of the Thirty-seventh National Conference on Artificial Intelligence (AAAI'23)},
publisher = {{AAAI} Press},
year = {2023}
}
@proceedings{aaai24,
title = {Proceedings of the Thirty-eighth National Conference on Artificial Intelligence (AAAI'24)},
editor = {M. Wooldridge and J. Dy and S. Natarajan},
booktitle = {Proceedings of the Thirty-eighth National Conference on Artificial Intelligence (AAAI'24)},
publisher = {{AAAI} Press},
year = {2024}
}
@proceedings{aaai25,
title = {Proceedings of the Thirty-nineth National Conference on Artificial Intelligence (AAAI'25)},
editor = {T. Walsh and J. Shah and Z. Kolter},
booktitle = {Proceedings of the Thirty-eighth National Conference on Artificial Intelligence (AAAI'25)},
publisher = {{AAAI} Press},
year = {2025}
}
@proceedings{aaai87,
title = {Proceedings of the Sixth National Conference on Artificial Intelligence (AAAI'87)},
editor = {K. Forbus and H. Shrobe},
booktitle = {Proceedings of the Sixth National Conference on Artificial Intelligence (AAAI'87)},
publisher = m-k,
year = {1987}
}
@proceedings{aaai88,
title = {Proceedings of the Seventh National Conference on Artificial Intelligence (AAAI'88)},
editor = {H. Shrobe and T. Mitchell and R. Smith},
booktitle = {Proceedings of the Seventh National Conference on Artificial Intelligence (AAAI'88)},
publisher = {{AAAI} Press / The {MIT} Press},
year = {1988}
}
@proceedings{aaai90,
title = {Proceedings of the Eighth National Conference on Artificial Intelligence (AAAI'90)},
editor = {H. Shrobe and T. Dietterich and W. Swartout},
booktitle = {Proceedings of the Eighth National Conference on Artificial Intelligence (AAAI'90)},
publisher = {{AAAI} Press},
year = {1990}
}
@proceedings{aaai91,
title = {Proceedings of the Ninth National Conference on Artificial Intelligence (AAAI'91)},
editor = {T. Dean and K. McKeown},
booktitle = {Proceedings of the Nineth National Conference on Artificial Intelligence (AAAI'91)},
publisher = {{AAAI} Press},
year = {1991}
}
@proceedings{aaai94,
title = {Proceedings of the Twelfth National Conference on Artificial Intelligence (AAAI'94)},
editor = {B. Hayes-Roth and R. Korf},
booktitle = {Proceedings of the Twelfth National Conference on Artificial Intelligence (AAAI'94)},
publisher = {{AAAI} Press},
year = {1994}
}
@proceedings{aaai96,
title = {Proceedings of the Thirteenth National Conference on Artificial Intelligence (AAAI'96)},
editor = {W. Clancey and D. Weld},
booktitle = {Proceedings of the Thirteenth National Conference on Artificial Intelligence (AAAI'96)},
publisher = aaaimit,
year = {1996}
}
@proceedings{aaai97,
title = {Proceedings of the Fourteenth National Conference on Artificial Intelligence (AAAI'97)},
editor = {B. Kuipers and B. Webber},
booktitle = {Proceedings of the Fourteenth National Conference on Artificial Intelligence (AAAI'97)},
publisher = aaaimit,
year = {1997}
}
@proceedings{aaai98,
title = {Proceedings of the Fifteenth National Conference on Artificial Intelligence (AAAI'98)},
editor = {J. Mostow and C. Rich},
booktitle = {Proceedings of the Fifteenth National Conference on Artificial Intelligence (AAAI'98)},
publisher = aaaimit,
year = {1998}
}
@proceedings{aaai99,
title = {Proceedings of the Sixteenth National Conference on Artificial Intelligence (AAAI'99)},
editor = {J. Hendler and D. Subramanian},
booktitle = {Proceedings of the Sixteenth National Conference on Artificial Intelligence (AAAI'99)},
publisher = aaaimit,
year = {1999}
}
@proceedings{aamas02,
title = {Proceedings of the First International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS'02)},
editor = {E. Alonso and D. Kudenko and D. Kazakov},
booktitle = {Proceedings of the First International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS'02)},
publisher = acm,
year = {2002}
}
@proceedings{aamas06,
title = {Proceedings of the Fifth International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS'06)},
editor = {H. Nakashima and M. Wellman and G. Weiss and P. Stone},
booktitle = {Proceedings of the Fifth International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS'06)},
publisher = acm,
year = {2006}
}
@proceedings{aamas09,
title = {Proceedings of the Eighth International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS 2009)},
editor = {C. Sierra and C. Castelfranchi and K. Decker and J. Sichman},
booktitle = {Proceedings of the Eighth International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS 2009)},
publisher = {IFAAMAS},
year = {2009}
}
@proceedings{aamas10,
title = {Proceedings of the Ninth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'10)},
editor = {W. van der Hoek and G. Kaminka and Y. Lesp{\'e}rance and M. Luck and S. Sen},
booktitle = {Proceedings of the Ninth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'10)},
publisher = {IFAAMAS},
year = {2010}
}
@proceedings{aamas12,
title = {Proceedings of the Eleventh International Conference on Autonomous Agents and Multiagent Systems (AAMAS'12)},
editor = {W. van der Hoek and L. Padgham and V. Conitzer and M. Winikoff},
booktitle = {Proceedings of the Eleventh International Conference on Autonomous Agents and Multiagent Systems (AAMAS'12)},
publisher = {IFAAMAS},
year = {2012}
}
@proceedings{aamas16,
title = {Proceedings of the Fifteenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'16)},
editor = {C. Jonker and S. Marsella and J. Thangarajah and K. Tuyls},
booktitle = {Proceedings of the Fifteenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'16)},
publisher = acm,
year = {2016}
}
@proceedings{aamas18,
title = {Proceedings of the Seventeenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'18)},
editor = {E. Andr{\'e} and S. Koenig and M. Dastani and G. Sukthankar},
booktitle = {Proceedings of the Seventeenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'18)},
publisher = {IFAAMAS},
year = {2018}
}
@proceedings{aamas20,
title = {Proceedings of the Nineteenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'20)},
editor = {A. {E}l {Fallah Seghrouchni} and G. Sukthankar and B. An and N. Yorke-Smith},
booktitle = {Proceedings of the Nineteenth International Conference on Autonomous Agents and Multiagent Systems (AAMAS'20)},
publisher = {IFAAMAS},
year = {2020}
}
@proceedings{aamas22,
title = {Proceedings of the Twenty-first International Conference on Autonomous Agents and Multiagent Systems (AAMAS'22)},
editor = {P. Faliszewski and V. Mascardi and C. Pelachaud and M. Taylor},
booktitle = {Proceedings of the Twenty-first International Conference on Autonomous Agents and Multiagent Systems (AAMAS'22)},
doi = {10.5555/3535850},
publisher = {International Foundation for Autonomous Agents and Multiagent Systems {(IFAAMAS)}},
year = {2022}
}
@proceedings{ab07,
title = {Proceedings of the Second International Conference on Algebraic Biology (AB'07)},
editor = {H. Anai and K. Horimoto and T. Kutsia},
booktitle = {Proceedings of the Second International Conference on Algebraic Biology (AB'07)},
publisher = springer,
series = lncs,
volume = {4545},
year = {2007}
}
@book{ads07,
title = {Data Streams --- Models and Algorithms},
editor = {C. Aggarwal},
booktitle = {Data Streams --- Models and Algorithms},
publisher = springer,
series = {Advances in Database Systems},
volume = {31},
year = {2007}
}
@proceedings{agp03,
title = {Proceedings of the Joint Conference on Declarative Programming (AGP'03)},
editor = {F. Buccafurri},
booktitle = {Proceedings of the Joint Conference on Declarative Programming (AGP'03)},
year = {2003}
}
@proceedings{ai11,
title = {Proceedings of the Twenty-fourth Canadian Conference on Artificial Intelligence},
editor = {C. Butz and P. Lingras},
booktitle = {Proceedings of the Twenty-fourth Canadian Conference on Artificial Intelligence},
publisher = springer,
series = lncs,
volume = {6657},
year = {2011}
}
@proceedings{ai12,
title = {Proceedings of the Twenty-fifth Canadian Conference on Artificial Intelligence (AI'12)},
editor = {L. Kosseim and D. Inkpen},
booktitle = {Proceedings of the Twenty-fifth Canadian Conference on Artificial Intelligence (AI'12)},
publisher = springer,
series = lncs,
volume = {7310},
year = {2012}
}
@proceedings{aimsa08,
title = {Proceedings of the Thirteenth International Conference on Artificial Intelligence: Methodology, Systems, and Applications (AIMSA'08)},
editor = {D. Dochev and M. Pistore and P. Traverso},
booktitle = {Proceedings of the Thirteenth International Conference on Artificial Intelligence: Methodology, Systems, and Applications (AIMSA'08)},
publisher = springer,
series = lnai,
volume = {5253},
year = {2008}
}
@proceedings{aips00,
title = {Proceedings of the Fifth International Conference on Artificial Intelligence Planning Systems (AIPS'00)},
editor = {S. Chien and S. Kambhampati and C. Knoblock},
booktitle = {Proceedings of the Fifth International Conference on Artificial Intelligence Planning Systems (AIPS'00)},
publisher = {{AAAI} Press},
year = {2000}
}
@proceedings{aips92,
title = {Proceedings of the First International Conference on Artificial Intelligence Planning Systems (AIPS'92)},
editor = {J. Hendler},
booktitle = {Proceedings of the First International Conference on Artificial Intelligence Planning Systems (AIPS'92)},
publisher = m-k,
year = {1992}
}
@proceedings{aips98,
title = {Proceedings of the Fourth International Conference on Artificial Intelligence Planning Systems (AIPS'98)},
editor = {R. Simmons and M. Veloso and S. Smith},
booktitle = {Proceedings of the Fourth International Conference on Artificial Intelligence Planning Systems (AIPS'98)},
publisher = {{AAAI} Press},
year = {1998}
}
@proceedings{amai04,
title = {Proceedings of the Eighth International Symposium on Artificial Intelligence and Mathematics},
booktitle = {Proceedings of the Eighth International Symposium on Artificial Intelligence and Mathematics},
year = {2004}
}
@proceedings{anb10,
title = {Proceedings of the Fourth International Conference on Algebraic and Numeric Biology (ANB'10)},
editor = {K. Horimoto and M. Nakatsui and N. Popov},
booktitle = {Proceedings of the Fourth International Conference on Algebraic and Numeric Biology (ANB'10)},
publisher = springer,
series = lncs,
volume = {6479},
year = {2012}
}
@proceedings{aose00,
title = {Proceedings of the First International Workshop of Agent-Oriented Software Engineering (AOSE'00)},
editor = {P. Ciancarini and M. Wooldridge},
booktitle = {Proceedings of the First International Workshop of Agent-Oriented Software Engineering (AOSE'00)},
publisher = springer,
series = lncs,
volume = {1957},
year = {2001}
}
@book{ARHandbook,
title = {Handbook of Automated Reasoning},
editor = {A. Robinson and A. Voronkov},
booktitle = {Handbook of Automated Reasoning},
publisher = {Elsevier and MIT Press},
year = {2001}
}
@proceedings{asmc22,
title = {Proceedings of the Thirty-third Annual SEMI Advanced Semiconductor Manufacturing Conference (ASMC'22)},
booktitle = {Proceedings of the Thirty-third Annual SEMI Advanced Semiconductor Manufacturing Conference (ASMC'22)},
publisher = ieee,
year = {2022}
}
@proceedings{asp01,
title = {Proceedings of the AAAI Spring Symposium on Answer Set Programming (ASP'01)},
editor = {A. Provetti and T. Son},
booktitle = {Proceedings of the AAAI Spring Symposium on Answer Set Programming (ASP'01)},
publisher = aaaimit,
year = {2001}
}
@proceedings{asp03,
title = {Proceedings of the Second International Workshop on Answer Set Programming (ASP'03)},
editor = {M. {D}e Vos and A. Provetti},
booktitle = {Proceedings of the Second International Workshop on Answer Set Programming (ASP'03)},
publisher = {CEUR Workshop Proceedings},
volume = {78},
year = {2003}
}
@proceedings{asp05,
title = {Proceedings of the Third International Workshop on Answer Set Programming (ASP'05)},
editor = {M. {D}e Vos and A. Provetti},
booktitle = {Proceedings of the Third International Workshop on Answer Set Programming (ASP'05)},
publisher = {CEUR Workshop Proceedings},
url = {http://ceur-ws.org/Vol-142},
volume = {142},
year = {2005}
}
@proceedings{asp07,
title = {Proceedings of the Fourth International Workshop on Answer Set Programming (ASP'07)},
editor = {S. Costantini and R. Watson},
booktitle = {Proceedings of the Fourth International Workshop on Answer Set Programming (ASP'07)},
year = {2007}
}
@proceedings{aspdac18,
title = {Proceedings of the Twenty-third Asia and South Pacific Design Automation Conference (ASP-DAC'18)},
editor = {Y. Shin},
booktitle = {Proceedings of the Twenty-third Asia and South Pacific Design Automation Conference (ASP-DAC'18)},
publisher = {{IEEE}},
url = {http://ieeexplore.ieee.org/xpl/mostRecentIssue.jsp?punumber=8291862},
year = {2018}
}
@proceedings{asplos00,
title = {Proceedings of the Ninth International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS'00)},
editor = {L. Rudolph and A. Gupta},
booktitle = {Proceedings of the Ninth International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS'00)},
publisher = acm,
year = {2000}
}
@proceedings{aspocp09,
title = {Proceedings of the Second Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'09)},
editor = {W. Faber and J. Lee},
booktitle = {Proceedings of the Second Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'09)},
year = {2009}
}
@proceedings{aspocp12,
title = {Proceedings of the Fifth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'12)},
editor = {M. Fink and Y. Lierler},
booktitle = {Proceedings of the Fifth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'12)},
year = {2012}
}
@proceedings{aspocp13,
title = {Proceedings of the Sixth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'13)},
editor = {M. Fink and Y. Lierler},
booktitle = {Proceedings of the Sixth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'13)},
publisher = {CoRR},
year = {2013}
}
@proceedings{aspocp14,
title = {Proceedings of the Seventh Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'14)},
editor = {D. Inclezan and M. Maratea},
booktitle = {Proceedings of the Seventh Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'14)},
year = {2014}
}
@proceedings{aspocp15,
title = {Proceedings of the Eighth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'15)},
editor = {D. Inclezan and M. Maratea},
booktitle = {Proceedings of the Eighth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'15)},
year = {2015}
}
@proceedings{aspocp16,
title = {Proceedings of the Ninth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'16)},
editor = {B. Bogaerts and A. Harrison},
booktitle = {Proceedings of the Ninth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'16)},
url = {https://sites.google.com/site/aspocp2016/},
year = {2016}
}
@proceedings{aspocp17,
title = {Proceedings of the Tenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'17)},
editor = {B. Bogaerts and A. Harrison},
booktitle = {Proceedings of the Tenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'17)},
publisher = {{CEUR} Workshop Proceedings},
volume = {1868},
year = {2017}
}
@proceedings{aspocp18,
title = {Proceedings of the Eleventh Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'18)},
editor = {J. Fandinno and J. Fichte},
booktitle = {Proceedings of the Eleventh Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'18)},
year = {2018}
}
@proceedings{aspocp20,
title = {Proceedings of the Thirteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'20)},
editor = {M. Hecher and J. Zangari},
booktitle = {Proceedings of the Thirteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'20)},
year = {2020}
}
@proceedings{aspocp21,
title = {Proceedings of the Fourteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'21)},
booktitle = {Proceedings of the Fourteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'21)},
year = {2021}
}
@proceedings{aspocp22,
title = {Proceedings of the Fifteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'22)},
booktitle = {Proceedings of the Fifteenth Workshop on Answer Set Programming and Other Computing Paradigms (ASPOCP'22)},
publisher = {CEUR-WS.org},
series = {{CEUR} Workshop Proceedings},
volume = {3193},
year = {2022}
}
@proceedings{ausai07,
title = {Proceedings of the Twentieth Australian Joint Conference on Artificial Intelligence (AI'07)},
editor = {M. Orgun and J. Thornton},
booktitle = {Proceedings of the Twentieth Australian Joint Conference on Artificial Intelligence (AI'07)},
publisher = springer,
series = lncs,
volume = {4830},
year = {2007}
}
@proceedings{ausai10,
title = {Proceedings of the Twenty-third Australasian Joint Conference on Artificial Intelligence},
editor = {J. Li},
booktitle = {Proceedings of the Twenty-third Australasian Joint Conference on Artificial Intelligence},
publisher = springer,
series = lncs,
volume = {6464},
year = {2011}
}
@proceedings{baader60,
title = {Description Logic, Theory Combination, and All That - Essays Dedicated to Franz Baader on the Occasion of His 60th Birthday},
editor = {C. Lutz and U. Sattler and C. Tinelli and A. Turhan and F. Wolter},
booktitle = {Description Logic, Theory Combination, and All That - Essays Dedicated to Franz Baader on the Occasion of His 60th Birthday},
publisher = springer,
series = lncs,
volume = {11560},
year = {2019}
}
@proceedings{bpm14,
title = {Proceedings of the Twelfth International Conference on Business Process Management (BPM'14)},
editor = {S. Sadiq and P. Soffer and H. V{\"o}lzer},
booktitle = {Proceedings of the Twelfth International Conference on Business Process Management (BPM'14)},
publisher = springer,
series = lncs,
volume = {8659},
year = {2014}
}
@proceedings{bpm16,
title = {Proceedings of the Business Process Management Forum (BPM'16)},
editor = {M. {L}a Rosa and P. Loos and O. Pastor},
booktitle = {Proceedings of the Business Process Management Forum (BPM'16)},
publisher = springer,
series = {Lecture Notes in Business Information Processing},
volume = {260},
year = {2016}
}
@proceedings{cade09,
title = {Proceedings of the Twenty-second International Conference on Automated Deduction (CADE'09)},
editor = {R. Schmidt},
booktitle = {Proceedings of the Twenty-second International Conference on Automated Deduction (CADE'09)},
publisher = springer,
series = lncs,
volume = {5663},
year = {2009}
}
@proceedings{cade11,
title = {Proceedings of the Twenty-third International Conference on Automated Deduction (CADE'11)},
editor = {N. Bj{\o}rner and V. Sofronie-Stokkermans},
booktitle = {Proceedings of the Twenty-third International Conference on Automated Deduction (CADE'11)},
publisher = springer,
series = lncs,
volume = {6803},
year = {2011}
}
@proceedings{cade17,
title = {Proceedings of the Twenty-sixth International Conference on Automated Deduction (CADE'17)},
editor = {L. de Moura},
booktitle = {Proceedings of the Twenty-sixth International Conference on Automated Deduction (CADE'17)},
publisher = springer,
series = lncs,
volume = {10395},
year = {2017}
}
@proceedings{cade19,
title = {Proceedings of the Twenty-seventh International Conference on Automated Deduction (CADE'19)},
editor = {P. Fontaine},
booktitle = {Proceedings of the Twenty-seventh International Conference on Automated Deduction (CADE'19)},
publisher = springer,
series = lncs,
volume = {11716},
year = {2019}
}
@proceedings{cade88,
title = {Proceedings of the Nineth International Conference on Automated Deduction (CADE'88)},
editor = {E. Lusk and R. Overbeek},
booktitle = {Proceedings of the Nineth International Conference on Automated Deduction (CADE'88)},
publisher = springer,
series = lncs,
volume = {310},
year = {1988}
}
@proceedings{cade90,
title = {Proceedings of the Tenth International Conference on Automated Deduction (CADE'90)},
editor = {M. Stickel},
booktitle = {Proceedings of the Tenth International Conference on Automated Deduction (CADE'90)},
publisher = springer,
series = lncs,
volume = {449},
year = {1990}
}
@proceedings{cade96,
title = {Proceedings of the Thirteenth International Conference on Automated Deduction (CADE'96)},
editor = {M. McRobbie and J. Slaney},
booktitle = {Proceedings of the Thirteenth International Conference on Automated Deduction (CADE'96)},
publisher = springer,
series = lncs,
volume = {1104},
year = {1996}
}
@proceedings{cade97,
title = {Proceedings of the Fourteenth International Conference on Automated Deduction (CADE'97)},
editor = {W. McCune},
booktitle = {Proceedings of the Fourteenth International Conference on Automated Deduction (CADE'97)},
publisher = springer,
series = lncs,
volume = {1249},
year = {1997}
}
@proceedings{cav05,
title = {Proceedings of the Seventeenth International Conference on Computer Aided Verification (CAV'05)},
editor = {K. Etessami and S. Rajamani},
booktitle = {Proceedings of the Seventeenth International Conference on Computer Aided Verification (CAV'05)},
publisher = springer,
series = lncs,
volume = {3576},
year = {2005}
}
@proceedings{cav06,
title = {Proceedings of the Eighteenth International Conference on Computer Aided Verification (CAV'06)},
editor = {T. Ball and R. Jones},
booktitle = {Proceedings of the Eighteenth International Conference on Computer Aided Verification (CAV'06)},
publisher = springer,
series = lncs,
volume = {4144},
year = {2006}
}
@proceedings{cav07,
title = {Proceedings of the Nineteenth International Conference on Computer Aided Verification (CAV'07)},
editor = {W. Damm and H. Hermanns},
booktitle = {Proceedings of the Nineteenth International Conference on Computer Aided Verification (CAV'07)},
publisher = springer,
series = lncs,
volume = {4590},
year = {2007}
}
@proceedings{cav10,
title = {Proceedings of the Twenty-second International Conference on Computer Aided Verification (CAV'10)},
editor = {T. Touili and B. Cook and P. Jackson},
booktitle = {Proceedings of the Twenty-second International Conference on Computer Aided Verification (CAV'10)},
publisher = springer,
series = lncs,
volume = {6174},
year = {2010}
}
@proceedings{cav12,
title = {Proceedings of the Twenty-fourth International Conference on Computer Aided Verification (CAV'12)},
editor = {P. Madhusudan and S. Seshia},
booktitle = {Proceedings of the Twenty-fourth International Conference on Computer Aided Verification (CAV'12)},
publisher = springer,
series = lncs,
volume = {7358},
year = {2012}
}
@proceedings{cav13,
title = {Proceedings of the Twenty-fifth International Conference on Computer Aided Verification (CAV'13)},
editor = {N. Sharygina and H. Veith},
booktitle = {Proceedings of the Twenty-fifth International Conference on Computer Aided Verification (CAV'13)},
publisher = springer,
series = lncs,
volume = {8044},
year = {2013}
}
@proceedings{cent07,
title = {Proceedings of the Workshop on Correspondence and Equivalence for Nonmonotonic Theories (CENT'07)},
editor = {D. Pearce and A. Polleres and A. Valverde and S. Woltran},
booktitle = {Proceedings of the Workshop on Correspondence and Equivalence for Nonmonotonic Theories (CENT'07)},
year = {2007}
}
@proceedings{cfv07,
title = {Proceedings of the Fourth International Workshop on Constraints in Formal Verification (CFV'07)},
editor = {M. Velev},
booktitle = {Proceedings of the Fourth International Workshop on Constraints in Formal Verification (CFV'07)},
year = {2007}
}
@proceedings{charme05,
title = {Proceedings of the Thirteenth Conference on Correct Hardware Design and Verification Methods (CHARME'05)},
editor = {D. Borrione and W. Paul},
booktitle = {Proceedings of the Thirteenth Conference on Correct Hardware Design and Verification Methods (CHARME'05)},
publisher = springer,
series = lncs,
volume = {3725},
year = {2005}
}
@book{ci04,
title = {Special Issue on Preferences in Artificial Intelligence},
editor = {J. Delgrande and J. Doyle and U. Junker and F. Rossi and T. Schaub},
booktitle = {Special Issue on Preferences in Artificial Intelligence},
publisher = wiley,
series = ci,
volume = {20(2)},
year = {2004}
}
@proceedings{cikm06,
title = {Proceedings of the Fifteenth International Conference on Information and Knowledge Management},
editor = {P. Yu and V. Tsotras and E. Fox and B. Liu},
booktitle = {Proceedings of the Fifteenth International Conference on Information and Knowledge Management},
publisher = acm,
year = {2006}
}
@proceedings{cikm13,
title = {Proceedings of the Twenty-second International Conference on Information and Knowledge Management (CIKM'13)},
editor = {Q. He and A. Iyengar and W. Nejdl and J. Pei and R. Rastogi},
booktitle = {Proceedings of the Twenty-second International Conference on Information and Knowledge Management (CIKM'13)},
publisher = acm,
year = {2013}
}
@proceedings{cisis09,
title = {Proceedings of the Third International Conference on Complex, Intelligent and Software Intensive Systems (CISIS'09)},
editor = {L. Barolli and F. Xhafa and H. Hsu},
booktitle = {Proceedings of the Third International Conference on Complex, Intelligent and Software Intensive Systems (CISIS'09)},
publisher = ieee,
year = {2009}
}
@proceedings{cisis10,
title = {Proceedings of the Fourth International Conference on Complex, Intelligent and Software Intensive Systems (CISIS'10)},
editor = {L. Barolli and F. Xhafa and S. Vitabile and H. Hsu},
booktitle = {Proceedings of the Fourth International Conference on Complex, Intelligent and Software Intensive Systems (CISIS'10)},
publisher = ieee,
year = {2010}
}
@proceedings{cl00,
title = {Proceedings of the First International Conference on Computational Logic (CL'00)},
editor = {J. Lloyd and V. Dahl and U. Furbach and M. Kerber and K. Lau and C. Palamidessi and L. Pereira and Y. Sagiv and P. Stuckey},
booktitle = {Proceedings of the First International Conference on Computational Logic (CL'00)},
publisher = springer,
series = lncs,
volume = {1861},
year = {2000}
}
@proceedings{cmsb12,
title = {Proceedings of the Tenth International Conference on Computational Methods in Systems Biology (CMSB'12)},
editor = {D. Gilbert and M. Heiner},
booktitle = {Proceedings of the Tenth International Conference on Computational Methods in Systems Biology (CMSB'12)},
publisher = springer,
series = lncs,
volume = {7605},
year = {2012}
}
@proceedings{cmsb15,
title = {Proceedings of the Thirteenth International Conference on Computational Methods in Systems Biology (CMSB'15)},
editor = {O. Roux and J. Bourdon},
booktitle = {Proceedings of the Thirteenth International Conference on Computational Methods in Systems Biology (CMSB'15)},
publisher = springer,
series = lnbi,
volume = {9308},
year = {2015}
}
@proceedings{cmsb18,
title = {Proceedings of the Sixteenth International Conference on Computational Methods in Systems Biology (CMSB'18)},
editor = {M. Ceska and D. Safr{\'a}nek},
booktitle = {Proceedings of the Sixteenth International Conference on Computational Methods in Systems Biology (CMSB'18)},
publisher = springer,
series = lncs,
volume = {11095},
year = {2018}
}
@proceedings{cocomile12,
title = {Proceedings of the First Workshop on Combining Constraint Solving with Mining and Learning (CoCoMile'12)},
editor = {R. Coletta and T. Guns and B. {O}'\relax Sullivan and A. Passerini and G. Tack},
booktitle = {Proceedings of the First Workshop on Combining Constraint Solving with Mining and Learning (CoCoMile'12)},
year = {2012}
}
@proceedings{cogrob18,
title = {Proceedings of the Eleventh Workshop on Cognitive Robotics (CogRob'18)},
editor = {G. Steinbauer and A. Ferrein},
booktitle = {Proceedings of the Eleventh Workshop on Cognitive Robotics (CogRob'18)},
publisher = {{CEUR} Workshop Proceedings},
url = {http://ceur-ws.org/Vol-2325},
volume = {2325},
year = {2019}
}
@proceedings{comma10,
title = {Proceedings of Computational Models of Argument (COMMA'10)},
editor = {P. Baroni and F. Cerutti and M. Giacomin and G. Simari},
booktitle = {Proceedings of Computational Models of Argument (COMMA'10)},
publisher = ios,
series = {Frontiers in Artificial Intelligence and Applications},
volume = {216},
year = {2010}
}
@proceedings{conf14,
title = {Proceedings of the Sixteenth International Configuration Workshop (CONF'14)},
editor = {A. Felfernig and C. Forza and A. Haag},
booktitle = {Proceedings of the Sixteenth International Configuration Workshop (CONF'14)},
publisher = {{CEUR} Workshop Proceedings},
volume = {1220},
year = {2014}
}
@proceedings{conf15,
title = {Proceedings of the Seventeenth International Configuration Workshop (CONF'15)},
editor = {J. Tiihonen and A. Falkner and T. Axling},
booktitle = {Proceedings of the Seventeenth International Configuration Workshop (CONF'15)},
publisher = {{CEUR} Workshop Proceedings},
volume = {1453},
year = {2015}
}
@proceedings{conf17,
title = {Proceedings of the Nineteenth International Configuration Workshop (CONF'17)},
editor = {L. Zhang and A. Haag},
booktitle = {Proceedings of the Nineteenth International Configuration Workshop (CONF'17)},
year = {2017}
}
@proceedings{conf18,
title = {Proceedings of the Twentieth Configuration Workshop (CONF'18)},
editor = {A. Felfernig and J. Tiihonen and L. Hotz and M. Stettinger},
booktitle = {Proceedings of the Twentieth Configuration Workshop (CONF'18)},
publisher = {{CEUR} Workshop Proceedings},
volume = {2220},
year = {2018}
}
@proceedings{conf23,
title = {Proceedings of the Twenty-fifth International Configuration Workshop (CONF'23)},
editor = {J. Horcas and J. Galindo and R. Comploi-Taupe and L. Fuentes},
booktitle = {Proceedings of the Twenty-fifth International Configuration Workshop (CONF'23)},
publisher = {{CEUR} Workshop Proceedings},
volume = {3509},
year = {2023}
}
@proceedings{cp00,
title = {Proceedings of the Sixth International Conference on Principles and Practice of Constraint Programming (CP'00)},
editor = {R. Dechter},
booktitle = {Proceedings of the Sixth International Conference on Principles and Practice of Constraint Programming (CP'00)},
publisher = springer,
series = lncs,
volume = {1894},
year = {2000}
}
@proceedings{cp01,
title = {Proceedings of the Seventh International Conference on Principles and Practice of Constraint Programming (CP'01)},
editor = {T. Walsh},
booktitle = {Proceedings of the Seventh International Conference on Principles and Practice of Constraint Programming (CP'01)},
publisher = springer,
series = lncs,
volume = {2239},
year = {2001}
}
@proceedings{cp02,
title = {Proceedings of the Eighth International Conference on Principles and Practice of Constraint Programming (CP'02)},
editor = {P. {V}an Hentenryck},
booktitle = {Proceedings of the Eighth International Conference on Principles and Practice of Constraint Programming (CP'02)},
publisher = springer,
series = lncs,
volume = {2470},
year = {2002}
}
@proceedings{cp03,
title = {Proceedings of the Ninth International Conference on Principles and Practice of Constraint Programming (CP'03)},
editor = {F. Rossi},
booktitle = {Proceedings of the Ninth International Conference on Principles and Practice of Constraint Programming (CP'03)},
publisher = springer,
series = lncs,
volume = {2833},
year = {2003}
}
@proceedings{cp04,
title = {Proceedings of the Tenth International Conference on Principles and Practice of Constraint Programming (CP'04)},
editor = {M. Wallace},
booktitle = {Proceedings of the Tenth International Conference on Principles and Practice of Constraint Programming (CP'04)},
publisher = springer,
series = lncs,
volume = {3258},
year = {2004}
}
@proceedings{cp05,
title = {Proceedings of the Eleventh International Conference on Principles and Practice of Constraint Programming (CP'05)},
editor = {P. van Beek},
booktitle = {Proceedings of the Eleventh International Conference on Principles and Practice of Constraint Programming (CP'05)},
publisher = springer,
series = lncs,
volume = {3709},
year = {2005}
}