-
Notifications
You must be signed in to change notification settings - Fork 0
/
publ.html
1328 lines (1233 loc) · 73.6 KB
/
publ.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="description" content="Thomas Schneider's publication page">
<meta name="keywords" content="Thomas Schneider,Thomas,Schneider,homepage,logic,description logic,modal logic,hybrid logic,artificial intelligence,publications">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="ts.css">
<title>Thomas Schneider's publication page</title>
</head>
<body>
<div align="center">
<table class="navi" width="90%">
<tr>
<td class="navi"><a class="navi" href="index.html">Home</a></td>
<td class="navi"><a class="navi" href="publ.html">Publications</a></td>
<td class="navi"><a class="navi" href="activities.html">Activities + Awards</a></td>
<td class="navi"><a class="navi" href="talks.html">Talks</a></td>
<td class="navi"><a class="navi" href="teaching.html">Teaching</a></td>
<!-- <td class="navi"><a class="navi" href="priv.html">Private</a></td> -->
</tr>
</table>
</div>
<div align="center">
<table width="80%" border=0>
<tr>
<td align="left">
<h1>Thomas Schneider's Publications</h1>
<p>
My <a href="http://scholar.google.com/citations?user=A_iFXiQAAAAJ&hl=en">Google Scholar</a>
and <a href="http://dblp.uni-trier.de/db/indices/a-tree/s/Schneider_0002:Thomas.html">DBLP</a> profiles
–
for additional information and disambiguation
</p>
</td>
</tr>
</table>
</div>
<div align="center">
<hr>
</div>
<!-- ========================== JOURNAL ARTICLES ================================================= -->
<div align="center">
<table width="80%" border=0>
<tr>
<td>
<h2>
Journal Articles
</h2>
<ol start="1">
<!-- - - - - - - - - - - - - - JAIR 2020 AD - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dhp+20_ad"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="http://web.stanford.edu/~horridge/">M. Horridge</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
and H. Zhao:
<i>Modular Structures and Atomic Decomposition in Ontologies.</i>
<a href="https://jair.org/">J. Artif. Intell. Res. (JAIR)</a>,
69, 963–1021, 2020.
<br>
<a href="https://www.jair.org/index.php/jair/article/view/12151">PDF (JAIR)</a>
<a href="https://dblp.uni-trier.de/rec/journals/jair/VescovoHPSSZ20.html?view=bibtex">BIB (DBLP)</a>
<br>
This is a significant extension of the conference paper <a href="#dpss11_ijcai">36</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - JAIR 2020 AD - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ss20_survey_odm"> </a>
T. Schneider and
<a href="http://simkus.info/">M. Šimkus</a>:
<i>Ontologies and Data Management: A Brief Survey.</i>
<a href="https://www.springer.com/journal/13218">Künstliche. Intell. (KI)</a>,
34(3), 329–353, 2020.
<br>
<a href="https://link.springer.com/article/10.1007/s13218-020-00686-3">PDF (Springer, Open Access)</a>
<a href="https://dblp.uni-trier.de/rec/journals/ki/SchneiderS20a.html?view=bibtex">BIB (DBLP)</a>
<br>
</li>
<!-- - - - - - - - - - - - - - JAIR 2020 CEs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jlms20_jair"> </a>
<a href="http://www.informatik.uni-bremen.de/~jeanjung">J. C. Jung</a>,
<a href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
<a href="http://www.informatik.uni-bremen.de/~martel">M. Martel</a>,
and T. Schneider:
<i>Conservative Extensions in Horn Description Logics with Inverse Roles.</i>
<a href="https://jair.org/">J. Artif. Intell. Res. (JAIR)</a>,
68, 365–411, 2020.
<br>
<a href="https://jair.org/index.php/jair/article/view/12182">PDF (JAIR)</a>
<a href="https://dblp.uni-trier.de/rec/journals/jair/JungLMS20.html?view=bibtex">BIB (DBLP)</a>
<br>
This is an extension of the conference paper <a href="#jlms17_ijcai">17</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - ACM CSUR 2017 QSTR-SURVEY - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dlm+17_csur"> </a>
<a href="http://cosy.informatik.uni-bremen.de/staff/frank-dylla">F. Dylla</a>,
<a href="http://jaeheelee.info/">J. H. Lee</a>,
<a href="http://theo.cs.ovgu.de/Staff/Till+Mossakowski.html">T. Mossakowski</a>,
T. Schneider,
A. van Delden,
<a href="http://cosy.informatik.uni-bremen.de/staff/jasper-van-de-ven">J. van de Ven</a> and
<a href="https://www.uni-bamberg.de/ai/smart-environments/team/diedrich-wolter/">Diedrich Wolter</a>:
<i>A Survey of Qualitative Spatial and Temporal Calculi — Algebraic and Computational Properties.</i>
<a href="http://csur.acm.org/">ACM Computing Surveys (CSUR)</a>,
50(1), 7:1–7:39, 2017.
<br>
<a href="http://dl.acm.org/citation.cfm?id=3038927">Abstract+PDF+Appendix (ACM DL)</a>
<a href="publ/dlm+17_csur.bib">BIB</a>
<!-- <a href="publ/dlm+17_csur.pdf">PDF</a> -->
<br>
</li>
<!-- - - - - - - - - - - - - - TCS 2013 ALC-SAT - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ms13_tcs"> </a>
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a> and
T. Schneider:
<i>Generalized Satisfiability for the Description Logic ALC.</i>
<a href="http://www.journals.elsevier.com/theoretical-computer-science">Theoretical Computer Science</a>,
505, 55–73, 2013.
<br>
<a href="http://www.sciencedirect.com/science/article/pii/S0304397513001187">Abstract+PDF (ScienceDirect)</a>
<a href="publ/ms13_tcs.bib">BIB</a>
<br>
This is an extension of the conference paper <a href="#ms11_tamc">36</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - LMCS 2011 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="bmm+11_lmcs"> </a>
<a href="http://www.thi.uni-hannover.de/institut/mitarbeiter/olaf-beyersdorff/">O. Beyersdorff</a>,
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>, and
<a href="http://www.thi.uni-hannover.de/institut/mitarbeiter/heribert-vollmer/">H. Vollmer</a>:
<i>Model Checking CTL is Almost Always Inherently Sequential.</i>
<a href="http://www.lmcs-online.org/ojs/viewarticle.php?id=655">Logical Methods in Computer Science</a>,
7(2), 2011.
<br>
<a href="http://www.lmcs-online.org/ojs/viewarticle.php?id=655&layout=abstract">Abstract</a>
<a href="http://arxiv.org/pdf/1103.4990">PDF</a>
<a href="publ/bmm+11_lmcs.bib">BIB</a>
<br>
This is an extended version of the TIME paper <a href="#bmm+09_time">45</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - ToCL 2011 - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="bms+10_tocl"> </a>
M. Bauland,
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://www.ti.informatik.uni-kiel.de/ag/team/schnoor/">H. Schnoor</a>,
<a href="http://www.tcs.uni-luebeck.de/en/mitarbeiter/schnoor/">I. Schnoor</a>, and
<a href="http://www.thi.uni-hannover.de/institut/mitarbeiter/heribert-vollmer/">H. Vollmer</a>:
<i>The Tractability of Model-Checking for LTL: The Good, the Bad, and the Ugly Fragments.</i>
<a href="http://tocl.acm.org/">ACM Transactions on Computational Logic</a>, 12(2), 2011.
<br>
<a href="http://doi.acm.org/10.1145/1877714.1877719">Abstract+PDF (ACM DL)</a>
<a href="publ/bms+10_tocl.bib">BIB</a>
<br>
This is an extended version of the M4M paper <a href="#bms+07_m4m">49</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - JAMIA 2011 - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="rbs11_jamia"> </a>
<a href="http://www.cs.man.ac.uk/~rector/home_page_rector/">A. Rector</a>,
S. Brandt, and
T. Schneider:
<i>Getting the foot out of the pelvis: modeling problems affecting use of SNOMED CT hierarchies in practical applications.</i>
<a href="http://jamia.bmj.com/">JAMIA</a>, 18(4), 432–440, 2011.
<br>
<a href="http://jamia.bmj.com/content/18/4/432">Abstract+PDF (JAMIA)</a>
<a href="publ/rbs11_jamia.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - JAL 2010 (a) - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="mms+10_jal"> </a>
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>,
<a href="http://zeus.cs.uni-dortmund.de/cms/weber.html">V. Weber</a>, and
<a href="http://www.complexity.uni-jena.de/complexity/complexity/Mitarbeiter/Felix+Weiss.html">F. Weiß</a>:
<i>The Complexity of Satisfiability for Fragments of Hybrid Logic — Part I.</i>
<a href="http://www.elsevier.com/locate/jal">Journal of Applied Logic</a>,
8, 409–421, 2010.
<!-- Special issue on hybrid logic. -->
<br>
<a href="http://dx.doi.org/10.1016/j.jal.2010.08.001">Abstract+PDF (ScienceDirect)</a>
<a href="publ/mms+10_jal.bib">BIB</a>
<br>
This is an extended version of the MFCS paper <a href="#mms+09_mfcs">43</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - JAL 2010 (b) - - - - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name = "mssw10_jal"> </a>
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://http://zeus.cs.uni-dortmund.de/cms/schwentick.html">T. Schwentick</a>,
<a href="http://zeus.cs.uni-dortmund.de/cms/weber.html">V. Weber</a>:
<i>Complexity of Hybrid Logics over Transitive Frames.</i>
<a href="http://www.elsevier.com/locate/jal">Journal of Applied Logic</a>,
8, 422–440, 2010.
<!-- Special issue on hybrid logic. -->
<br>
<a href="http://dx.doi.org/10.1016/j.jal.2010.08.004">Abstract+PDF (ScienceDirect)</a>
<a href="publ/mssw10_jal.bib">BIB</a>
<br>
This is an extended version of the M4M paper <a href="#M4M05">56</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - LMCS 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="bss+09_lmcs"> </a>
M. Bauland,
T. Schneider,
<a href="http://www.ti.informatik.uni-kiel.de/ag/team/schnoor/">H. Schnoor</a>,
<a href="http://www.tcs.uni-luebeck.de/en/mitarbeiter/schnoor/">I. Schnoor</a>, and
<a href="http://www.thi.uni-hannover.de/institut/mitarbeiter/heribert-vollmer/">H. Vollmer</a>:
<i>The Complexity of Generalized Satisfiability for Linear Temporal Logic.</i>
<a href="http://www.lmcs-online.org/ojs/viewarticle.php?id=421&layout=abstract">Logical Methods in Computer Science</a>,
5(1), 2009.
<br>
<a href="publ/bss+09_lmcs.txt">Abstract</a>
<a href="http://arxiv.org/pdf/0812.4848">PDF</a>
<a href="publ/bss+09_lmcs.bib">BIB</a>
<br>
This is an extended version of the FoSSaCS paper <a href="#bss+07_fossacs">53</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - JoLLI 2009 - - - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ms09_jolli"> </a>
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider:
<i>The Complexity of Hybrid Logics over Equivalence Relations.</i>
<a href="http://www.springer.com/philosophy/logic/journal/10849">Journal of Logic, Language and Information</a>,
18(4), 493–514, 2009.
<br>
<a href="http://www.springerlink.com/content/72237r7283445wr0/">Abstract+PDF (SpringerLink)</a>
<a href="publ/ms09_jolli.bib">BIB</a>
<br>
This is an extended version of the HyLo paper <a href="#ms07_hylo">54</a>.
<!-- in the special issue "Hybrid Logic" of <a href="http://www.springer.com/philosophy/logic/journal/10849">JoLLI</a>. -->
</li>
</ol>
</td>
</tr>
</table>
</div>
<div align="center">
<hr>
</div>
<!-- ========================== CONFERENCE/WORKSHOP PAPERS ================================================= -->
<div align="center">
<table width="80%" border=0>
<tr>
<td>
<h2>
Reviewed Conference and Workshop Papers
</h2>
<ol start="13">
<!-- - - - - - - - - - - - - - COSIT 2019 OPRA* - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="mss19_cosit"> </a>
<a href="https://www.uni-muenster.de/Geoinformatics/institute/staff/index.php/334/Reinhard_Moratz">R. Moratz</a>,
<a href="http://www.informatik.uni-bremen.de/~sabellek">L. Sabellek</a>,
and T. Schneider:
<i>Granular Spatial Calculi of Relative Directions or
Movements with Parallelism: Consistent Account (Short Paper)</i>
In Proc. <a href="https://cosit2019.ur.de/index.php">COSIT 2019</a>, vol. 142 of <a href="http://drops.dagstuhl.de/opus/institut_lipics.php">LIPIcs</a>, pg. 28:1–28:9, Schloss Dagstuhl, 2019.
<br>
<a href="https://drops.dagstuhl.de/opus/portals/lipics/index.php?semnr=16122">BIB and PDF (Dagstuhl)</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2019 Metrics - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ns19_dl"> </a>
R. Nolte
and T. Schneider:
<i>How Modular Are Modular Ontologies? Logic-Based Metrics for Ontologies with Imports</i>
In Proc. 32nd <a href="http://dl.kr.org/dl2019">DL</a>,
vol. 2373 of <a href="http://ceur-ws.org/Vol-2373/">CEUR</a>, 2019.
<br>
<!--<a href="publ/js18_dl.bib">BIB</a>
--><a href="http://ceur-ws.org/Vol-2373/paper-21.pdf">PDF (CEUR)</a>
<!-- <a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2018/JS-DL18.pdf">Extended PDF</a>-->
<br>
</li>
<!-- - - - - - - - - - - - - - ICDT 2018 UNFOreg - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jlms18_icdt"> </a>
<a href="http://www.informatik.uni-bremen.de/~jeanjung">J. C. Jung</a>,
<a href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
<a href="http://www.informatik.uni-bremen.de/~martel">M. Martel</a>,
and T. Schneider:
<i>Querying the Unary Negation Fragment with Regular Path Expressions.</i>
In Proc. <a href="http://edbticdt2018.at/">ICDT 2018</a>, vol. 98 of <a href="http://drops.dagstuhl.de/opus/institut_lipics.php">LIPIcs</a>, pg. 15:1–15:18, Schloss Dagstuhl, 2018.
<br>
<a href="publ/jlms18_icdt.bib">BIB</a>
<a href="http://drops.dagstuhl.de/opus/volltexte/2018/8597/pdf/LIPIcs-ICDT-2018-15.pdf">PDF (Dagstuhl)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2018/JLMS-ICDT18.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2018 E-conns - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="js18_dl"> </a>
<a href="http://www.jongebloed.me/">S. Jongebloed</a>
and T. Schneider:
<i>Ontology Partitioning Using E-Connections Revisited.</i>
In Proc. 31st <a href="http://dl.kr.org/dl2018">DL</a>,
vol. 2211 of <a href="http://ceur-ws.org/Vol-2211/">CEUR</a>, 2018.
<br>
<a href="publ/js18_dl.bib">BIB</a>
<a href="http://ceur-ws.org/Vol-2211/paper-19.pdf">PDF (CEUR)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2018/JS-DL18.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - IJCAI 2017 CE Horn-DLs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
Superseded by Article <a href="#jlms20_jair">3</a>:
<font class="grayedout">
<a class="grayedout" name="jlms17_ijcai"> </a>
<a class="grayedout" href="http://www.informatik.uni-bremen.de/~jeanjung">J. C. Jung</a>,
<a class="grayedout" href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
<a class="grayedout" href="http://www.informatik.uni-bremen.de/~martel">M. Martel</a>,
and T. Schneider:
<i>Query Conservative Extensions in Horn Description Logics with Inverse Roles.</i>
In Proc. <a class="grayedout" href="http://ijcai-17.org">IJCAI 2017</a>, pg. 1116–1122, <a class="grayedout" href="http://ijcai.org">ijcai.org</a>, 2017.
<br>
<a class="grayedout" href="publ/jlms17_ijcai.bib">BIB</a>
<a class="grayedout" href="http://ijcai.org/proceedings/2017/0155.pdf">PDF (ijcai.org)</a>
<a class="grayedout" href="http://www.informatik.uni-bremen.de/tdki/research/papers/2017/JLMS-IJCAI17.pdf">Extended PDF</a>
<br>
</font>
</li>
<!-- - - - - - - - - - - - - - ICALP 2017 CE Guarded - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jlm+17_icalp"> </a>
<a href="http://www.informatik.uni-bremen.de/~jeanjung">J. C. Jung</a>,
<a href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
<a href="http://www.informatik.uni-bremen.de/~martel">M. Martel</a>,
T. Schneider,
and <a href="http://www.csc.liv.ac.uk/~frank/">F. Wolter</a>:
<i>Conservative Extensions in Guarded and Two-Variable Fragments.</i>
In Proc. <a href="http://icalp17.mimuw.edu.pl/">ICALP 2017</a>, vol. 80 of <a href="http://drops.dagstuhl.de/opus/institut_lipics.php">LIPIcs</a>, pg. 108:1–108:14, Schloss Dagstuhl, 2017.
<br>
<a href="publ/jlm+17_icalp.bib">BIB</a>
<a href="http://drops.dagstuhl.de/opus/volltexte/2017/7464/pdf/LIPIcs-ICALP-2017-108.pdf">PDF (Dagstuhl)</a>
<a href="https://arxiv.org/abs/1705.10115">Extended PDF (arXiv.org)</a>
<br>
</li>
<!-- - - - - - - - - - - - - - IJCAI 2015 TDLs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="gjs15_ijcai"> </a>
<a href="http://www.informatik.uni-bremen.de/~victor">V. Gutiérrez-Basulto</a>,
<a href="http://www.informatik.uni-bremen.de/~jeanjung"> J. C. Jung</a>,
and T. Schneider:
<i>Lightweight Temporal Description Logics with Rigid Roles and Restricted TBoxes.</i>
In Proc. <a href="http://ijcai-15.org">IJCAI 2015</a>, pg. 3015–3021, AAAI Press, 2015.
<br>
<a href="publ/gjs15_ijcai.bib">BIB</a>
<a href="http://ijcai.org/papers15/Papers/IJCAI15-426.pdf">PDF (ijcai.org)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2015/GJS-IJCAI15.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2015 TDLs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="gjs15_dl"> </a>
<a href="http://www.informatik.uni-bremen.de/~victor">V. Gutiérrez-Basulto</a>,
<a href="http://www.informatik.uni-bremen.de/~jeanjung"> J. C. Jung</a>,
and T. Schneider:
<i>The Complexity of Temporal Description Logics with Rigid Roles and Restricted TBoxes:
In Quest of Saving a Troublesome Marriage.</i>
In Proc. 28th <a href="http://dl2015.image.ntua.gr">DL</a>,
vol. 1350 of <a href="http://ceur-ws.org/Vol-1350">CEUR</a>, 2015.
<br>
<a href="publ/gjs15_dl.bib">BIB</a>
<a href="http://ceur-ws.org/Vol-1350/paper-23.pdf">PDF (CEUR)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2015/GJS-IJCAI15.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - QUAC 2015 TDLs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ss15_quac"> </a>
L. Sabellek and T. Schneider:
<i>A Note on Algebraic Closure and Closure under Constraints.</i>
In Proc. of <a href="http://www.math.tu-dresden.de/Workshop_QSTR_2015/">QUAC 2015</a>.
<br>
<a href="publ/ss15_quac.bib">BIB</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2015/SS-QUAC15.pdf">PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - KR 2014 finmodreas - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ils14_kr"> </a>
<a href="http://www.informatik.uni-bremen.de/tdki/members.html">Y. Ibáñez-García</a>,
<a href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
and T. Schneider:
<i>Finite Model Reasoning in Horn Description Logics.</i>
In Proc. <a href="http://www.kr.org/KR2014/">KR 2014</a>, AAAI Press, 2014.
<br>
<a href="publ/ils14_kr.bib">BIB</a>
<a href="http://www.aaai.org/ocs/index.php/KR/KR14/paper/view/7927">PDF (aaai.org)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2014/ILS-KR14.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - KR 2014 TDLs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="gjs14_kr"> </a>
<a href="http://www.informatik.uni-bremen.de/~victor">V. Gutiérrez-Basulto</a>,
<a href="http://www.informatik.uni-bremen.de/~jeanjung"> J. C. Jung</a>,
and T. Schneider:
<i>Lightweight Description Logics and Branching Time: a Troublesome Marriage.</i>
In Proc. <a href="http://www.kr.org/KR2014/">KR 2014</a>, AAAI Press, 2014.
<br>
<a href="publ/gjs14_kr.bib">BIB</a>
<a href="http://www.aaai.org/ocs/index.php/KR/KR14/paper/view/7802">PDF (aaai.org)</a>
<a href="http://www.informatik.uni-bremen.de/tdki/research/papers/2014/GJS-KR14.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - ISWC 2013 semloc - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dkp+13_iswc"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="https://sites.google.com/site/pavelklinov/">P. Klinov</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
and <a href="http://www.cs.man.ac.uk/~tsarkov/">D. Tsarkov</a>:
<i>Empirical Study of Logic-Based Modules: Cheap Is Cheerful.</i>
In Proc. <a href="http://iswc2013.semanticweb.org/content/accepted-papers">ISWC 2013</a> (1),
LNCS 8218, pg. 84–100, 2013.
<br>
<a href="https://sites.google.com/site/cheapischeerful/technical-report">Extended PDF</a>
<a href="publ/dkp+13_iswc.bib">BIB</a>
The final publication is available at <a href="http://link.springer.com/chapter/10.1007%2F978-3-642-41335-3_6">link.springer.com</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - - COSIT 2013 ALGEBRA+CALCULI - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dmsw13_cosit"> </a>
<a href="http://cosy.informatik.uni-bremen.de/staff/frank-dylla">F. Dylla</a>,
<a href="http://www.informatik.uni-bremen.de/~till/">T. Mossakowski</a>,
T. Schneider, and
<a href="http://cosy.informatik.uni-bremen.de/staff/diedrich-wolter">D. Wolter</a>:
<i>Algebraic Properties of Qualitative Spatio-Temporal Calculi.</i>
In Proc. <a href="http://www.cosit2013.org">COSIT 2013</a>,
LNCS 8116, pg. 516–536, 2013.
<br>
<a href="http://arxiv.org/abs/1305.7345">Extended PDF</a>
<a href="publ/dmsw13_cosit.bib">BIB</a>
The final publication is available at <a href="http://link.springer.com/chapter/10.1007%2F978-3-319-01790-7_28">link.springer.com</a>.
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2013 finmodreas - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ils13_dl"> </a>
<a href="http://www.informatik.uni-bremen.de/tdki/members.html">Y. Ibáñez-García</a>,
<a href="http://www.informatik.uni-bremen.de/~clu">C. Lutz</a>,
and T. Schneider:
<i>Finite model reasoning in Horn-SHIQ.</i>
In Proc. 26th <a href="http://www.uni-ulm.de/en/in/dl2013">DL</a>,
vol. 1014 of <a href="http://ceur-ws.org/Vol-1014">CEUR</a>, 2013.
<br>
<a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-1014/paper_34.pdf">PDF (CEUR)</a>
<a href="publ/ils13_dl.bib">BIB</a>
<a href="publ/ils13_dl_report.pdf">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2013 semloc - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dkp+13_dl"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="https://sites.google.com/site/pavelklinov/">P. Klinov</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
and <a href="http://www.cs.man.ac.uk/~tsarkov/">D. Tsarkov</a>:
<i>Empirical Study of Logic-Based Modules: Cheap Is Cheerful.</i>
In Proc. 26th <a href="http://www.uni-ulm.de/en/in/dl2013">DL</a>,
vol. 1014 of <a href="http://ceur-ws.org/Vol-1014">CEUR</a>, 2013.
<br>
<a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-1014/paper_77.pdf">PDF (CEUR)</a>
<a href="publ/dkp+13_dl.bib">BIB</a>
<a href="https://sites.google.com/site/cheapischeerful/technical-report">Extended PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - - AiML 2012 MHL-SAT - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="gmm+12_aiml"> </a>
<a href="http://www.informatik.uni-bremen.de/~goeller/">S. Göller</a>,
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>, and
<a href="http://www.complexity.uni-jena.de/complexity/complexity/Mitarbeiter/Felix+Weiss.html">F. Weiß</a>:
<i>The Complexity of Monotone Hybrid Logics over Linear Frames and the Natural Numbers.</i>
In
<a href="http://hylocore.ruc.dk/aiml2012/index.php">AiML-9</a>,
College Publications, pg. 261–278, 2012.
<br><a href="publ/gmm+12_aiml.bib">BIB</a>
<a href="http://www.aiml.net/volumes/volume9/Goeller-Meier-Mundhenk-Schneider-Thomas-Weiss.pdf">PDF (aiml.net)</a>
Extended version (arXiv):
<a href="http://arxiv.org/abs/1204.1196">Abstract </a>
<a href="http://arxiv.org/pdf/1204.1196v2">PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - WoMO 2012 semloc - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dkp+12_womo"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="https://sites.google.com/site/pavelklinov/">P. Klinov</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
and <a href="http://www.cs.man.ac.uk/~tsarkov/">D. Tsarkov</a>:
<i>Syntactic vs. Semantic Locality: How Good Is a Cheap Approximation?</i>
In Proc. 6th <a href="http://www.informatik.uni-bremen.de/~ts/womo2012">WoMO</a>,
vol. 875 of <a href="http://ceur-ws.org/Vol-849">CEUR</a>, 2012.
<br>
<a href="http://ceur-ws.org/Vol-875/regular_paper_4.pdf">PDF (CEUR)</a>
<a href="publ/dkp+12_womo.bib">BIB</a>
Extended <a href="http://arxiv.org/pdf/1207.1641">PDF</a>
<br>
</li>
<!-- - - - - - - - - - - - - - OWLED 2012 increm AD - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="kds12_owled"> </a>
<a href="https://sites.google.com/site/pavelklinov/">P. Klinov</a>,
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
and T. Schneider,
<i>Incrementally Updateable and Persistent Decomposition of OWL Ontologies.</i>
In Proc. 9th <a href="http://www.webont.org/owled/2012/">OWLED</a>,
vol. 849 of <a href="http://ceur-ws.org/Vol-849">CEUR</a>, 2012.
<br>
<a href="http://ceur-ws.org/Vol-849/paper_7.pdf">PDF (CEUR)</a>
<a href="publ/kds12_owled.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - ISWC 2011 bio-decomp - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dgk+11_iswc"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="http://www.iplantcollaborative.org/connect/staff-collaborators/damian-gessler">D. Gessler</a>,
<a href="https://sites.google.com/site/pavelklinov/">P. Klinov</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
and A. Winget:
<i>Decomposition and Modular Structure of BioPortal Ontologies.</i>
In Proc. <a href="http://iswc2011.semanticweb.org/">ISWC 2011</a>,
LNCS 7031, pg. 130–145, 2011.
<br>
<a href="http://www.springerlink.com/content/q6x3j4g2g40p2q12">Abstract+PDF (SpringerLink)</a>
Extended <a href="https://sites.google.com/site/bioportaldecomposition/technical-report">PDF</a>
<a href="publ/dgk+11_iswc.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2011 OWL 2 QBMs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="kkl+11_dl"> </a>
<a href="http://www.csc.liv.ac.uk/~konev/">B. Konev</a>,
<a href="http://www.dcs.bbk.ac.uk/~roman/">R. Kontchakov</a>,
<a href="http://www.csc.liv.ac.uk/~michel/">M. Ludwig</a>,
T. Schneider,
<a href="http://www.csc.liv.ac.uk/~frank/">F. Wolter</a>, and
<a href="http://www.dcs.bbk.ac.uk/~michael/">M. Zakharyaschev</a>:
<i>Module Extraction via Query Inseparability in OWL 2 QL.</i>
In Proc. 24th <a href="http://www.dis.uniroma1.it/~dl2011/">DL</a>,
vol. 745 of <a href="http://ceur-ws.org/Vol-745">CEUR</a>, 2011.
<br>
<a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-745/paper_6.pdf">PDF (CEUR)</a>
<a href="publ/kkl+11_dl.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - WoMO 2011 decomp - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dpss11_womo"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>The Modular Structure of an Ontology: Atomic Decomposition and Module Count.</i>
In Proc. <a href="http://www.informatik.uni-bremen.de/~okutz/womo5/">WoMo 2011</a>,
vol. 230 of Frontiers in AI and Appl., pg. 25–39, 2011.
<br>
<a href="publ/dpss11_womo.txt">Abstract</a>
Extended <a href="publ/atomic_decomp_report_womo.pdf">PDF</a>
<a href="publ/dpss11_womo.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - AAAI 2011 OWL 2 QBMs - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="kkl+11_aaai"> </a>
<a href="http://www.csc.liv.ac.uk/~konev/">B. Konev</a>,
<a href="http://www.dcs.bbk.ac.uk/~roman/">R. Kontchakov</a>,
<a href="http://www.csc.liv.ac.uk/~michel/">M. Ludwig</a>,
T. Schneider,
<a href="http://www.csc.liv.ac.uk/~frank/">F. Wolter</a>, and
<a href="http://www.dcs.bbk.ac.uk/~michael/">M. Zakharyaschev</a>:
<i>Conjunctive Query Inseparability of OWL 2 QL TBoxes.</i>
In Proc. <a href="http://www.aaai.org/Conferences/AAAI/aaai11.php">AAAI 2011</a>.
<br>
<a href="http://www.aaai.org/ocs/index.php/AAAI/AAAI11/paper/view/3573">Abstract+PDF (AAAI Press)</a>
Extended <a href="http://aaai-11.tripod.com/longversion.pdf">PDF</a>
<a href="publ/kkl+11_aaai.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - TABLEAUX 2011 HPDLDC - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="kss11_tab"> </a>
<a href="http://www.ps.uni-saarland.de/~kaminski/">M. Kaminski</a> and
T. Schneider and
<a href="http://www.ps.uni-saarland.de/~smolka/">G. Smolka</a>:
<i>Correctness and Worst-Case Optimality of Pratt-Style Decision Procedures for Modal and Hybrid Logics</i>.
In Proc. <a href="http://www.tableaux11.unibe.ch/">TABLEAUX 2011</a>,
LNCS 6793, pg. 196–210, 2011.
<br>
<a href="http://dx.doi.org/10.1007/978-3-642-22119-4_16">Abstract+PDF (SpringerLink)</a>
Extended <a href="http://www.ps.uni-saarland.de/Publications/documents/KaminskiEtAl_2011_HPDLDC.pdf">PDF</a>
<a href="publ/kss11_tableaux.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - IJCAI 2011 decomp - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dpss11_ijcai"> </a>
Superseded by Article <a href="#dhp+20_ad">1</a>:
<font class="grayedout">
<a class="grayedout" name="dpss11_ijcai"> </a>
<a class="grayedout" href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a class="grayedout" href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a class="grayedout" href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>The Modular Structure of an Ontology: Atomic Decomposition.</i>
In Proc. <a class="grayedout" href="http://ijcai-11.iiia.csic.es/">IJCAI 2011</a>,
pg. 2232–2237, 2011.
<br>
<a class="grayedout" href="publ/dpss11_ijcai.txt">Abstract</a>
<a class="grayedout" href="http://ijcai.org/papers11/Papers/IJCAI11-372.pdf">PDF (ijcai.org)</a>
Extended <a class="grayedout" href="publ/atomic_decomp_report.pdf">PDF</a>
<a class="grayedout" href="publ/dpss11_ijcai.bib">BIB</a>
<br>
</font>
</li>
<!-- - - - - - - - - - - - - - TAMC 2011 ALCSAT- - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ms11_tamc"> </a>
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a> and
T. Schneider:
<i>Generalized Satisfiability for the Description Logic ALC (Extended Abstract)</i>.
In Proc. <a href="http://www.tamc2011.com/">TAMC 2011</a>,
LNCS 6648, pg. 552–562, 2011.
<br>
<a href="http://www.springerlink.com/content/p67773p87h245h6l/">Abstract+PDF (SpringerLink)</a>
Extended <a href="http://arxiv.org/abs/1103.0853">PDF</a>
<a href="publ/ms11_tamc.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - - HyLo 2010 - - - - - - - - - - - - - - - - - - - - - - -->
<!-- <li>
<a name="mms+10_hylo"> </a>
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>, and
<a href="http://www.complexity.uni-jena.de/complexity/complexity/Mitarbeiter/Felix+Weiss.html">F. Weiß</a>:
<i>The Complexity of Satisfiability for Fragments of Hybrid Logic — Part II.</i>
Accepted for
<a href="http://hylocore.ruc.dk/HyLo2010.html">HyLo 2010</a>.
<a href="publ/mms+10_hylo.txt">Abstract</a>
<a href="publ/mms+10_hylo.pdf">PDF</a>
<br>
</li>
-->
<!-- - - - - - - - - - - - - - KR 2010 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ps10_kr"> </a>
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a> and
T. Schneider:
<i>The Modular Structure of an Ontology: an Empirical Study.</i>
In Proc. <a href="http://www.scs.ryerson.ca/%7Ekr2010/">KR-10</a>,
pg. 584–586, 2010.
<br>
<a href="http://aaai.org/ocs/index.php/KR/KR2010/paper/view/1217">Abstract+PDF (AAAI Press)</a>
Extended <a href="publ/modstrucreport.pdf">PDF</a>
<a href="publ/ps10_kr.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2010 modstruc - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dpss10_dl"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>The Modular Structure of an Ontology: an Empirical Study.</i>
In Proc. <a href="http://www.cs.uwaterloo.ca/conferences/dl2010/">DL 2010</a>.
<br>
<a href="publ/modstrucreport.txt">Abstract</a>
<a href="http://CEUR-WS.org/Vol-573/paper_13.pdf">PDF (CEUR)</a>
Extended <a href="publ/modstrucreport.pdf">PDF</a>
<a href="publ/dpss10_dl.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - WoMo 2010 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="dpss10_womo"> </a>
<a href="http://www.cs.man.ac.uk/~delvescc/">C. Del Vescovo</a>,
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>The Modular Structure of an Ontology: an Empirical Study.</i>
In Proc. <a href="http://www.informatik.uni-bremen.de/~okutz/womo4/">WoMo-10</a>,
vol. 211 of Frontiers in AI and Appl., pg. 11–24, 2010.
<br>
<a href="publ/modstrucreport.txt">Abstract</a>
Extended <a href="publ/modstrucreport.pdf">PDF</a>
<a href="publ/dpss10_womo.bib">BIB</a>
<br>
</li>
<!-- - - - - - - - - - - - - - DL 2010 ALCSAT- - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ms10_dl"> </a>
<a href="http://www.thi.uni-hannover.de/~meier">A. Meier</a> and
T. Schneider:
<i>The Complexity of Satisfiability for Sub-Boolean Fragments of ALC</i>.
In Proc. <a href="http://www.cs.uwaterloo.ca/conferences/dl2010/">DL 2010</a>.
<br>
<a href="publ/ms10_dl.txt">Abstract</a>
<a href="http://CEUR-WS.org/Vol-573/paper_7.pdf">PDF (CEUR)</a>
Extended <a href="publ/ms10_report.pdf">PDF</a>
<a href="publ/ms10_dl.bib">BIB</a>
<br>
</li>
<!-- - 8 - - - - - - - - - - - - OWLED 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="pss09_owled"> </a>
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>Mechanisms for Importing Modules.</i>
In Proc.
<a href="http://www.webont.org/owled/2009">OWLED</a>,
volume 529 of <a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-529/">CEUR</a>, 2009.
<br>
<a href="publ/pss09_owled.txt">Abstract</a>
<a href="http://CEUR-WS.org/Vol-529/owled2009_submission_10.pdf">PDF (CEUR)</a>
<a href="publ/pss09_owled.bib">BIB</a>
<br>
</li>
<!-- - 3 - - - - - - - - - - - - MFCS 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
Superseded by Article <a href="#mms+10_jal">9</a>:
<font class="grayedout">
<a class="grayedout" name="mms+09_mfcs"> </a>
<a class="grayedout" href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a class="grayedout" href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a class="grayedout" href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>
<a class="grayedout" href="http://zeus.cs.uni-dortmund.de/cms/weber.html">V. Weber</a>, and
<a href="http://www.complexity.uni-jena.de/complexity/complexity/Mitarbeiter/Felix+Weiss.html">F. Weiß</a>:
<i>The Complexity of Satisfiability for Fragments of Hybrid Logic — Part I.</i>
In Proc. 34th
<a class="grayedout" href="http://www.mfcs.sk/mfcs2009/">MFCS</a>, pg. 587–599, 2009.
<!-- <a class="grayedout" href="http://dx.doi.org/10.1007/978-3-642-03816-7_50">Abstract+PDF (SpringerLink)</a>
<a class="grayedout" href="publ/mms+09_mfcs.bib">BIB</a>-->
<br>
</font>
</li>
<!-- - 9 - - - - - - - - - - - - DL 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="ssz09_dl"> </a>
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider, and
<a href="http://www.dcs.bbk.ac.uk/~michael/">M. Zakharyaschev</a>:
<i>Which Kind of Module Should I Extract?</i>
In Proc. 22nd
<a href="http://dl.kr.org/dl2009/">DL</a>, 2009.
<br>
<a href="publ/ssz09_insep_report.txt">Abstract</a>
<a href="http://ceur-ws.org/Vol-477/paper_33.pdf">PDF (CEUR)</a>
Extended <a href="publ/ssz09_insep_report.pdf">PDF</a>
<a href="publ/ssz09_dl.bib">BIB</a>
<br>
</li>
<!-- - 4 - - - - - - - - - - - - TIME 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
Superseded by Article <a href="#bmm+11_lmcs">6</a>:
<font class="grayedout">
<a class="grayedout" name="bmm+09_time"> </a>
<a class="grayedout" href="http://www.thi.uni-hannover.de/~beyersdorff">O. Beyersdorff</a>,
<a class="grayedout" href="http://www.thi.uni-hannover.de/~meier">A. Meier</a>,
<a class="grayedout" href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a class="grayedout" href="http://www.thi.uni-hannover.de/~thomas">M. Thomas</a>, and
<a class="grayedout" href="http://www.thi.uni-hannover.de/institut/mitarbeiter/heribert-vollmer/">H. Vollmer</a>:
<i>Model Checking CTL is Almost Always Inherently Sequential.</i>
In Proc. 16th
<a class="grayedout" href="http://www.inf.unibz.it/krdb/events/time-2009/">TIME</a>, 2009.
<!-- <a class="grayedout" href="http://doi.ieeecomputersociety.org/10.1109/TIME.2009.12">Abstract+PDF (IEEE)</a>
<a class="grayedout" href="publ/bmm+09_time.bib">BIB</a>-->
<br>
</font>
</li>
<!-- - 5 - - - - - - - - - - - - IJCAI 2009 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="kps+09_ijcai"> </a>
<a href="http://www.dcs.bbk.ac.uk/~roman/">R. Kontchakov</a>,
<a href="http://www.star.dist.unige.it/~pulina/">L. Pulina</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider,
<a href="http://www.dcs.bbk.ac.uk/~lselm01/">P. Selmer</a>,
<a href="http://www.csc.liv.ac.uk/~frank/">F. Wolter</a>, and
<a href="http://www.dcs.bbk.ac.uk/~michael/">M. Zakharyaschev</a>:
<i>Minimal Module Extraction from DL-Lite Ontologies using QBF Solvers.</i>
In Proc. 21st <a href="http://ijcai-09.org/index.html">IJCAI</a>, pg. 836–841, 2009.
<br>
<a href="publ/kps+09_dllite.txt">Abstract</a>
<a href="http://ijcai.org/papers09/Papers/IJCAI09-143.pdf">PDF (ijcai.org)</a>
<a href="publ/kps+09_dllite.bib">BIB</a>
<br>
</li>
<!-- - 10 - - - - - - - - - - - - OWLED 2008 EU - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="pss08_owled_eu"> </a>
<a href="http://www.cs.man.ac.uk/~bparsia/">B. Parsia</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>, and
T. Schneider:
<i>Easy Keys for OWL.</i>
In Proc. 5th
<a href="http://www.webont.org/owled/2008">OWLED</a>, 2008.
<br>
<a href="publ/pss08_easykeys.txt">Abstract</a>
<a href="http://ceur-ws.org/Vol-432/owled2008eu_submission_3.pdf">PDF (CEUR)</a>
<a href="publ/pss08_easykeys.bib">BIB</a>
<br>
</li>
<!-- - 11 - - - - - - - - - - - - JISBD 2008 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jcssb08_jisbd"> </a>
<a href="http://krono.act.uji.es/people/Ernesto/">E. Jiménez-Ruiz</a>,
<a href="http://web.comlab.ox.ac.uk/people/Bernardo.CuencaGrau/">B. Cuenca Grau</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider, and
<a href="http://www3.uji.es/~berlanga/">R. Berlanga Llavori</a>:
<i>ProSÉ: A Protégé plugin for Reusing Ontologies, Safe and Économique.</i>
<a href="http://www.sistedes.es/jisbd2008/">JISBD 2008</a>, pg. 449–452, 2008.
<br>
</li>
<!-- - 14 - - - - - - - - - - - - LTL-MC M4M-5 2007 - - - - - - - - - - - - - - - - - - - - - -->
<li>
Superseded by Article <a href="#bms+10_tocl">7</a>:
<font class="grayedout">
<a class="grayedout" name="bms+07_m4m"> </a>
M. Bauland,
<a class="grayedout" href="http://www.minet.uni-jena.de/~mundhenk">M. Mundhenk</a>,
T. Schneider,
<a class="grayedout" href="http://www.ti.informatik.uni-kiel.de/ag/team/schnoor/">H. Schnoor</a>,
<a class="grayedout" href="http://www.tcs.uni-luebeck.de/en/mitarbeiter/schnoor/">I. Schnoor</a>, and
<a class="grayedout" href="http://www.thi.uni-hannover.de/institut/mitarbeiter/heribert-vollmer/">H. Vollmer</a>:
<i>The Tractability of Model-Checking for LTL: The Good, the Bad, and the Ugly Fragments.</i>
In Proc. <a class="grayedout" href="http://m4m.loria.fr/">M4M-5</a>,
ENTCS 231, pg. 277–292, 2009.
<!-- <a class="grayedout" href="http://dx.doi.org/10.1016/j.entcs.2009.02.041">Abstract+PDF (ScienceDirect)</a>
Extended <a class="grayedout" href="http://www.minet.uni-jena.de/Math-Net/reports/sources/2007/07-04report.pdf">PDF</a>
<a class="grayedout" href="publ/bms+07_m4m.bib">BIB</a>-->
<br>
</font>
</li>
<!-- - 6 - - - - - - - - - - - - ESWC 2008 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jcs+08_eswc"> </a>
<a href="http://krono.act.uji.es/people/Ernesto/">E. Jiménez-Ruiz</a>,
<a href="http://web.comlab.ox.ac.uk/people/Bernardo.CuencaGrau/">B. Cuenca Grau</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider, and
<a href="http://www3.uji.es/~berlanga/">R. Berlanga Llavori</a>:
<i>Safe and Economic Re-Use of Ontologies: A Logic-Based Methodology and Tool Support.</i>
In Proc. of
<a href="http://www.eswc2008.org/">ESWC 2008</a>, LNCS 5021, pg. 185–199, 2008.
<i>Nominated for Best Paper Award.</i>
<br>
<a href="http://dx.doi.org/10.1007/978-3-540-68234-9_16">Abstract+PDF (SpringerLink)</a>
Extended and corrected <a href="publ/safe-eco-reuse-report.pdf">PDF</a>
<a href="publ/safe-eco-reuse.bib">BIB</a>
<!-- <br>
A DL-oriented and a tool-oriented version of this paper has appeared at
<a href="http://dl.kr.org/dl2008/">DL 2008</a>
and <a href="http://www.webont.org/owled/2008dc/">OWLED 2008 DC</a>.
--> <br>
</li>
<!-- - 12 - - - - - - - - - - - - DL 2008 - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jcs+08_dl"> </a>
<a href="http://krono.act.uji.es/people/Ernesto/">E. Jiménez-Ruiz</a>,
<a href="http://web.comlab.ox.ac.uk/people/Bernardo.CuencaGrau/">B. Cuenca Grau</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider, and
<a href="http://www3.uji.es/~berlanga/">R. Berlanga Llavori</a>:
<i>Safe and Economic Re-Use of Ontologies: A Logic-Based Methodology and Tool Support.</i>
In Proc. 21st
<a href="http://dl.kr.org/dl2008/">DL</a>, 2008.
<br>
<a href="publ/safe-eco-reuse.txt">Abstract</a>
<a href="http://ceur-ws.org/Vol-353/Jimenez-RuizCuencaGrauSattlerSchneiderBerlanga.pdf">PDF (CEUR)</a>
Extended <a href="publ/safe-eco-reuse-report.pdf">PDF</a>
<a href="publ/jcs+08_dl.bib">BIB</a>
<br>
</li>
<!-- - 13 - - - - - - - - - - - - OWLED 2008 DC - - - - - - - - - - - - - - - - - - - - - - -->
<li>
<a name="jcs+08_owled"> </a>
<a href="http://krono.act.uji.es/people/Ernesto/">E. Jiménez-Ruiz</a>,
<a href="http://web.comlab.ox.ac.uk/people/Bernardo.CuencaGrau/">B. Cuenca Grau</a>,
<a href="http://www.cs.man.ac.uk/~sattler/">U. Sattler</a>,
T. Schneider, and