-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.bib
More file actions
2403 lines (2129 loc) · 78.7 KB
/
Copy pathreferences.bib
File metadata and controls
2403 lines (2129 loc) · 78.7 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
% BiBTeX database file
@string{UNK = {Unknown}}
@string{IETF = {{Internet Engineering Task Force}}}
@string{rfc = {{RFC}}}
@string{draft = {{Internet-Draft}}}
@string{IROS = "IEEE/RSJ Int.~Conf.~on Intelligent Robots and Systems (IROS)"}
@string{ICRA = "IEEE Int.~Conf.~on Robotics and Automation (ICRA)"}
@string{IJCAI = "International Joint Conference on Artificial Intelligence (IJCAI)"}
@InProceedings{CPS,
author = {Lee, E.A.},
booktitle = {11th IEEE International Symposium on Object Oriented
Real-Time Distributed Computing (ISORC)},
title = {{Cyber Physical Systems: Design Challenges}},
year = 2008,
optmonth = {may},
}
% pages = {363--369},
@InProceedings{CLIPS-Agent,
title = {{Incremental Task-level Reasoning in a Competitive
Factory Automation Scenario}},
author = {Tim Niemueller and Gerhard Lakemeyer and Alexander
Ferrein},
booktitle = {AAAI Spring Symposium 2013 - Designing Intelligent
AI},
year = {2013},
}
% address = {Stanford University, CA, USA},
% publisher = {AAAI},
@Article{CLIPS,
title = {{CLIPS: A powerful development and delivery expert system tool}},
author = {Robert M. Wygant},
journal = {Computers \& Industrial Engineering},
volume = 17,
number = {1--4},
year = 1989,
}
% pages = {546--549},
% issn = "0360-8352",
% doi = "10.1016/0360-8352(89)90121-6",
% url = "http://www.sciencedirect.com/science/article/pii/0360835289901216",
@Article{Rete,
author = {Forgy, Charles L.},
title = {Rete: A fast algorithm for the many pattern/many object pattern match problem},
journal = {Artificial Intelligence},
volume = {19},
number = {1},
month = sep,
year = {1982},
}
% pages = {17--37},
% issn = {0004-3702},
% shorttitle = {Rete},
% url = {http://www.sciencedirect.com/science/article/pii/0004370282900200},
% doi = {10.1016/0004-3702(82)90020-0},
% abstract = {The Rete Match Algorithm is an efficient method for
% comparing a large collection of patterns to a large
% collection of objects. It finds all the objects that
% match each pattern. The algorithm was developed for
% use in production system interpreters, and it has
% been used for systems containing from a few hundred
% to more than a thousand patterns and objects. This
% article presents the algorithm in detail. It
% explains the basic concepts of the algorithm, it
% describes pattern and object representations that
% are appropriate for the algorithm, and it describes
% the operations performed by the pattern matcher.},
% subsumes the following two
@Manual{CLIPS-RM,
title = {{CLIPS Reference Manuals}},
author = {Joseph C. Giarratano},
note = {\hfill\\\mbox{\url{http://clipsrules.sf.net/OnlineDocs.html}}},
year = 2007,
}
@Manual{CLIPS-UG,
title = {{CLIPS User's Guide}},
author = {Joseph C. Giarratano},
note = {\hfill\\\mbox{\url{http://clipsrules.sf.net/OnlineDocs.html}}},
year = 2007,
}
@InProceedings{Fawkes,
title = {{Design Principles of the Component-Based Robot
Software Framework Fawkes}},
author = {Tim Niemueller and Alexander Ferrein and Daniel Beck
and Gerhard Lakemeyer},
booktitle = {Int. Conf. on Simulation, Modeling, and Programming for
Autonomous Robots (SIMPAR)},
year = {2010},
}
% 2nd
% address = {Darmstadt, Germany},
% publisher = {Springer},
% series = {Lecture Notes in Computer Science},
@inproceedings{Gazebo-Design,
title={{Design and Use Paradigms for Gazebo, An Open-Source Multi-Robot Simulator}},
author={Koenig, Nathan and Howard, Andrew},
booktitle={{Int. Conf. on Intelligent Robots and Systems}},
year=2004,
}
% volume={3},
% pages={2149--2154},
% organization={IEEE}
@inproceedings{USARSim,
title={{USARSim: A robot Simulator for Research and Education}},
author={Carpin, Stefano and Lewis, Mike and Wang, Jijun and Balakirsky, Stephen and Scrapper, Chris},
booktitle=ICRA,
year=2007,
}
% pages={1400--1405},
% organization={IEEE}
@misc{LLSF-Rules,
author = {{LLSF Technical Committee}},
title={{RoboCup Logistic League sponsored by Festo -- Rules and Regulations 2014}},
year = 2014,
howpublished = {\url{http://www.robocup-logistics.org/rules}}
}
@inproceedings{Player-Stage,
title={{The Player/Stage Project: Tools for Multi-Robot and Distributed Sensor Systems}},
author={Gerkey, Brian and Vaughan, Richard T. and Howard, Andrew},
booktitle={{11th International Conference on Advanced Robotics (ICAR)}},
year={2003}
}
% volume={1},
% pages={317--323},
@InProceedings{Multi-Level-Abstraction,
title={{A Simulation Environment for Middle-Size Robots with Multi-level Abstraction}},
author={Beck, Daniel and Ferrein, Alexander and Lakemeyer, Gerhard},
booktitle={{RoboCup Symposium}},
year=2008,
}
% pages={136--147},
% publisher={Springer}
@inproceedings{RoboCup-Paper,
title={{Robocup: The Robot World Cup Initiative}},
author={Kitano, Hiroaki and Asada, Minoru and Kuniyoshi, Yasuo and Noda, Itsuki and Osawa, Eiichi},
booktitle={{1st Int. Conference on Autonomous Agents}},
year={1997},
}
% pages={340--347},
% organization={ACM}
@InProceedings{AMCL,
author = {Dieter Fox},
title = {KLD-Sampling: Adaptive Particle Filters},
booktitle = {Conf. on Neural Information Processing Systems (NIPS)},
year = {2001},
}
% publisher = {MIT Press},
@InProceedings {ROS,
author = {Morgan Quigley and Ken Conley and Brian P. Gerkey and Josh
Faust and Tully Foote and Jeremy Leibs and Rob
Wheeler and Andrew Y. Ng},
title = {{ROS: an open-source Robot Operating System}},
booktitle = {{ICRA Workshop on Open Source Software}},
year = 2009
}
@book{ros-book,
title={{Learning ROS for Robotics Programming}},
author={Martinez, Aaron and Fern{\'a}ndez, Enrique},
year={2015},
publisher={Packt Publishing Ltd}
}
@inproceedings{USARSimROS,
title={{Enabling codesharing in Rescue Simulation with USARSim/ROS}},
author={Kootbally, Zeid and Balakirsky, Stephen and Visser, Arnoud},
booktitle={{RoboCup Symposium}},
year={{2013}}
}
@InProceedings{LLSF2013,
title = {{RoboCup Logistics League Sponsored by Festo: A
Competitive Factory Automation Testbed}},
author = {Tim Niemueller and Daniel Ewert and Sebastian Reuter
and Alexander Ferrein and Sabina Jeschke and Gerhard
Lakemeyer},
booktitle = {RoboCup Symposium},
year = 2013,
}
% address = {Eindhoven, Netherlands},
@techreport{Carologistics2013,
title = {{The Carologistics RoboCup Logistics Team 2013}},
author = {Tim Niemueller and Daniel Ewert and Sebastian Reuter and Alexander Ferrein and Sabina Jeschke and Gerhard Lakemeyer},
institution = {RWTH Aachen University and Aachen University of Applied Sciences},
address = {Aachen, Germany},
year = {2013},
month = {June},
}
@InProceedings{Carologistics2014,
author = {Tim Niemueller and Sebastian Reuter and Daniel Ewert
and Alexander Ferrein and Sabina Jeschke and Gerhard
Lakemeyer},
title = {{Decisive Factors for the Success of the
Carologistics RoboCup Team in the RoboCup Logistics
League 2014}},
booktitle = {RoboCup Symposium -- Champion Teams Track},
year = {2014},
}
@InProceedings{Carologistics2015,
author = {Tim Niemueller and Sebastian Reuter and Daniel Ewert
and Alexander Ferrein and Sabina Jeschke and Gerhard
Lakemeyer},
title = {{The Carologistics Approach to Cope with the
Increased Complexity and New Challenges of the
RoboCup Logistics League 2015}},
booktitle = {RoboCup Symposium -- Champion Teams Track},
year = {2015},
}
@misc{Gazebo-DARPA,
author = {Evan Ackerman},
title={{DARPA Awards Simulation Software Contract to Open Source Robotics Foundation}},
year = {2012},
howpublished = "\url{http://spectrum.ieee.org/automaton/robotics/robotics-software/darpa-robotics-challenge-simulation-software-open-source-robotics-foundation}"
}
@InProceedings{Behavior-Engine,
title = {{A Lua-based Behavior Engine for Controlling the Humanoid Robot Nao}},
author = {Tim Niemueller and Alexander Ferrein and Gerhard Lakemeyer},
booktitle = {RoboCup Symposium},
year = {2009},
}
% address = {Graz, Austria},
%misc{Robotino,
% title={{Robotino--An Open Learning Mobile Robot System for Robocup}},
% author={Karras, Ulrich},
% year={2009},
% howpublished={Festo Didactic, Denkendorf, Germany}
%}
@InProceedings{MobRobEduRobotino,
author = {Ulrich Karras and Dirk Pensky and Octavio Rojas},
title = {{Mobile Robotics in Education and Research of Logistics}},
booktitle = {IROS 2011 -- Workshop on Metrics and Methodologies for
Autonomous Robot Teams in Logistics},
year = 2011,
}
@book{aspect-oriented,
title={{Aspect-Oriented Programming}},
author={Kiczales, Gregor and Lamping, John and Mendhekar, Anurag and Maeda, Chris and Lopes, Cristina and Loingtier, Jean-Marc and Irwin, John},
year={1997},
publisher={Springer}
}
@article{Rescue-Simulation-League,
title={{RoboCup Rescue Robot and Simulation Leagues}},
author={Akin, H. Levent and Ito, Nobuhiro and Jacoff, Adam and Kleiner, Alexander and Pellenz, Johannes and Visser, Arnoud},
journal={AI Magazine},
year={2013}
}
@article{Rescue-3d,
title={{Rescue3D: Making rescue simulation attractive to the public}},
author={Kleiner, Alexander and G{\"o}belbecker, Moritz},
year={2004},
publisher={Institut f{\"u}r Informatik, Universit{\"a}t Freiburg}
}
@misc{Soccer-Simulation,
author = {RoboCup},
title={{Soccer Simulation League}},
year = {retrieved Nov 4rd 2013},
howpublished = "\url{http://wiki.robocup.org/wiki/Soccer_Simulation_League}"
}
@InProceedings{LLSF2014,
title = {{Proposal for Advancements to the LLSF in 2014 and beyond}},
author = {Tim Niemueller and Gerhard Lakemeyer and Alexander Ferrein
and Sebastian Reuter and Daniel Ewert and Sabina
Jeschke and Dirk Pensky and Ulrich Karras},
booktitle = {ICAR -- 1st Workshop on Developments in RoboCup
Leagues},
year = 2013,
}
% address = {Montevideo, Uruguay},
% booktitle = {Proceedings of the International Conference on Advanced
% Robotics (ICAR) - 1st Workshop on Developments
% in RoboCup Leagues},
@InProceedings{RCLL2015Eval,
author = {Tim Niemueller and Sebastian Reuter and Alexander
Ferrein and Sabina Jeschke and Gerhard Lakemeyer},
title = {{Evaluation of the RoboCup Logistics League and
Derived Criteria for Future Competitions}},
booktitle = {RoboCup Symposium},
year = {2015},
}
@article{Lua,
title={{Lua-an extensible extension language}},
author={Ierusalimschy, Roberto and De Figueiredo, Luiz Henrique and Celes Filho, Waldemar},
journal={Softw., Pract. Exper.},
volume={26},
number={6},
year={1996},
}
% pages={635--652},
% publisher={Citeseer}
@techreport{Component-based-development,
title={{Component based development and advanced OO design}},
author={Collins-Cope, Mark},
year={2001},
institution={Technical report, Ratio Group Ltd}
}
@MastersThesis{tnthesis,
title = {{Developing A Behavior Engine for the Fawkes Robot-Control Software and its Adaptation to the Humanoid Platform Nao}},
author = {Niemueller, Tim},
school = {{RWTH Aachen University, Knowledge-Based Systems Group}},
year = {2009},
month = {April},
type = {Master Thesis}
}
@MastersThesis{Gazsim-Thesis,
title = {{Simulation of the RoboCup Logistic League with Fawkes and Gazebo for Multi-Robot Coordination Evaluation}},
author = {Zwilling, Frederik},
school = {{RWTH Aachen University, Knowledge-Based Systems Group}},
year = {2013},
month = {December},
type = {Bachelor Thesis},
}
@InProceedings{LLSF-Sim,
author = {Frederik Zwilling and Tim Niemueller and Gerhard Lakemeyer},
title = {{Simulation for the RoboCup Logistics League with
Real-World Environment Agency and Multi-level
Abstraction}},
booktitle = {RoboCup Symposium},
year = 2014,
}
@InProceedings{Colli,
title={{Robust collision avoidance in unknown domestic environments}},
author={Jacobs, Stefan and Ferrein, Alexander and Schiffer, Stefan and Beck, Daniel and Lakemeyer, Gerhard},
booktitle={RoboCup Symposium},
year=2009,
}
% pages={116--127},
% publisher={Springer}
@TechReport{Industry-4.0,
author = {Henning Kagermann and Wolfgang Wahlster and Johannes Helbig},
title = {{Recommendations for implementing the strategic
initiative INDUSTRIE 4.0}},
institution = {Platform Industrie 4.0},
year = 2013,
type = {{Final Report}},
}
% institution = {Platform Industrie 4.0 and National Academy of Science and Engineering},
% type = {{Final Report of the Industrie 4.0 Working Group}},
% month = apr,
% note = {http://www.plattform-i40.de/sites/default/files/Report_Industrie\%204.0_engl_1.pdf},
@TechReport{Industry-4.0-litrev,
author = {Mario Hermann and Tobias Pentek and Boris Otto},
title = {{Design Principles for Industrie 4.0 Scenarios: A Literature Review}},
institution = {Technische Universit\"at Dortmund},
year = {2015},
type = {Working Paper 01/2015},
}
@InProceedings{SmartFactory,
author = {Dominik Lucke and Carmen Constantinescu and Engelbert Westk{\"a}mper},
title = {Smart Factory -- A Step towards the Next Generation of Manufacturing},
booktitle = {Manufacturing Systems and Technologies for the New Frontier,
The 41st CIRP Conference on Manufacturing Systems},
year = {2008},
OPTeditor = {Mamoru Mitsuishi and Kanji Ueda and Fumihiko Kimura},
OPTpages = {115--118},
OPTmonth = {},
OPTaddress = {Tokyo, Japan},
OPTpublisher = {Springer},
}
@inproceedings{amigoni2013benchmarking,
title={Benchmarking through competitions},
author={Amigoni, F and Bonarini, A and Fontana, G and Matteucci, M and Schiaffonati, V},
booktitle={European Robotics Forum--Workshop on Robot Competitions: Benchmarking, Technology Transfer, and Education},
year={2013}
}
@article{wisspeintner2009robocup,
title={RoboCup@Home: Scientific competition and benchmarking for domestic service robots},
author={Wisspeintner, Thomas and Van Der Zant, Tijn and Iocchi, Luca and Schiffer, Stefan},
journal={Interaction Studies},
volume={10},
number={3},
year={2009},
}
@article{feil2007benchmarks,
title={Benchmarks for evaluating socially assistive robotics},
author={Feil-Seifer, David and Skinner, Kristine and Matari{\'c}, Maja J},
journal={Interaction Studies},
volume={8},
number={3},
pages={423--439},
year={2007},
publisher={John Benjamins Publishing Company}
}
% pages={392--426},
% publisher={John Benjamins Publishing Company}
@ARTICLE{5876197,
author={Anderson, M. and Jenkins, O.C. and Osentoski, S.},
journal={Robotics Automation Magazine, IEEE},
title={Recasting Robotics Challenges as Experiments [Competitions]},
year={2011},
month={June},
volume={18},
number={2},
}
%pages={10-11},
%doi={10.1109/MRA.2011.941627},
%ISSN={1070-9932},
@inproceedings{calisi2008unified,
title={A unified benchmark framework for autonomous Mobile robots and Vehicles Motion Algorithms (MoVeMA benchmarks)},
author={Calisi, Daniele and Iocchi, Luca and Nardi, Daniele},
booktitle={WS on experimental methodology and benchmarking in robotics research at RSS},
year={2008}
}
@inproceedings{behnke2006robot,
title={Robot competitions-ideal benchmarks for robotics research},
author={Behnke, Sven},
booktitle={Proc. of IROS-2006 Workshop on Benchmarks in Robotics Research},
year={2006}
}
@inproceedings{madhavan2009benchmarking,
title={Benchmarking and standardization of intelligent robotic systems},
author={Madhavan, Raj and Lakaemper, Rolf and Kalm{\'a}r-Nagy, Tam{\'a}s},
booktitle={Int. Conf. on Adv. Rob. (ICAR)},
year={2009},
}
% pages={1--7},
% organization={IEEE}
@inproceedings{del2006benchmarks,
title={Benchmarks in robotics research},
author={del Pobil, Angel P and Madhavan, Rad and Messina, Elena},
booktitle={IROS 2006 workshop},
year={2006}
}
@inproceedings{holz2013benchmarking,
title={Benchmarking Intelligent Service Robots through Scientific Competitions: The RoboCup@ Home Approach.},
author={Holz, Dirk and Iocchi, Luca and van der Zant, Tijn},
booktitle={AAAI Spring Symposium: Designing Intelligent Robots},
year={2013}
}
@article{balint2012sat,
title={Sat challenge 2012 random sat track: Description of benchmark generation},
author={Balint, Adrian and Belov, Anton and J{\"a}rvisalo, Matti and Sinz, Carsten},
journal={SAT CHALLENGE 2012},
pages={72},
year={2012}
}
@article{karakovskiy2012mario,
title={The mario ai benchmark and competitions},
author={Karakovskiy, Sergey and Togelius, Julian},
journal={Computational Intelligence and AI in Games, IEEE Transactions on},
volume={4},
number={1},
pages={55--67},
year={2012},
publisher={IEEE}
}
@article{howe2002critical,
title={A critical assessment of benchmark comparison in planning},
author={Howe, Adele E and Dahlman, Eric},
journal={Journal of Artificial Intelligence Research},
volume={17},
number={1},
pages={1--33},
year={2002}
}
@article{long2000aips,
title={The {AIPS}-98 planning competition},
author={Long, Derek and Kautz, Henry and Selman, Bart and Bonet, Blai and Geffner, Hector and Koehler, Jana and Brenner, Michael and Hoffmann, J{\"o}rg and Rittinger, Frank and Anderson, Corin R and others},
journal={AI magazine},
volume={21},
number={2},
year={2000}
}
% pages={13},
@incollection{wisspeintner2010robocup,
title={Robocup@home: Results in benchmarking domestic service robots},
author={Wisspeintner, Thomas and van der Zan, Tijn and Iocchi, Luca and Schiffer, Stefan},
booktitle={RoboCup 2009: Robot Soccer World Cup XIII},
year={2010},
}
% pages={390--401},
% publisher={Springer}
@article{DBLP:journals/aim/BalchY02,
author = {Tucker R. Balch and
Holly A. Yanco},
title = {Ten Years of the {AAAI} Mobile Robot Competition and Exhibition},
journal = {{AI} Magazine},
volume = {23},
number = {1},
year = {2002},
}
% pages = {13--22},
% url = {http://www.aaai.org/ojs/index.php/aimagazine/article/view/1603},
% timestamp = {Wed, 29 Dec 2010 17:08:37 +0100},
% biburl = {http://dblp.uni-trier.de/rec/bib/journals/aim/BalchY02},
% bibsource = {dblp computer science bibliography, http://dblp.org}
@TechReport{Dillmann04,
author = {R. Dillmann},
title = {Benchmarks for Robotics Research},
institution = {EURON},
year = {2004},
OPTkey = {},
OPTtype = {},
OPTnumber = {},
OPTaddress = {},
OPTmonth = {},
note = {{\scriptsize \mbox{\url{http://www.cas.kth.se/euron/euron-deliverables/ka1-10-benchmarking.pdf}}}}
}
@InProceedings{RoboDB,
title = {{A Generic Robot Database and its Application in
Fault Analysis and Performance Evaluation}},
author = {Tim Niemueller and Gerhard Lakemeyer and Siddhartha S. Srinivasa},
booktitle = IROS,
year = 2012,
}
% address = {Vilamoura, Algarve, Portugal},
% publisher = {IEEE/RAS},
@InProceedings{RCLL-Planning,
author = {Tim Niemueller and Gerhard Lakemeyer and Alexander Ferrein},
title = {{The RoboCup Logistics League as a Benchmark for Planning in Robotics}},
booktitle = {WS on Planning and Robotics (PlanRob) at Int. Conf. on Aut. Planning and Scheduling (ICAPS)},
year = {2015},
OPTmonth = {June},
OPTaddress = {Jerusalem, Israel},
}
@article{enslow2006best,
title={Best practices in international logistics},
author={Enslow, B},
journal={Aberdeen Group, Boston},
year={2006}
}
@incollection{nyhuis2006development,
title={Development of a Decentralized Logistics Controlling Concept},
author={Nyhuis, Peter and Wriggers, Felix and Fischer, Andreas},
booktitle={Knowledge Enterprise: Intelligent Strategies in Product Design, Manufacturing, and Management},
pages={399--405},
year={2006},
publisher={Springer}
}
@book{schuh2006produktionsplanung,
title={Produktionsplanung und-steuerung: Grundlagen, Gestaltung und Konzepte},
author={Schuh, G{\"u}nther},
year={2006},
publisher={Springer-Verlag}
}
@InProceedings{XABSl,
author = {Martin Loetzsch and Max Risler and Matthias Jungel},
title = {{XABSL - A Pragmatic Approach to Behavior Engineering}},
booktitle = IROS,
year = 2006,
}
% pages = {5124-5129},
% month=dec,
@Article{SMACH,
author = {Bohren, J. and Cousins, S.},
journal = {Robotics Automation Magazine, IEEE},
title = {{The SMACH High-Level Executive}},
year = 2010,
volume = 17,
number = 4,
}
% OPTpages={18-20},
% OPTdoi={10.1109/MRA.2010.938836},
% OPTISSN={1070-9932}
@article{PRS-Kheops-Arch,
title={An architecture for autonomy},
author={Alami, Rachid and Chatila, Raja and Fleury, Sara and Ghallab, Malik and Ingrand, F{\'e}lix},
journal={The International Journal of Robotics Research},
volume=17,
number=4,
year=1998,
}
% pages={315--337},
% publisher={SAGE Publications}
@inproceedings{PRS,
author={F{\'e}lix Ingrand and Raja Chatila and Rachid Alami and Fr{\'e}d{\'e}ric Robert},
booktitle=ICRA,
title={{PRS: A High Level Supervision and Control Language for Autonomous Mobile Robots}},
year={1996},
volume={1},
}
% pages={43--49},
% keywords={high level languages;mobile robots;real-time systems;robot
% programming;C-PRS;PRS;Procedural Reasoning
% System;autonomous mobile robots;default
% mechanisms;embedded system;goal
% refinement;high-level control language;high-level
% supervision language;meta-level reasoning
% capabilities;partial plans;plan execution;procedure
% representation semantics;real-time multiple task
% management;reflective reasoning
% capabilities;Airports;Containers;Control
% systems;Level control;Mobile robots;Navigation;Rail
% transportation;Robot control;Robot
% localization;Runtime},
% doi={10.1109/ROBOT.1996.503571},
% ISSN={1050-4729}
@Book{BDI,
author = {Michael E. Bratman},
title = {{Intention, Plans, and Practical Reason}},
publisher = {CSLI Publications},
year = {1987},
}
@Article{Golog,
author = {Levesque, H. J. and Reiter, R. and Lesp\'erance, Y. and
Lin, F. and Scherl, R. B.},
title = {Golog: A Logic Programming Language for Dynamic Domains},
journal = {Journal of Logic Programming},
volume = {31},
number = {1--3},
OPTPAGES = {59--84},
OPTKEY = {CogRobo},
OPTPDF = {http://www.cs.toronto.edu/cogrobo/Papers/GOLOGlang.pdf},
OPTPS = {http://www.cs.toronto.edu/cogrobo/Papers/GOLOGlang.ps},
OPTurl = {http://www.cs.toronto.edu/cogrobo/Papers/GOLOGlang.ps.gz},
OPTurl = "citeseer.nj.nec.com/levesque94golog.html",
OPTMONTH = {April-June},
YEAR = 1997
}
@TECHREPORT{mccarthy63,
AUTHOR = {J. McCarthy},
TITLE = {{Situations, Actions and Causal Laws}},
INSTITUTION = {Stanford University},
YEAR = 1963
}
@TechReport{PDDL,
title={{PDDL -- The Planning Domain Definition Language}},
author={Drew McDermott and Malik Ghallab and Adele Howe and Craig
Knoblock and Ashwin Ram and Manuela Veloso and
Daniel Weld and David Wilkins},
year={1998},
institution = {AIPS-98 Planning Competition Committee},
}
@article{PDDL2.1,
title={{PDDL}2.1: An Extension to {PDDL} for Expressing Temporal Planning Domains.},
author={Fox, Maria and Long, Derek},
journal={Journal of Artificial Intelligence Research},
volume={20},
year={2003}
}
% pages={61--124},
@TechReport{PDDL3,
title={Plan constraints and preferences in {PDDL3}},
author={Gerevini, Alfonso and Long, Derek},
institution={Department of Electronics for Automation, University of Brescia, Italy},
year=2005,
}
@inproceedings{pednaultADL,
title={{ADL}: Exploring the middle ground between {STRIPS} and the situation calculus},
author={Pednault, Edwin PD},
booktitle={Proc. of the 1st Int. Conference on Principles of Knowledge Representation and Reasoning},
year={1989},
}
% pages={324--332},
% organization={Morgan Kaufmann Publishers Inc.}
@article{STRIPS,
title={{STRIPS}: A new approach to the application of theorem proving to problem solving},
author={Richard E Fikes and Nils J Nilsson},
journal={Artificial intelligence},
volume={2},
number={3},
OPTpages={189--208},
year={1972},
publisher={Elsevier}
}
@article{hoffmannFF,
title={The {FF} planning system: Fast plan generation through heuristic search},
author={Hoffmann, J{\"o}rg and Nebel, Bernhard},
journal={arXiv preprint 1106.0675},
year={2011}
}
@article{helmertFastDownward,
title={The {Fast Downward} Planning System.},
author={Helmert, Malte},
journal={Journal of Artificial Intelligence Research},
volume={26},
year={2006}
}
% pages={191--246},
@misc{LLSF-Rules-2016,
author = {RCLL Technical Committee},
title = {{RoboCup Logistics League: Rules and Regulations 2016}},
year = {2016},
howpublished = {\url{http://www.robocup-logistics.org/rules}}
}
@misc{athome-rules,
author = {Loy van Beek AND Kai Chen AND Dirk Holz AND Mauricio
Matamoros AND Caleb Rascon AND Maja Rudinac AND
Javier Ruiz des Solar AND Sven Wachsmuth},
title = {{RoboCup@Home} 2015: Rule and Regulations},
year = 2015,
howpublished = {\url{http://www.robocupathome.org/rules/2015_rulebook.pdf}},
}
@InProceedings{RCLL-Holistic-Benchmark-2015,
author = {Tim Niemueller and Alexander Ferrein and Sebastian
Reuter and Sabina Jeschke and Gerhard Lakemeyer},
title = {The RoboCup Logistics League as a Holistic Multi-Robot Smart Factory Benchmark},
booktitle = {Open forum on evaluation of results, replication of
experiments and benchmarking in robotics research at IROS 2015},
year = {2015},
}
@article{iocchi2015robocup,
title={RoboCup@Home: Analysis and results of evolving competitions for domestic and service robots},
author={Iocchi, Luca and Holz, Dirk and Ruiz-del-Solar, Javier and Sugiura, Komei and van der Zant, Tijn},
journal={Artificial Intelligence},
volume={229},
OPTpages={258--281},
year={2015},
publisher={Elsevier}
}
@article{schneider2010european,
title={European land robot trial (elrob) towards a realistic benchmark for outdoor robotics},
author={Schneider, Frank E and Wildermuth, Dennis and Br{\"u}ggemann, Bernd and R{\"o}hling, Timo},
year={2010},
journal={{AT\&P Journal Plus}},
volume=2
}
% publisher={Citeseer}
@inproceedings{ schiffer06pcar,
author = {Stefan Schiffer and Alexander Ferrein and Gerhard Lakemeyer},
title = {Football is coming home},
booktitle = {International Symposium on Practical Cognitive Agents and Robots (PCAR)},
year = {2006},
OPTmonth = {November 27-28},
OPTisbn = {1-74052-130-7},
OPTpages = {39--50},
OPTlocation = {Perth, Australia},
OPTdoi = {http://doi.acm.org/10.1145/1232425.1232433},
OPTpublisher = {ACM},
OPTaddress = {New York, NY, USA},
OPTabstract = " Most of the robots in the RoboCup soccer league are
made especially for the task of playing soccer. They
use methods that are specifically designed for the
soccer domain and would perhaps fail in other
robotic testbeds such as the newly established
AtHome league without making fundamental changes
throughout their entire software system. In
contrast, our robots and the control software were
designed with a broader field of application in
mind. This paper sketches our way from the soccer
application to the AtHome league.",
OPTurl = "http://agents.csse.uwa.edu.au/pcar/",
}
@article{SchifferFL2012Caesar,
author = {Stefan Schiffer and Alexander Ferrein and Gerhard Lakemeyer},
title = {\textsc{Caesar}: {An Intelligent Domestic Service Robot}},
journal = {Journal of Intelligent Service Robotics},
OPTjournal = {Intelligent Service Robotics},
volume = {5},
number = {Special Issue on Artificial Intelligence in Robotics: Sensing, Representation and Action},
OPTnumber = {4},
year = {2012},
pages = {259--273},
ee = {http://dx.doi.org/10.1007/s11370-012-0118-y},
}
@article{ferrein08ras,
author = {Alexander Ferrein and Gerhard Lakemeyer},
title = {Logic-based robot control in highly dynamic domains},
journal = {Robotics and Autonomous Systems, Special Issue on Semantic Knowledge in Robotics},
volume = {56},
number = {11},
year = {2008},
OPTissn = {0921-8890},
OPTpages = {980--991},
OPTdoi = {http://dx.doi.org/10.1016/j.robot.2008.08.010},
publisher = {North-Holland Publishing Co.},
OPTaddress = {Amsterdam, The Netherlands, The Netherlands},
}
@Book{ Reiter01,
author = "R. Reiter",
title = "Knowledge in Action",
publisher = "MIT Press",
year = "2001"
}
@inproceedings{SchifferFL11,
author = {Stefan Schiffer and Alexander Ferrein and Gerhard
Lakemeyer},
title = {Fuzzy Representations and Control for Domestic Service
Robots in Golog},
booktitle = {Proceedings of the 4th International Conference on
Intelligent Robotics and Applications (ICIRA 2011)},
publisher = {Springer},
year = {2011},
series = {Lecture Notes in Computer Science},
volume = {7102},
pages = {241-250},
editor = {Sabina Jeschke and Honghai Liu and Daniel Schilberg},
}
@InProceedings{grosskreutz00probabilistic,
author = "H. Grosskreutz",
title = "Probabilistic projection and belief update in the pgolog
framework",
booktitle = {{Second Workshop on Cognitive Robotics (CogRob) at ECAI}},
OPTpages = "34--41",
year = 2000,
OPTps = "publication/grosskreutz00CogRob.ps.gz"
}
@InProceedings{ boutilier00-dtgolog,
author = "Craig Boutilier and Ray Reiter and Mikhail Soutchanski and
Sebastian Thrun",
title = "Decision-Theoretic, High-Level Agent Programming in the
Situation Calculus",
pages = "355--362",
booktitle = "Proc. AAAI-00",
publisher = "AAAI Press",
year = "2000"
}
@InProceedings{ ccGolog,
author = "Henrik Grosskreutz and Gerhard Lakemeyer",
title = {{On-Line Execution of {cc-Golog} Plans}},
optcrossref = "ijcai/2001",
OPTeditor = "Bernhard Nebel",
booktitle = IJCAI,
OPTpublisher = "Morgan Kaufmann",
year = "2001"
}
@book{kr-book,
title={{Knowledge Representation and Reasoning}},
author={Brachman, R.J. and Levesque, H.J.},
isbn={9781558609327},
lccn={2004046573},
series={The Morgan Kaufmann Series in Artificial Intelligence Series},
year={2004},
publisher={Morgan Kaufmann}
}
@inproceedings{botelho1999mplus,
title={M+: a scheme for multi-robot cooperation through negotiated task allocation and achievement},
author={Sylvia C. Botelho and Rachid Alami},
booktitle=ICRA,
OPTvolume={2},
OPTpages={1234--1239},
year={1999},
OPTorganization={IEEE}
}
@article{korsah2013comprehensive,
title={A comprehensive taxonomy for multi-robot task allocation},
author={Korsah, G Ayorkor and Stentz, Anthony and Dias, M Bernardine},
journal={The International Journal of Robotics Research},
volume={32},
number={12},
OPTpages={1495--1512},
year={2013},
publisher={SAGE Publications}
}
@article{stone1999task,
title={Task decomposition, dynamic role assignment, and low-bandwidth communication for real-time strategic teamwork},
author={Stone, Peter and Veloso, Manuela},
journal={Artificial Intelligence},
volume={110},
number={2},
pages={241--273},
year={1999},
publisher={Elsevier}
}
@techreport{stentz1999free,
title={A free market architecture for coordinating multiple robots},
author={Stentz, Anthony and Dias, M Bernardine},
year={1999},
institution={DTIC Document}
}
@article{gerkey2002sold,
title={Sold!: Auction methods for multirobot coordination},
author={Gerkey, Brian P and Mataric, Maja J},
journal={Robotics and Automation, IEEE Transactions on},
volume={18},
number={5},
OPTpages={758--768},
year={2002},
publisher={IEEE}
}
@incollection{iocchi2001reactivity,
title={Reactivity and deliberation: a survey on multi-robot systems},
author={Iocchi, Luca and Nardi, Daniele and Salerno, Massimiliano},
booktitle={Balancing reactivity and social deliberation in multi-agent systems},
OPTpages={9--32},
year=2001,
publisher={Springer}
}
@article{guerrero2003multi,
title={Multi-robot task allocation strategies using auction-like mechanisms},
author={Guerrero, Jos{\'e} and Oliver, Gabriel},
journal={Artificial Research and Development in Frontiers in Artificial Intelligence and Applications},
volume=100,
OPTpages={111--122},
year=2003
}
@inproceedings{easton2005coverage,
title={A coverage algorithm for multi-robot boundary inspection},
author={Easton, Kjerstin and Burdick, Joel},
booktitle=ICRA,
OPTpages={727--734},
year={2005},
OPTorganization={IEEE}
}
@inproceedings{williams2006multi,
title={Multi-robot boundary coverage with plan revision},
author={Williams, Kjerstin and Burdick, Joel},
booktitle=ICRA,
OPTpages={1716--1723},
year={2006},
OPTorganization={IEEE}
}