forked from mgrabmueller/TransformersStepByStep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibliography.bib
16677 lines (15202 loc) · 529 KB
/
bibliography.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
% bibliography.bib -- Martin's personal bibliography
%
@string{ActInf = "Acta Informatica"}
@string{CACM = "Communications of the {ACM}"}
@string{CompJ = "Computer Journal"}
@string{Dobbs = "Dr. Dobb's Journal"}
@string{IPL = "Information Processing Letters"}
@string{IEEETransComp = "IEEE Transactions on Computers"}
@string{IEEETransSWE = "IEEE Transactions on Software Engineering"}
@string{ISJ = "{IBM} Systems Journal"}
@string{JACM = "Journal of the ACM"}
@string{JFP = "Journal of Functional Programming"}
@string{JSS = "Journal of Systems and Software"}
@string{LNCS = "Lecture Notes in Computer Science"}
@string{LSC = "Lisp and Symbolic Computation"}
@string{MK = "Morgan Kaufman"}
@string{SPE = "Software Practice and Experience"}
@string{SIGPLAN = "ACM SIGPLAN Notices"}
@string{TECS = "ACM Transactions on Embedded Computer Systems"}
@string{TOPLAS = "ACM Transactions on Programming Languages and Systems"}
@string{TransCompSys = "ACM Transactions on Computer Systems"}
@string{TransSWE = "ACM Transactions on Software Engineering"}
@string{ACM = "ACM Press"}
@string{AP = "Academic Press"}
@string{AW = "Addison-Wesley"}
@string{BCS = "British Computer Society"}
@string{CUP = "Cambridge University Press"}
@string{ENH = "Elsevier-North Holland"}
@string{ES = "Elsevier Science Publishers"}
@string{IBM = "IBM Corp."}
@string{IEEE = "IEEE Press"}
@string{PH = "Prentice-Hall"}
@string{MGH = "McGraw-Hill"}
@string{NH = "North Holland"}
@string{MIT = "MIT Press"}
@string{SV = "Springer-Verlag"}
@string{UA = "USENIX Association"}
@string{Wiley = "Wiley"}
@string{CMU = "Carnegie Mellon University"}
@string{CORNELL = "Cornell University"}
@string{DECSRC = "DEC Systems Research Center, Palo Alto, CA"}
@string{DECWRL = "DEC Western Research Laboratory, Palo Alto, CA"}
@string{DIKU = "Department of Computer Science (DIKU), University of Copenhagen"}
@string{INRIA = "Institut National de la Recherche en Informatique et Automatique"}
@string{Lund = "Lund University, Sweden"}
@string{MITAI = "MIT AI Laboratory"}
@string{MITLCS = "MIT Laboratory for Computer Science"}
@string{PARC = "Xerox PARC, Palo Alto, CA"}
@string{PRINCETON = "Department of Computer Science, Princeton University"}
@string{RICE = "Rice University"}
@string{UCB = "University of California, Berkeley"}
@string{UKC = "Computing Laboratory, The University of Kent at Canterbury"}
@string{UCSC = "University of California, Santa Cruz"}
@Misc{ACM1972Lectures,
author = {{ACM German Chapter}},
title = {Lectures {II} -- 1972},
year = 1972
}
@article{Abadi1991Dynamic,
author = {Mart{\'i}n Abadi and Luca Cardelli and Benjamin
Pierce and Gordon Plotkin},
title = {Dynamic typing in a statically typed language},
journal = TOPLAS,
volume = 13,
number = 2,
year = 1991,
issn = {0164-0925},
pages = {237--268},
doi = {http://doi.acm.org/10.1145/103135.103138},
publisher = ACM,
}
@Book{Abadi1997TheoryOfObjects,
author = {Mart{\'i}n Abadi and Luca Cardelli},
title = {A Theory of Objects},
publisher = SV,
year = 1997
}
@Book{Abelson1996SICP,
author = {Harold Abelson and Gerald Jay Sussman and Julie
Sussman},
title = {Structure and Interpretation of Computer Programs},
publisher = MIT,
year = 1996,
edition = {2nd}
}
@Misc{Adams-FirstClassSchemeXerox,
author = {Norman Adams and Pavel Curtis and Mike Spreitzer},
title = {First-Class Data-type Representation in
{SchemeXerox}},
url = {citeseer.nj.nec.com/4990.html}
}
@InProceedings{Agat1997TypesRegister,
author = {Johan Agat},
title = {Types for Register Allocation},
booktitle = {Proceedings of IFL'97},
year = 1997,
volume = 1467,
series = LNCS
}
@Book{Aho1982DataAlgorithms,
author = {Alfred V. Aho and John E. Hopcroft and Jeffrey
D. Ullman},
title = {Data Structures and Algorithms},
publisher = AW,
year = 1982,
series = {Computer Science and Information Processing}
}
@InProceedings{Aiken1994SetConstraints,
author = {A. Aiken},
title = {Set Constraints: Results, Applications and Future
Directions},
booktitle = {Principles and Practice of Computer Programming},
year = 1994,
editor = {A. Borning},
volume = 874,
series = LNCS,
publisher = SV
}
@Article{AitKaci1993MeaningOfLife,
author = {Hassan A{\"\i}t-Kaci and Andreas Podelski},
title = {Towards a Meaning of {LIFE}},
journal = {Journal of Logic Programming},
year = 1993,
volume = 16,
number = {3 \& 4},
pages = {195--234}
}
@INPROCEEDINGS{AlbertHanusHuchOliverVidal02WFLP,
author = {Elvira Albert and Michael Hanus and Frank Huch and
Javier Oliver and Germ{\'a}n Vidal},
title = {An Operational Semantics for Declarative
Multi-Paradigm Languages},
year = 2002,
address = {Grado (Italy)},
booktitle = {Proc.\ of the 11th International Workshop on
Functional and (Constraint) Logic Programming (WFLP
2002)},
publisher = {Research Report UDMI/18/2002/RR, Universit{\`a}
degli Studi di Udine},
pages = {7--20},
abstract = { In this paper we define an operational semantics
for functional logic languages covering notions like
laziness, sharing, concurrency, non-determinism,
etc. Such a semantics is not only important to
provide appropriate language definitions to reason
about programs and check the correctness of
implementations but it is also a basis to develop
language-specific tools, like program tracers,
profilers, optimizers, etc. First, we define a
"big-step" semantics in natural style to relate
expressions and their evaluated results. Since this
semantics is not sufficient to cover concurrency,
search strategies, or to reason about costs
associated to particular computations, we also
define a "small-step" operational semantics covering
the features of modern functional logic languages. }
}
@InProceedings{Andreoli1993Interaction,
author = {Jean-Marc Andreoli and Paolo Ciancarini and Remo
Pareschi},
title = {Interaction Abstract Machines},
booktitle = {Research Directions in Concurrent Object Oriented
Programming},
pages = {257--280},
year = 1993,
editor = {Agha and Wegner and Yonezawa}
}
@article{ Appel1987GCFaster,
author = "Andrew W. Appel",
title = "Garbage Collection can be Faster than Stack
Allocation",
journal = "Information Processing Letters",
volume = 25,
number = 4,
publisher = "North Holland",
address = "Princeton University, Dept. Computer Science,
Princeton, NJ, 08544",
pages = "275--279",
year = 1987,
url = "citeseer.nj.nec.com/appel87garbage.html"
}
@inproceedings{Appel1987StandardMLCompiler,
author = "Andrew W. Appel and David B. MacQueen",
title = "{A Standard {ML} Compiler}",
booktitle = "{Proceedings of the Conference on Functional
Programming Languages and Computer Architecture}",
volume = 274,
publisher = "Springer, Berlin",
address = "Portland, Oregon, USA, September 14--16",
pages = "301--324",
year = 1987,
url = "citeseer.nj.nec.com/appel87standard.html"
}
@inproceedings{Appel1988RealTimeCC,
author = {A. W. Appel and J. R. Ellis and K. Li},
title = {Real-time concurrent collection on stock
multiprocessors},
booktitle = {Proceedings of the ACM SIGPLAN 1988 conference on
Programming Language design and Implementation},
year = 1988,
isbn = {0-89791-269-1},
pages = {11--20},
location = {Atlanta, Georgia, United States},
doi = {http://doi.acm.org/10.1145/53990.53992},
publisher = ACM,
}
@TechReport{Appel1989RuntimeSystem,
author = {Andrew W. Appel},
title = {A Runtime System},
institution = {Princeton University},
year = 1989,
number = {CS-TR-220-89},
month = may
}
@article{ Appel1989Simple,
author = "Andrew W. Appel",
title = "Simple Generational Garbage Collection and Fast
Allocation",
journal = "Software Practice and Experience",
volume = 19,
number = 2,
publisher = "Wiley",
pages = "171--183",
year = 1989,
url = "citeseer.nj.nec.com/appel88simple.html"
}
@Book{Appel1992CompilingWithContinuations,
author = {Andrew W. Appel},
title = {Compiling with Continuations},
publisher = CUP,
year = 1992
}
@article{Appel1993Critique,
author = "Andrew W. Appel",
title = "A Critique of Standard {ML}",
journal = "Journal of Functional Programming",
volume = 3,
number = 4,
pages = "391-429",
year = 1993,
url = "citeseer.nj.nec.com/appel92critique.html"
}
@Book{Appel1998MmodernCompiler,
author = {Andrew W. Appel},
title = {Modern Compiler Implementation in C},
publisher = CUP,
year = 1998
}
@inproceedings{ Apt1997Search,
author = "Krzysztof R. Apt and Andrea Schaerf",
title = "Search and Imperative Programming",
booktitle = "Conference Record of {POPL} 97: The 24TH {ACM}
{SIGPLAN}-{SIGACT} Symposium on Principles of
Programming Languages, Paris, France",
address = "New York, NY",
pages = "67--79",
year = 1997,
url = "citeseer.nj.nec.com/apt97search.html"
}
@Article{Apt1998Alma,
author = {Krzysztof R. Apt and Jacob Brunekreef and Vincent
Partington and Andrea Schaerf},
title = {Alma-0: An Imperative Language that Supports
Declarative Programming},
journal = {ACM Toplas},
year = 1998,
volume = 20,
number = 5,
pages = {1014--1066}
}
@misc{ Apt1998Integrating,
author = "K. Apt and A. Schaerf",
title = "Integrating constraints into an imperative
programming language",
text = "K. R. Apt and A. Schaerf. Integrating constraints
into an imperative programming language,
1998. Submitted. Available from
\url{http://www.cwi.nl/~apt}.",
year = 1998,
url = "citeseer.nj.nec.com/apt98integrating.html"
}
@InProceedings{Apt1999AlmaProject,
author = {Krzysztof R. Apt and Andrea Schaerf},
title = {The {Alma} Project, or How First Order Logic Can
Help Us in Imperative Programming},
booktitle = {Correct System Design},
pages = {89--113},
year = 1999,
editor = {E.-R. Olderog and B. Steffen},
number = 1710,
series = LNCS,
publisher = SV
}
@InProceedings{Ariola1998MonadicState,
author = {Zena M. Ariola and Amr Sabry},
title = {Correctness of Monadic State: An Imperative
Call-by-Need Calculus},
booktitle = {Proceedings of 25th ACM SIGPLAN-SIGACT Symposium on
Principles of Programming Languages},
year = 1998,
pages = "62--73",
url = "citeseer.nj.nec.com/ariola98correctness.html"
}
@Article{Ariola2002LambdaLetrec,
author = {Zena M. Ariola and Stefan Blom},
title = {Skew confluence and the lambda calculus with letrec},
journal = {Annals of pure and applied logic},
year = 2002,
volume = 117,
number = {1--3},
pages = {97-170}
}
@PhdThesis{Armstrong2003Thesis,
author = {Joe Armstrong},
title = {Making reliable distributed systems in the presence
of software errors},
school = {Royal Institute of Technology},
year = 2002,
address = {Stockholm, Sweden},
month = dec
}
@inproceedings{Ashley1094EfficientMultiple,
author = "J. Michael Ashley and R. Kent Dybvig",
title = "An Efficient Implementation of Multiple Return
Values in Scheme",
booktitle = "{LISP} and Functional Programming",
pages = "140-149",
year = 1994,
url = "citeseer.nj.nec.com/article/ashley94efficient.html"
}
@Misc{AspectC,
title = {{AspectC}},
key = {AspectC},
note = {Available from:
\url{http://www.cs.ubc.ca/labs/spl/projects/aspectc.html},
last visited on 2003-11-26},
}
@Misc{AspectJ,
title = {{AspectJ}},
key = {AspectJ},
note = {Availabl from: \url{http://eclipse.org/aspectj/},
last visited on 2003-11-26}
}
@inproceedings{Augustsson1998Cayenne,
author = "Lennart Augustsson",
title = "Cayenne - a Language with Dependent Types",
booktitle = "International Conference on Functional Programming",
pages = "239--250",
year = 1998,
url = "citeseer.nj.nec.com/augustsson98cayenne.html"
}
@Article{Avesani1990COOL,
author = {P. Avesani and A. Perini and F. Ricci},
title = {{COOL}: An Object System with Constraints},
journal = {TOOLS 2},
year = 1990,
month = jun
}
@Article{Axford1996Aladin,
author = {Tom Axford and Mike Joy},
title = {Aladin: An abstract machine for integrating
functional and procedural programming},
journal = {Journal of Programming Languages},
year = 1996,
volume = 4,
pages = {63--76}
}
@inproceedings{BT95a:ILPS,
author = {Bekkers, Yves and Tarau, Paul},
title = {Monadic {C}onstructs for {L}ogic {P}rogramming},
booktitle = {Proceedings of ILPS'95},
editor = "Lloyd, John",
year = 1995,
month = dec,
address = "Portland, Oregon",
pages = "51--65",
publisher = MIT
}
@inproceedings{Backhouse1998GenericProgramming,
AUTHOR = "Backhouse, R. and Jansson, P. and Jeuring, J. and
Meertens, L.",
TITLE = "Generic Programming --- An Introduction",
booktitle = LNCS,
PAGES = "28--115",
VOLUME = 1608,
PUBLISHER = SV,
NOTE = "Revised version of lecture notes for AFP'98.",
YEAR = 1999
}
@Article{Backus1978Liberated,
author = {John Backus},
title = {Can Programming be Liberated from the von {Neumann}
Style? {A} Functional Style and its Algebra of
Programs},
journal = CACM,
year = 1978,
volume = 21,
number = 8,
pages = {613--641},
month = aug
}
@Article{Badros2002Cassowary,
author = {Greg Badros and Alan Borning and Peter J. Stuckey},
title = {The {Cassowary} Linear Arithmetic Constraint Solving
Algorithm},
journal = {ACM Transactions on Computer-Human Interaction},
year = 2001,
volume = 8,
number = 4,
pages = {267--306},
month = dec
}
@inproceedings{Baker1982AdaFrontend,
author = {T. P. Baker},
title = {A single-pass syntax-directed front end for Ada},
booktitle = {Proceedings of the 1982 SIGPLAN symposium on
Compiler construction},
year = 1982,
isbn = {0-89791-074-5},
pages = {318--326},
location = {Boston, Massachusetts, United States},
}
@article{Baker1982OverloadResolution,
author = {T. P. Baker},
title = {A One-Pass Algorithm for Overload Resolution in Ada},
journal = TOPLAS,
volume = 4,
number = 4,
year = 1982,
issn = {0164-0925},
pages = {601--614},
doi = {http://doi.acm.org/10.1145/69622.69623},
publisher = ACM,
}
@Book{Barthe2002AppliedSemantics,
ALTauthor = {},
editor = {Gilles Barthe and Peter Dybvier and Lu{\'\i}s Pinto
and Jo{\~a}o Saraiva},
title = {Applied Semantics},
publisher = SV,
year = {2002},
number = {2395},
series = LNCS
}
@TechReport{Bartlett1989SchemeToC,
author = {Joel F. Bartlett},
title = {{SCHEME-$>$C: A Portable Scheme-to-C Compiler}},
institution = {Western Research Laboratory},
year = 1989,
type = {Research report},
number = {89/1},
address = {100 Hamilton Avenue, Palo Alto, California 94301
USA}
}
@inproceedings{ Bartlett1990Generational,
author = "Joel F. Bartlett",
title = "{A} generational compacting garbage collector for
{C}++",
booktitle = "{ECOOP}/{OOPSLA} Workshop on Garbage Collection in
Object-Oriented Systems",
address = "Ottawa, Canada",
year = 1990,
url = "citeseer.nj.nec.com/230349.html"
}
@article{Bauer1978WideSpectrum,
author = {F. L. Bauer and M. Broy and R. Gnatz and W. Hesse
and B. Krieg-Br{\"u}ckner and H. Partsch and
P. Pepper and H. W{\"o}ssner},
title = {Towards a wide spectrum language to support program
specification and program development},
journal = {SIGPLAN Notices},
volume = 13,
number = 12,
year = 1978,
issn = {0362-1340},
pages = {15--24},
doi = {http://doi.acm.org/10.1145/954587.954588},
publisher = ACM,
}
@Book{Bauer1985CIP,
author = {Friedrich L. Bauer},
title = {{The Munich Project CIP. Volume I: The Wide Spectrum
Language CIP-L}},
publisher = SV,
year = 1985,
volume = 183,
series = LNCS
}
@InProceedings{Baumgartner2001FPinBrew,
author = {Gerald Baumgartner and Martin Jansche and
Christopher D. Peisert},
title = {Support for Functional Programming in Brew},
crossref = {Striegnitz2001MPOOL},
booktitle = {Multiparadigm Programming with Object-Oriented
Languages (MPOOL)},
pages = {111--125},
year = 2001
}
@TechReport{Bawden1988SyntacticClosures,
author = {Alan Bawden and Jonathan Rees},
title = {Syntactic Closures},
institution = MITAI,
year = 1988,
number = {AIM-1049},
month = jun
}
@InProceedings{Bawden2000FirstClassMacros,
author = {Alan Bawden},
title = {First-class macros have types},
booktitle = {POPL '00: 27th ACM Symp. Princ. of Prog. Langs.},
year = 2000
}
@InProceedings{Benson1994libscheme,
author = {Brent W. Benson},
title = {libscheme: {Scheme} as a {C} library},
booktitle = {Usenix Very High-level Languages Symposium},
year = 1994
}
@Book{Bentley1988Pearls,
author = {Jon Bentley},
title = {More Programming Pearls},
publisher = AW,
year = 1988
}
@InBook{Benton2002MonadsEffects,
author = {Nick Benton and John Hughes and Eugenio Moggi},
ALTeditor = {},
title = {Applied Semantics},
chapter = {Monads and Effects},
publisher = SV,
year = {2002},
OPTcrossref = {Barthe2002AppliedSemantics},
number = {2395},
series = LNCS
}
@article{Biagioni1998SafeForSpace,
author = "Edoardo Biagioni and Ken Cline and Peter Lee and
Chris Okasaki and Chris Stone",
title = "Safe-for-Space Threads in Standard {ML}",
journal = "Higher-Order and Symbolic Computation",
volume = 11,
number = 2,
pages = "209-225",
year = 1998,
url = "citeseer.nj.nec.com/33216.html"
}
@article{ Bigot1999ReturnValue,
author = "Peter A. Bigot and Saumya K. Debray",
title = "Return Value Placement and Tail Call Optimization in
High Level Languages",
journal = "Journal of Logic Programming",
volume = 38,
number = 1,
pages = "1-29",
year = 1999,
url = "citeseer.nj.nec.com/bigot99return.html"
}
@Book{Bird1988IntroFP,
author = {Richard Bird and Philip Wadler},
title = {{Introduction to Functional Programming}},
publisher = PH,
year = 1988
}
@Article{Bird1997HasteSpeed,
author = {Richard Bird and Geraint Jones and Oege de Moor},
title = {More Haste, Less Speed: Lazy Versus Eager
Evaluation},
journal = {Journal of Functional Programming},
year = 1997,
volume = 7,
number = 5,
pages = {541--547},
month = sep
}
@inproceedings{Bird2003TroubleShared,
author = {Richard Bird and Ralf Hinze},
title = {Functional Pearl trouble shared is trouble halved},
booktitle = {Proceedings of the ACM SIGPLAN workshop on Haskell},
year = 2003,
isbn = {1-58113-758-3},
pages = {1--6},
location = {Uppsala, Sweden},
doi = {http://doi.acm.org/10.1145/871895.871896},
publisher = ACM,
}
@inproceedings{Blackburn2002Beltway,
author = {Stephen M. Blackburn and Richard Jones and Kathryn
S. McKinley and J. Eliot B. Moss},
title = {Beltway: getting around garbage collection gridlock},
booktitle = {Proceedings of the ACM SIGPLAN 2002 Conference on
Programming language design and implementation},
year = 2002,
isbn = {1-58113-463-0},
pages = {153--164},
location = {Berlin, Germany},
doi = {http://doi.acm.org/10.1145/512529.512548},
publisher = ACM,
}
@InProceedings{Blazevic2001Environment,
author = {Mario Bla{\v z}evi{\'c} and Zoran Budimac},
title = {Implementing Extensible Compilers},
crossref = {Striegnitz2001MPOOL},
booktitle = {Multiparadigm Programming with Object-Oriented
Languages (MPOOL)},
pages = {97--110},
year = {2001}
}
@Misc{Blume1997SeparateCompilationScheme,
author = {Matthias Blume},
title = {Separate Compilation for {Scheme}},
howpublished = {Draft Paper},
year = 1997
}
@inproceedings{Boehm1982LogicExpressionsSideEffects,
author = {Hans-J. Boehm},
title = {A Logic for Expressions With Side-Effects},
booktitle = {Proceedings of the 9th ACM SIGPLAN-SIGACT Symposium
on Principles of Programming Languages},
year = 1982,
isbn = {0-89791-065-6},
pages = {268--280},
location = {Albuquerque, Mexico},
doi = {http://doi.acm.org/10.1145/582153.582182},
publisher = ACM,
}
@inproceedings{Boehm1986ImplementingRussel,
author = {Hans-Juergen Boehm and Alan Demers},
title = {Implementing {Russell}},
booktitle = {Proceedings of the 1986 SIGPLAN Symposium on
Compiler Construction},
year = 1986,
isbn = {0-89791-197-0},
pages = {186--195},
location = {Palo Alto, California, United States},
doi = {http://doi.acm.org/10.1145/12276.13330},
publisher = ACM,
},
@Misc{Bonniot2000StructuralInterfaces,
author = {Daniel Bonniot},
title = {Structural interfaces for {ML${}_{\leq}$}},
month = apr,
year = 2000
}
@inproceedings{Borning1997ConstraintsWeb,
author = {Alan Borning and Richard Lin and Kim Marriott},
title = {Constraints for the web},
booktitle = {Proceedings of the fifth ACM international
conference on Multimedia},
year = 1997,
isbn = {0-89791-991-2},
pages = {173--182},
location = {Seattle, Washington, United States},
doi = {http://doi.acm.org/10.1145/266180.266361},
publisher = ACM,
}
@InProceedings{Bother1998CompilingSchemeJava,
author = {Per Bothner},
title = {Kawa: Compiling {Scheme} to {Java}},
booktitle = {Usenix},
year = 1998,
address = {New Orleans},
month = jun
}
@InProceedings{Bothner1998Kawa,
author = {Per Bothner},
title = {Kawa - Compiling Dynamic Languages to the Java VM},
booktitle = {Usenix Conference},
year = 1998,
address = {New Orleans}
}
@Proceedings{Bramer2003AI2003,
title = {Proceedings of AI-2003, the Twentythird SGAI
International Conference on Innovative Techniques
and Applications of Artificial Intelligence},
year = 2003,
editor = {Max Bramer and Richard Ellis and Ann L. Macintosh},
volume = {XX},
series = {Applications and Innovations in Intelligent Systems},
address = {Cambridge, UK},
month = dec,
organization = BCS,
publisher = SV
}
@InProceedings{Brand2003ModalSatisfiability,
author = {Sebastian Brand and Rosella Gennari and Maarten de
Rijke},
title = {Constraint Programming for Modelling and Solving
Modal Satisfiability},
booktitle = {Ninth International Conference on Principles and
Practice of Constraint Programming},
pages = {795--800},
year = 2003,
editor = {Francesca Rossi},
month = sep,
publisher = SV
}
@InProceedings{Breitinger1996EdenCoordinationModel,
author = {Silvia Breitinger and Rita Loogen and Yolanda
Ortega-Mall{\'e}n and Ricardo Pe{\~n}a},
title = {The {Eden} Coordination Model for Distributed Memory
Systems},
crossref = {Chakravarty1996MPLP},
booktitle = {Multi-paradigm Logic Programming},
pages = {25--34},
year = 1996
}
@article{Broy1982SchorrWaite,
author = {Manfred Broy and Peter Pepper},
title = {Combining Algebraic and Algorithmic Reasoning: An
Approach to the Schorr-Waite Algorithm},
journal = {ACM Trans. Program. Lang. Syst.},
volume = 4,
number = 3,
year = 1982,
issn = {0164-0925},
pages = {362--381},
doi = {http://doi.acm.org/10.1145/357172.357175},
publisher = ACM,
}
@Proceedings{Broy1991MoP,
title = {Methods of Programming -- Selected Papers on the CIP
Project},
year = 1991,
editor = {Manfred Broy and Martin Wirsing},
volume = 544,
series = LNCS,
publisher = SV
}
@InProceedings{Brus1987Clean,
author = {T. Brus and M. C. J. D. van Eekelen and M. van Leer
and M. J. Plasmeijer and H.P. Barendregt},
title = {CLEAN - A Language for Functional Graph Rewriting},
booktitle = {Proc. of Conference on Functional Programming
Languages and Computer Architecture (FPCA '87),
Portland, Oregon, USA},
pages = {364--384},
year = 1987,
editor = {Kahn},
number = 274,
series = LNCS,
publisher = SV
}
@InProceedings{Bryant2001ExplicitProgramming,
author = {Avi Bryant and Andrew Catton and Kris De Volder and
Gail C. Murphy.},
title = {Explicit Programming },
booktitle = {Proceedings of 1st International Conference on
Aspect-Oriented Software Development},
pages = {10--18},
year = 2001,
month = apr
}
@article{Budd1998FunctionalProgramming,
author = {Timothy A. Budd},
title = {Functional programming and the fragile base class
problem},
journal = SIGPLAN,
volume = 33,
number = 12,
year = 1998,
issn = {0362-1340},
pages = {66--71},
doi = {http://doi.acm.org/10.1145/307824.307881},
publisher = ACM,
}
@InProceedings{Budd2002JensensDevice,
author = {Timothy A. Budd},
title = {The Return of {Jensen's} Device},
crossref = {Striegnitz2002MPOOL},
booktitle = {Multiparadigm Programming with Object-Oriented
Languages (MPOOL)},
pages = {45--63},
year = 2002
}
@INPROCEEDINGS{BuessowGrieskamp:99,
AUTHOR = {R. B{\"u}ssow and W. Grieskamp},
TITLE = {{A Modular Framework for the Integration of
Heterogenous Notations and Tools}},
BOOKTITLE = {Proc. of the 1st International Conference on
Integrated Formal Methods -- IFM'99},
YEAR = 1999,
EDITOR = {K. Araki and A. Galloway and K. Taguchi}
}
@TechReport{Burger1994SchemeMachine,
author = {Robert G. Burger},
title = {The Scheme Machine},
institution = {Indiana University, Computer Science Department},
year = 1994,
number = 413,
month = aug
}
@InProceedings{Burger1995RegisterAllocation,
author = {Robert G. Burger and Oscar Waddell and R. Kent
Dybvig},
title = {{Register Allocation Using Lazy Saves, Eager
Restores, and Greedy Shuffling}},
booktitle = {Conference on Programming Language Design and
Implementation},
pages = {130--138},
year = 1995,
volume = 30,
month = jun
}
@article{Burstall1977TransformationSystem,
author = {R. M. Burstall and John Darlington},
title = {A Transformation System for Developing Recursive
Programs},
journal = {J. ACM},
volume = 24,
number = 1,
year = 1977,
issn = {0004-5411},
pages = {44--67},
doi = {http://doi.acm.org/10.1145/321992.321996},
publisher = ACM,
}
@inproceedings{Burstall1980Hope,
author = "R. M. Burstall and D. B. MacQueen and
D. T. Sannella",
title = "{Hope: An Experimental Applicative Language}",
booktitle = "{Conference Record of the 1980 {LISP} Conference}",
publisher = ACM,
address = "Stanford University, Stanford, California",
pages = "136--143",
year = 1980,
month = aug,
url = "citeseer.nj.nec.com/burstall80hope.html"
}
@MISC{CIP1,
key = {CIP1},
TITLE = {{Constraint Imperative Programming}},
howpublished = {World Wide Web},
NOTE =
{Available from:\url{http://www.ncst.ernet.in/kbcs/vivek/issues/10.4/ravi/node10.html}, last visited: 2003-02-24},
YEAR = 1999
}
@MISC{CIP2,
key = {CIP2},
TITLE = {{Papers -- Constraint Imperative Programming}},
howpublished = {World Wide Web},
NOTE = {Available from:
\url{http://www.cs.washington.edu/research/constraints/cip/},
last visited: 2003-02-24},
YEAR = 2003
}
@InProceedings{Calcagno2003Implementing,
author = {Cristiano Calcagno and Walid Taha and Liwen Huang
and Xavier Leroy},
title = {{Implementing Multi-stage Languages Using ASTs,
Gensym, and Reflection}},
booktitle = {GPCE'2003},
year = 2003
},
@inproceedings{Cannarozzi2000ContaminatedGC,
author = {Dante J. Cannarozzi and Michael P. Plezbert and Ron
K. Cytron},
title = {Contaminated garbage collection},
booktitle = {Proceedings of the ACM SIGPLAN 2000 conference on
Programming language design and implementation},
year = 2000,
isbn = {1-58113-199-2},
pages = {264--273},
location = {Vancouver, British Columbia, Canada},
doi = {http://doi.acm.org/10.1145/349299.349334},
publisher = ACM,
}
@PhdThesis{CantwellSmith1982Reflection,
author = {Brian {Cantwell Smith}},
title = {Reflection and Semantics in a Procedural Language},
school = {Massachusetts Institute of Technology},
year = 1982,
month = jan,
note = {Also available as Technical Report
No.~MIT-LCS-TR-272}
}
@article{ Cardelli1987BasicPolymorphicTypeChecking,
author = "Luca Cardelli",
title = "Basic Polymorphic Typechecking",
journal = "Science of Computer Programming",
volume = 8,
number = 2,
pages = "147-172",
year = 1987,
url = "citeseer.nj.nec.com/cardelli88basic.html"
}
@InProceedings{Carlsson2002MonadsIncrementalComputing,
author = {Magnus Carlsson},
title = {Monads for Incremental Computing"},
booktitle = {Proceedings of the International Conference on
Functional Programming, ICFP'2002},
year = 2002,
month = oct
}
@InProceedings{Ceijtin2000FlowDirected,
author = {Henry Cejtin and Suresh Jagannathan and Stephen
Weeks},
title = {Flow-Directed Closure Conversion for Typed
Languages},
booktitle = {European Symposium on Programming},
pages = {56--71},
year = 2000,
month = mar
}
@Proceedings{Chakravarty1996MPLP,
title = {Multi-paradigm Logic Programming},
year = 1996,
editor = {Manuel M. T. Chakravarty and Yike Guo and Tetsuo
Ida},
number = {96--28},
series = {Forschungsberichte des Fachbereichs Informatik},
month = aug,
organization = {Technische Universit{\"a}t Berlin},