-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbibi.bib
More file actions
13814 lines (12250 loc) · 401 KB
/
Copy pathbibi.bib
File metadata and controls
13814 lines (12250 loc) · 401 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% String Definitions
% Institutions
@STRING{AMS = "American Mathematical Society"}
@STRING{DAI = "Dept.\ of Artificial Intelligence, University of Edinburgh"}
@STRING{DFKI = "DFKI Saarbr{\"u}cken"}
@STRING{FZKI = "Forschungszentrum K\protect{\"u}nstliche Intelligenz, Saarbr\protect{\"u}cken"}
@STRING{IWBS = "IBM, Scientific Center, Institute for Knowledge Based Systems"}
@STRING{THD = "Technische Hochschule Darmstadt"}
@STRING{UoD = "University of Darmstadt"}
@STRING{UKA = "Universit\protect{\"a}t Karlsruhe"}
@STRING{UKL = "Universit\protect{\"a}t Kaiserslautern"}
@STRING{USL = "Universit\protect{\"a}t des Saarlands"}
@STRING{INRIA = "CRIN \& INRIA-Lorraine"}
@STRING{fundinf = "Fundam. Inform." }
% Proceedings and Conferences
@STRING{AAAI88 = "Proceedings of the Seventh American Association for
Artificial Intelligence Conference, Saint Paul, Minnesota"}
@STRING{AAAI90 = "Proceedings of the Eigth American Association for
Artificial Intelligence Conference, Boston, Ma."}
@string{ASE97 = "Proceedings of the twelfth IEEE International Automated
Software Engineering Conference, Incline Village, Nevada"}
@string{AISC98 = "Proceedings of the 4th International Conference on
Symbolic Computation and Artificial Intelligence, Plattsburgh, NY, USA"}
@STRING{CADE80 = "Proceedings of the 5th International Conference on
Automated Deduction, Les Arcs, France"}
@STRING{CADE84 = "Proceedings of the 7th International Conference on
Automated Deduction, Napa, Ca., USA"}
@STRING{CADE86 = "Proceedings of the 8th International Conference on
Automated Deduction, Oxford, UK"}
@STRING{CADE88 = "Proceedings of the 9th International Conference on
Automated Deduction, Argonne"}
@STRING{CADE90 = "Proceedings of the 10th International Conference on
Automated Deduction, Kaiserslautern"}
@STRING{CADE92 = "Proceedings of the 11th International Conference on
Automated Deduction, Saratoga Springs, NY"}
@STRING{CADE94 = "Proceedings of the 12th International Conference on
Automated Deduction, Nancy, France"}
@STRING{CADE96 = "Proceedings of the 13th International Conference on
Automated Deduction, New Brunswick, NJ, July 1996"}
@STRING{CADE97 = "Proceedings of the 14th International Conference on
Automated Deduction"}
@STRING{CADE98 = "Proceedings of the 15th International Conference on
Automated Deduction, Lindau, Germany, July 1998"}
@string{Cogsci94 = "Proceedings of the 16th Annual Conference of
the Cognitive Science Society"}
@STRING{CTRS87 = "Proceedings of the 1st International Workshop on
Conditional Term Rewriting Systems, Orsay, France"}
@STRING{CTRS90 = "Proceedings of the 2nd International CTRS--Workshop,
Montreal, Canada"}
@STRING{CTRS92 = "Proceedings of the third International CTRS--Workshop,
Pont-{\`a}-Mousson, France"}
@STRING{ECAI86 = "Proceedings of the 7th European Conference on Artificial
Intelligence, Brighton"}
@STRING{ECAI88 = "Proceedings of the 8th European Conference on Artificial
Intelligence"}
@STRING{EUROCAL85 = "European Conference on Computer Algebra,
EUROCAL-85, Linz, Austria"}
@STRING{FLAIRS97 = "Proceedings of the 10th FLAIRS Conference, Daytona Beach,
Fa."}
@STRING{HICSS94 = "Proceedings of the Hawaiian International Conference
on System Sciences"}
@STRING{IJCAI83 = "Proceedings of the eighth International Joint
Conference on Artificial Intelligence, Karlsruhe,
Germany"}
@string{IJCAI85 = "Proceedings of the 9th International Joint
Conference on Artificial Intelligence, Los Angeles"}
@STRING{IJCAI89 = "Proceedings of the 11th International Joint
Conference on Artificial Intelligence"}
@STRING{IJCAI93 = "Proceedings of the 13th International Joint
Conference on Artificial Intelligence, Chamb{\'e}ry, France"}
@STRING{ISMVL94 = "Proceedings of the 24th International Symposium on
Multiple-valued Logic, Boston, Ma"}
@STRING{ISMVL96 = "Proceedings of the 26th International Symposium on
Multiple-valued Logic, Santiago de Compostela, Spain"}
@STRING{IWWC97 = "Proceeding of the Third International Women, Work
and Computerization, Bonn, Germany"}
@STRING{KI94 = "Proceedings of the 18th German Annual Conference on
Artificial Intelligence, Saarbr{\"u}cken, Germany"}
@STRING{KI95 = "Proceedings of the 19th German Annual Conference on
Artificial Intelligence, Bielefeld, Germany"}
@string{KI97 = "Proceedings of the 21st German Annual Conference on
Artificial Intelligence, Freiburg, Germany"}
@STRING{KGC93 = "Proceedings of the 3rd Kurt G{\"o}del Colloquium on
Computational Logic and Proof Theory, Brno, Czech Republic"}
@STRING{ML95 = "Proceedings of the 12th International Conference on
Machine Learning, Tahoe City, Ca"}
@STRING{LICS86 = "Proceedings of the first annual Symposium on Logic
in Computer Science, Cambridge, Ma"}
@string{LPAR92 = "Proceedings of the Conference on Logic Programming
and Automated Reasoning, St.~Petersburg"}
@string{LPAR93 = "Proceedings of the Conference on Logic Programming
and Automated Reasoning, St.~Petersburg"}
@STRING{LICS88 = "Proceedings of the third annual Symposium on Logic in
Computer Science, Edinburgh, Scotland"}
@string{LPST93 = "Logic Program Synthesis and Transformation"}
@STRING{POPL88 = "Proceedings of the 15th Annual ACM SIGACT-SIGPLAN
Symposium on Principles of Programming Languages, San Diego, CA"}
@STRING{popl13 = "Proc. of the 40th ACM Symp. on Principles of Programming
Languages, POPL 2013" }
@STRING{RTA85 = "Proceedings of the 1nd International Conference
on Rewriting Techniques and Applications, Dijon, France"}
@STRING{RTA87 = "Proceedings of the 2nd International Conference
on Rewriting Techniques and Applications, Bordeaux, France"}
@STRING{RTA89 = "Proceedings of the 3rd International Conference
on Rewriting Techniques and Applications, Chapel
Hill, North Carolina, USA"}
@STRING{RTA91 = "Proceedings of the 4th International Conference
on Rewriting Techniques and Applications, Como, Italy"}
@STRING{RTA93 = "Proceedings of the 5th International Conference
on Rewriting Techniques and Applications, Montreal, Canada"}
@STRING{RTA95 = "Proceedings of the 6th International Conference
on Rewriting Techniques and Applications, Kaiserslautern, Germany"}
@STRING{RTA99 = "Proceedings of the 10th International Conference
on Rewriting Techniques and Applications, Trento, Italy"}
@STRING{TACS94 = "Proceedings of the Symposium on Theoretical Aspects
of Computer Science"}
@STRING{TPHOLs98 = "Proceedings of the 11th International Conference on Theorem
Proving in Higher Order Logics (TPHOLs'98), Canberra, Australia"}
@STRING{TPHOL99 = "Proceedings of the 12th International Conference on Theorem
Proving in Higher Order Logics (TPHOLs'99), Nice, France"}
@STRING{TPHOLs09 = "22nd International Conference on Theorem
Proving in Higher Order Logics (TPHOLs'09)"}
@STRING{IJCAR01 = "{First International Joint Conference
on Automated Reasoning (IJCAR'01)}"}
@STRING{IJCAR06 = "Proceedings of the Third International Joint Conference
on Automated Reasoning, Seattle, USA"}
@STRING{IJCAR08 = "4th International Joint Conference
on Automated Reasoning"}
% Names of Journals
@STRING{ACTAINF = "Acta Informatica"}
@STRING{AI = "Artificial Intelligence"}
@STRING{CACM = "Communications of the ACM"}
@STRING{FI = "Fundamenta Informaticae"}
@STRING{JACM = "Journal of the ACM"}
@STRING{JAR = "Journal of Automated Reasoning"}
@STRING{JCSS = "Journal of Computer and System Sciences"}
@STRING{jfp = "{Journal of Functional Programming}"}
@STRING{JLC = "{Journal of Logic and Computation}"}
@STRING{JLP = "Journal of Logic Programming"}
@STRING{JSC = "Journal of Symbolic Computation"}
@STRING{JSL = "Journal of Symbolic Logic"}
@STRING{MSCS = "Mathematical Structures in Computer Science" }
@STRING{SIAMJC = "SIAM Journal on Computation"}
@STRING{TCS = "Theoretical Computer Science"}
@STRING{TOPLAS = "ACM Transactions on Programming Languages and Systems"}
@string{AHC = "IEE Annals of the History of Computing"}
@STRING{JAIR = "Journal of Artificial Intelligence Research"}
% misc
@STRING{DAIRP = "University of {E}dinburgh {DAI} Research Paper"}
@STRING{SEKI = "{SEKI} {R}eport"}
% books
@STRING{MLAaR = "Meta-Level Architectures and Reflection"}
% publisher
@string{ACM = "ACM Press"}
@STRING{AVB = "Akademie-Verlag Berlin"}
@STRING{AW = "Addison-Wesley"}
@STRING{AP = "Academic Press"}
@string{BIRK = "Birkh{\"a}user Verlag"}
@STRING{CUP = "Cambridge University Press"}
@STRING{cup = "Cambridge University Press"}
@STRING{ESP = "Elsevier Science Publishers B.V."}
@STRING{MK = "Morgan Kaufmann"}
@STRING{NoHo = "North-Holland"}
@STRING{OUP = "Oxford University Press"}
@STRING{PH = "Prentice-Hall"}
@STRING{SPR = "Springer-Verlag"}
@STRING{TEU = "Teubner"}
@STRING{VIE = "Vieweg"}
@string{IEEECS = "IEEE Computer Society"}
% series
@string{LNAI = "Lecture Notes in Artificial Intelligence"}
@string{LNCS = "Lecture Notes in Computer Science"}
%% Authors
%% Keep spaces around the names so that we can use #{and}# rather than
%% having to use #{ and }#.
@string{Appel = { Andrew W. Appel }}
@string{Felty = { Amy P. Felty }}
@string{Cheng = { Perry Cheng }}
@string{Crary = { Karl Crary }}
@string{Glew = { Neal Glew }}
@string{Harper = { Robert Harper }}
@string{League = { Christopher League }}
@string{Lee = { Peter Lee }}
@string{Momigliano= { Alberto Momigliano }}
@string{Monnier = { Stefan Monnier }}
@string{Morrisett = { Greg Morrisett }}
@string{Saha = { Bratin Saha }}
@string{Shao = { Zhong Shao }}
@string{Stone = { Christopher Stone }}
@string{Tarditi = { David Tarditi }}
@string{Trifonov = { Valery Trifonov }}
@string{Walker = { David Walker }}
@Booklet{Blackout2003,
title = {Final {R}eport on the {A}ugust 14, 2003 {B}lackout in the {U}nited {S}tates and {C}anada: Causes and {R}ecommendations},
author = {U.S. and Canada Power System Outage Task Force},
OPThowpublished = {},
address = {National Resources Canada},
month = {April},
year = {2004},
OPTnote = {},
OPTannote = {}
}
@PhdThesis{Sarkar:Phd09,
author = {Susmit Sarkar},
title = {A Dependently Typed Programming Language, with applications to Foundational Certified Code Systems },
school = {Carnegie Mellon University},
year = {2009},
note = {CMU-CS-09-128}
}
@Misc{Sarkar:phdproposal05,
author = {Susmit Sarkar},
title = {A cost-effective certified code system},
howpublished = {Thesis proposal, Carnegie Mellon University},
OPTmonth = {},
year = {2005},
OPTnote = {},
OPTannote = {}
}
"\newcommand{\ppdp}[1]{\cconf{PPDP}{{I}nternational {C}onference on {P}rinciples and {P}ractice of {D}eclarative {P}rogramming}{#1}}" #
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Literature sorted alphabetically by first author
% Personal communication entries are near the end of the file.
% Search for `%%% [A-Z]' to find a location for a certain author.
%%% A
@inproceedings{Abadi:POPL90,
author = {Martin Abadi and Luca Cardelli and Pierre-Louis Curien and Jean-Jacques L\`{e}vy},
title = {Explicit Substitutions},
booktitle = {17th {ACM} {SIGPLAN-SIGACT} {S}ymposium on {P}rinciples of {P}rogramming {L}anguages},
publisher = ACM,
pages = {31--46},
year = {1990}
}
@InProceedings{AbadiBlanchet2002,
author = {Martin Abadi and Bruno Blanchet},
title = {Analyzing {S}ecurity {P}rotocols with {S}ecrecy {T}ypes and {L}ogic {P}rograms},
booktitle = {29th Annual ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL 2002)},
pages = {33--44},
year = {2002},
address = {Portland, Oregon},
month = jan,
publisher = ACM
}
@article{Abadi:TOPLAS93,
author = {Mart\'{\i}n Abadi and
Michael Burrows and
Butler W. Lampson and
Gordon D. Plotkin},
title = {A Calculus for Access Control in Distributed Systems},
journal = {ACM Transaction on Programming Language Systems},
volume = {15},
number = {4},
year = {1993},
pages = {706-734}
}
@inproceedings{Abadi:POPL99,
author = {Martin Abadi and Anindya Banerjee and Nevin Heintze and Jon G. Riecke},
title = {A core calculus of dependency},
booktitle = {26th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL '99)},
year = {1999},
pages = {147--160},
publisher = ACM,
}
@InProceedings{Abel:POPL13,
author = {Andreas Abel and Brigitte Pientka and David Thibodeau and
Anton Setzer},
title = {Copatterns: Programming Infinite Structures by
Observations},
booktitle = popl13,
year = 2013,
pages = {27-38}
}
@Article{ abelCoquand:lfsigma,
author = {Andreas Abel and Thierry Coquand},
title = {Untyped Algorithmic Equality for {Martin-L\"of's} Logical
Framework with Surjective Pairs},
journal = fundinf,
year = 2007,
volume = 77,
number = 4,
pages = {345--395},
note = {{TLCA'05} special issue.}
}
@Article{Abel:mscs06,
author = {Andreas Abel},
title = {Polarized Subtyping for Sized Types},
journal = MSCS,
year = 2008,
volume = 18,
number = 5,
pages = {797-822},
note = {Special issue on subtyping, edited by Healfdene Goguen and
Adriana Compagnoni}}
@inproceedings{Abel:CSL04,
author = {Andreas Abel and
Ralph Matthes},
title = {Fixed Points of Type Constructors and Primitive Recursion},
editor = {Jerzy Marcinkowski and
Andrzej Tarlecki},
booktitle = {18th International Workshop on Computer Science Logic (CSL'04)},
year = {2004},
pages = {190-204},
publisher = {Springer},
series = {Lecture Notes in Computer Science},
volume = {3210}
}
@InProceedings{Abel:APLAS07,
author = {Andreas Abel},
title = {Mixed Inductive/Coinductive Types and Strong Normalization},
booktitle = {5th ASIAN Symposium on Programming Languages and Systems (APLAS'07)},
editor = {Zhong Shao},
publisher = {Springer},
series = {Lecture Notes in Computer Science},
volume = {4807},
year = {2007},
pages = {286-301}
}
@InProceedings{Abel00,
author = {Andreas Abel},
title = {Specification and Verification of a Formal System for Structurally Recursive Functions},
booktitle = {Types for Proof and Programs, International Workshop, TYPES '99},
year = 2000,
editor = {Thierry Coquand and Peter Dybjer and Bengt Nordstr\"om and Jan Smith},
series = LNCS,
volume = 1956,
pages = {1--20},
publisher = {Springer-Verlag},
keywords = "Termination, structural subterm order, reasoning,
inductive types",
url = {http://www.tcs.informatik.uni-muenchen.de/\~abel/sound-simple.pdf}
}
@InProceedings{Abel:LFM01,
author = {Andreas Abel},
title = {A Third-Order Representation of the $\lambda\mu$-Calculus},
booktitle = {Electronic Notes in Theoretical Computer Science},
volume = {58},
issue = {1},
publisher = {Elsevier Science Publishers},
editor = {S.J. Ambler, R.L. Crole and A. Momigliano},
year = {2001},
url = {http://www.elsevier.com/gej-ng/31/29/23/90/27/show/Products/notes/index.htt}
}
@article{AbelAltenkirch:JFP02,
author = "Andreas Abel and Thorsten Altenkirch",
title = "A predicative analysis of structural recursion",
journal = "Journal of Functional Programming",
year = "2002",
volume = "12",
number = "1",
pages = "1-41",
keywords = "type-checking, termination"
}
@inproceedings{Altenkirch:TLCA93,
author = {Thorsten Altenkirch},
editor = {Marc Bezem and
Jan Friso Groote},
title = {A Formalization of the Strong Normalization Proof for {System
F} in {LEGO}},
booktitle = {International Conference on Typed Lambda Calculi and Applications (TLCA '93)},
year = {1993},
pages = {13-28},
publisher = {Springer},
series = {Lecture Notes in Computer Science},
volume = {664},
isbn = {3-540-56517-5}
}
@PhDThesis{ adams:PhD,
author = {Robin Adams},
title = {A Modular Hierarchy of Logical Frameworks},
school = {University of Manchester},
year = 2005
}
@article{Andreoli92,
author = "Jean-Marc Andreoli",
title = "Logic programming with focusing proofs in linear logic",
journal = "Journal of Logic and Computation",
year = "1992",
OPTmonth = aug,
volume = "2",
number = "3",
pages = "297-347",
keywords = "proof search, focusing, linear logic, linear logic programming"
}
@inproceedings{AppelFelten99,
author = "Andrew W. Appel and Edward W. Felten",
title = "Proof-Carrying Authentication",
booktitle = "{ACM} Conference on Computer and Communications Security",
pages = "52-62",
year = "1999",
url = "citeseer.nj.nec.com/appel99proofcarrying.html" }
@InProceedings{AppelFelty00,
author = {W.~Appel and Amy P.~Felty},
title = {A Semantic Model of Types and Machine Instructions for Proof-Carrying Code},
booktitle = {27th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages (POPL '00)},
pages = {243-253},
year = 2000
}
@inproceedings{Appel:CCS99,
author = {Andrew W. Appel and
Edward W. Felten},
title = {Proof-Carrying Authentication},
booktitle = {ACM Conference on Computer and Communications Security},
year = {1999},
pages = {52-62},
ee = {http://doi.acm.org/10.1145/319709.319718},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{Appel01lics,
author = {Andrew Appel},
title = {Foundational Proof-Carrying Code},
booktitle = {Proceedings of the 16th Annual Symposium on
Logic in Computer Science (LICS'01)},
pages = {247--256},
year = 2001,
editor = {J. Halpern},
month = jun,
publisher = {IEEE Computer Society Press},
note = {Invited Talk},
keywords = {PCC, LF, Elf}
}
@Article{Adam96,
author = "Alison Adam",
title = "Constructing Gender in the History of Artificial Intelligence",
journal = AHC,
year = "1996",
OPTkey = "",
volume = "18",
number = "3",
OPTmonth = "",
pages = "47 - 53",
OPTnote = "",
OPTannote = "",
keywords = "women studies, feminism, gender, knowledge representation"
}
@BOOK{Adams79,
author = "Douglas Adams",
title = "The Hitch Hiker's Guide to the Galaxy",
publisher = "Pan Books",
edition = "First",
year = "1979",
keywords = "Deep Thought"
}
@article{Amati:StudiaLogica94,
author = "Giambattista Amati and Fiora Pirri",
title = "A Uniform Tableau Method for Intuitionistic Modal Logics {I}",
journal = "Studia Logica",
volume = "53",
number = "1",
pages = "29--60",
year = "1994",
url = "citeseer.ist.psu.edu/article/amati93uniform.html"
}
@InProceedings{Armando97,
author = "A. Armando and A. Smaill and I. Green",
title = "Automatic Synthesis of Recursive Programs: The Proof-Planning Paradigm",
booktitle = ASE97,
OPTcrossref = "",
OPTkey = "",
OPTvolume = "",
OPTnumber = "",
OPTseries = "",
year = "1997",
OPTorganization = "",
publisher = IEEECS,
OPTaddress = "",
OPTmonth = "",
pages = "2-9",
OPTnote = "",
OPTannote = "",
keywords = "proof planning, existential quantifiers, specifications"
}
@Misc{Ashley:POPLMARK,
author = "Michael Ashley-Rollman and Karl Crary and Robert Harper",
title = "Twelf solution to POPLMark Challenge",
howpublished = "electronically available at {\tt http://fling-l.seas.upenn.edu/~plclub/cgi-bin/poplmark/index.php?title=Submission\_from\_Carnegie\_Mellon }",
OPTmonth = {},
OPTyear = {},
OPTnote = {},
OPTannote = {}
}
@PhDThesis{Aubin76,
author = "Raymond Aubin",
title = "Mechanizing Structural Induction",
school = "University of Edinburgh",
year = "1976",
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
keywords = "explicit induction"
}
@article{Aubin79,
author = "Raymond Aubin",
title = "Mechanizing Structural Induction",
journal = TCS,
year = "1979",
volume = "9",
pages = "329-362",
keywords = "explicit induction, induction heuristics, call-by-need
heuristic"
}
@article{Aubin79a,
author = "Raymond Aubin",
title = "Mechanizing Structural Induction, Part {I}: Formal System",
journal = TCS,
year = "1979",
volume = "9",
pages = "329-345",
keywords = "explicit induction"
}
@article{Aubin79b,
author = "Raymond Aubin",
title = "Mechanizing Structural Induction, Part {II}: Strategies",
journal = TCS,
year = "1979",
volume = "9",
pages = "347-362",
keywords = "explicit induction, induction heuristics, call-by-need
heuristic"
}
@inproceedings{Avellone:TABEAUX96,
author = "Alessandro Avelone and Mauro Ferrari",
title = "Almost Duplication-Free Tableau Calculi for Propositional Lax Logics",
booktitle = "Analytic Tableaux and Related Methods",
pages = "48--64",
year = "1996",
url = "citeseer.ist.psu.edu/avellone96almost.html"
}
@TechReport{Avenhaus84,
author = "J{\"u}rgen Avenhus",
title = "On the termination of the {K}nuth-{B}endix
completion algorithm",
institution = UKL,
year = "1984",
OPTcrossref = "",
OPTkey = "",
OPTtype = "",
number = "120/84",
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "termination of KBA, Knuth-Bendix completion"
}
@Book{Avenhaus95,
author = "J{\"u}rgen Avenhaus",
title = "Termersetzungssysteme",
publisher = SPR,
year = "1995",
OPTcrossref = "",
OPTkey = "",
OPTvolume = "",
OPTnumber = "",
OPTseries = "",
OPTaddress = "",
OPTedition = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "textbook"
}
@TechReport{AvenhausBecker92,
author = "J{\"u}rgen Avenhaus and Klaus Becker",
title = "Conditional Rewriting modula a Built-in Algebra",
institution = UKL,
year = 1992,
type = SEKI,
number = "{SR}-92-11",
keywords = "inductionless induction, rewriting, order sorted
algebra, built-in algebra"
}
@TechReport{Aydemir:TechReport09,
author = {B. Aydemir and S. Zdancewic and S. Weirich},
title = {Abstracting Syntax},
institution = {University of Pennsylvania},
year = {1990},
OPTkey = {},
type = {(CIS)},
number = {901},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@inproceedings{Aydemir05TPHOLs,
author = "B. Aydemir and A. Bohannon and M. Fairbairn and J. Foster
and B. Pierce and P. Sewell and D. Vytiniotis and
G. Washburn and S. Weirich and S. Zdancewic",
title = "Mechanized metatheory for the masses: The {POPLmark} Challenge",
pages = "50-65",
editor = "Joe Hurd and
Thomas F. Melham",
booktitle = "Eighteenth {I}nternational {C}onference
on {T}heorem {Proving} in {Higher Order Logics} ({TPHOLs})",
series = LNCS,
volume = "3603",
year = "2005",
publisher = "Springer"
}
@inproceedings{Aydemir:POPL08,
author = "B. Aydemir and Arthur Chargueraud and B. Pierce and Randy Pollack and Stephanie Weirich. ",
title = "Engineering Formal Metatheory",
pages = "3--15r",
editor = "Phil Wadler",
booktitle = "35th {A}nnual {ACM} {SIGPLAN-SIGACT} {S}ymposium on {P}rinciples of {P}rogramming {L}anguages",
publisher = "ACM",
year = "2008"
}
%%% B
@inproceedings{Barras:FOSSACS08,
author = {Bruno Barras and
Bruno Bernardo},
title = {The Implicit Calculus of Constructions as a Programming
Language with Dependent Types},
booktitle = {11th {I}nternational {C}onference on {F}oundations of {S}oftware {S}cience and {C}omputational {S}tructures {(FOSSACS'08)}},
editor = {Roberto M. Amadio},
year = {2008},
publisher = {Springer},
series = {Lecture Notes in Computer Science (LNCS 4962)},
pages = {365-379}
}
@inproceedings{Baelde:LICS12,
author = {David Baelde and
Gopalan Nadathur},
title = {Combining Deduction Modulo and Logics of Fixed-Point
Definitions},
booktitle = {27th Annual IEEE Symposium on Logic in
Computer Science (LICS'12)},
year = {2012},
pages = {105-114},
publisher = {IEEE},
year = {2012}
}
@PhDThesis{baelde:PhD,
author = {David Baelde},
title = {A linear approach to the proof-theory of least and greatest fixed points},
school = "\'{E}cole Polytechnique",
year = 2008
}
@inproceedings{Barras:TYPES09,
author = {Bruno Barras and Pierre Corbineau and Benjamin Gr\'{e}goire and Hugo
Herbelin and Jorge Luis Sacchini},
title = {A New Elimination Rule for the Calculus of Inductive Constructions},
booktitle = {Types for Proofs and Programs (TYPES'08)},
editor = {Stefano Berardi and Ferruccio Damiani and Ugo De'Liguoro},
year = {2009},
isbn = {978-3-642-02443-6},
pages = {32--48},
numpages = {17},
publisher = {Springer}
}
@inproceedings{DBLP:conf/flops/BartheS99,
author = {Gilles Barthe and
Bernard P. Serpette},
title = {Partial Evaluation and Non-inference for Object Calculi.},
booktitle = {Fuji International Symposium on Functional and Logic Programming},
year = {1999},
pages = {53-67},
crossref = {DBLP:conf/flops/1999},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@proceedings{DBLP:conf/flops/1999,
editor = {Aart Middeldorp and
Taisuke Sato},
title = {Functional and Logic Programming, 4th Fuji International
Symposium, FLOPS'99, Tsukuba, Japan, November 11-13, 1999,
Proceedings},
booktitle = {FLOPS},
publisher = {Springer},
series = LNCS,
volume = {1722},
year = {1999},
isbn = {3-540-66677-X},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{Baker94,
author = "Siani Baker",
title = "A New Application for Explanation-Based
Generalization within Automated Deduction",
OPTcrossref = "",
OPTkey = "",
OPTvolume = "",
OPTnumber = "",
OPTseries = "",
pages = "177-191",
booktitle = CADE94,
year = "1994",
OPTorganization = "",
publisher = SPR,
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "induction, omega-rule, constructive omega-rule"
}
@InProceedings{BakerIrelandSmaill92,
author = "Siani Baker and Andrew Ireland and Alan Smaill",
title = "On the Use of the Constructive Omega-Rule within
Automated Deduction",
OPTcrossref = "",
OPTkey = "",
OPTvolume = "",
OPTnumber = "",
series = "LNAI 624",
pages = "214-225",
booktitle = "Proceedings of the Conference on Logic Programming
and Automated reasoning (LPAR--92), St.~Petersburg",
year = "1992",
OPTorganization = "",
publisher = SPR,
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "induction, omega-rule, constructive omega-rule"
}
@article{Baudinet92,
author = "Marianne Baudinet",
title = "Proving Termination Properties of Prolog Programs: A Semantic Approach",
journal = "Journal of Logic Programming",
volume = "14",
number = "1\&2",
pages = "1-29",
year = "1992"
}
@PhdThesis{bauer:thesis,
author = {Lujo Bauer},
title = {Access Control for the {W}eb via Proof-carrying Authorization},
school = {Princeton University},
year = {2003},
month = nov,
url = {http://www.ece.cmu.edu/~lbauer/papers/thesis.pdf}
}
@inproceedings{Bauer:security02,
author = {Lujo Bauer and
Michael A. Schneider and
Edward W. Felten},
title = {A General and Flexible Access-Control System for the Web},
editor = {Dan Boneh},
booktitle = {11th USENIX Security Symposium},
year = {2002},
pages = {93-108},
publisher = {USENIX}
}
@inproceedings{Bauer:CSF10,
author = {Lujo Bauer and
Limin Jia and
Divya Sharma},
title = {Constraining Credential Usage in Logic-Based Access Control},
booktitle = {Proceedings of the 23rd IEEE Computer Security Foundations
Symposium (CSF'10)},
year = {2010},
publisher = {IEEE Computer Society},
pages = {154-168}
}
@InProceedings{Baumgartner93,
author = "Peter Baumgartner",
title = "A Model Elimination Calculus with Built-in Theories",
OPTcrossref = "",
OPTkey = "",
OPTeditor = "",
OPTvolume = "",
OPTnumber = "",
series = "LNAI 671",
pages = "30-42",
booktitle = "GWAI-92: Advances in Artificial Intelligence, 16th
German Conference on Artificial Intelligence",
year = "1993",
OPTorganization = "",
publisher = SPR,
OPTaddress = "",
month = aug,
OPTnote = "",
OPTannote = ""
}
@TechReport{BBH91,
author = "Richard Barnett and David Basin and Jane Hesketh",
title = "A Recursion Planning Analysis of Inductive Completion",
institution = DAI,
year = "1991",
OPTcrossref = "",
OPTkey = "",
type = DAIRP,
number = "518",
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "inductionless induction, Huet & Hullot Method, rippling,
nqthm, explicit induction"
}
@Article{BBH93,
author = "Richard Barnett and David Basin and Jane Hesketh",
title = "A Recursion Planning Analysis of Inductive Completion",
OPTcrossref = "",
OPTkey = "",
journal = "Annals of Mathematics and Artificial Intelligence",
year = "1993",
volume = "8",
number = "3-4",
pages = "363-381",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = {inductionless induction, Huet & Hullot Method,
rippling, nqthm, explicit induction}
}
@Article{BasinWalsh96a,
author = "Basin, David and Toby Walsh",
title = "A Calculus for and Termination of Rippling",
journal = JAR,
year = 1996,
OPTkey = "",
volume = 16,
number = 2,
pages = "147--180",
OPTmonth = "",
OPTnote = ""
}
@techreport{BBKM93,
author = {David Basin and Alan Bundy and Ina Kraan and Sean Matthews},
title = {A Framework for Program Development Based on
Schematic Proof},
institution = {Max--Planck--Institut f{\"u}r Informatik,
Saarbr{\"u}cken, Germany and University of Edinburgh,
Scotland},
year = {1993},
keywords = {program synthesis, schematic proof}
}
@inproceedings{BachmairTiwari00:CADE,
TITLE = {Abstract Congruence Closure and Specializations},
AUTHOR = {Leo Bachmair and Ashish Tiwari},
BOOKTITLE = {Conference on Automated Deduction, CADE '2000},
EDITOR = {David McAllester},
PAGES = {64--78},
PUBLISHER = {Springer-Verlag},
SERIES = LNAI,
VOLUME = 1831,
MONTH = jun,
YEAR = 2000,
ADDRESS = {Pittsburgh, PA}
}
@InProceedings{Bachmair88,
author = "Leo Bachmair",
title = "Proof by Consistency in Equational Theories",
booktitle = LICS88,
year = "1988",
pages = "228-233",
OPTorganization = "",
OPTpublisher = "",
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
keywords = "inductive completion, inductive reducibility,
covering sets, proof by consistency"
}
@InProceedings{BachmairDershowitz86,
author = "Leo Bachmair and Nachum Dershowitz",
title = "Commutation, Transformation, and Termination",
booktitle = CADE86,
year = "1986",
OPTpages = "",
OPTorganization = "",
publisher = SPR,
OPTaddress = "",
OPTmonth = "",
note = "Lecture Notes in Computer Science (LNCS) 230",
keywords = "quasi cummutation, termination of trs"
}
@InProceedings{BachmairDershowitz87,
author = "Leo Bachmair and Nachum Dershowitz",
title = "Completion for rewriting modulo a congruence",
booktitle = RTA87,
year = "1987",
pages = "192-203",
OPTorganization = "",
OPTpublisher = "",
OPTaddress = "",
month = may,
OPTnote = "",
keywords = "term rewriting, rewriting modulo a congruence"
}
@InProceedings{BachmairDershowitzHsiang86,
author = "Leo Bachmair and Nachum Dershowitz and Jieh Hsiang",
title = "Orderings for equational proofs",
OPTcrossref = "",
OPTkey = "",
OPTvolume = "",
OPTnumber = "",
OPTseries = "",
pages = "346-357",
booktitle = LICS86,
year = "1986",
OPTorganization = "",
OPTpublisher = "",
OPTaddress = "",
OPTmonth = "",
OPTnote = "",
OPTannote = "",
keywords = "complexity ordering, proof ordering"
}
@inbook{BachmairDershowitzPlaisted92,
author = "Leo Bachmair and Nachum Dershowitz and David A.~Plaisted",
title = "Completion without Failure",
chapter = "one",
year = "1992",