-
Notifications
You must be signed in to change notification settings - Fork 1
/
Paper1998.msl
974 lines (972 loc) · 37 KB
/
Paper1998.msl
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
import "platform:/resource/SLROnToleranceInMDE/src/Language.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Authors.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Venues.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2013.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2014.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2011.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2006.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2003.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2005.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1996.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2008.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2004.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2009.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2000.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2012.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2015.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1997.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2010.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1999.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2001.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1998.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2007.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1989.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1991.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1992.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2002.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1990.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2016.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2017.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2018.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2019.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper2020.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1977.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1994.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1983.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1995.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1982.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1987.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1986.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1988.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1985.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1993.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1984.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1978.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1976.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1979.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1980.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1941.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1968.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1981.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1975.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1972.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1974.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1969.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1967.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1970.msl"
import "platform:/resource/SLROnToleranceInMDE/src/Papers/Paper1959.msl"
model Paper1998{
paper1784419685:Paper {
.title : "Unification and consistency verification of objectoriented analysis models"
.year : 1998
.core : true
.relevance:true
-venue->venue60
-cites->paper1544662935
-authors->author2110034095
-authors->author2113153068
}
paper18110229:Paper {
.title : "A Computational System for Modeling Flexible ProteinProtein and proteinDNA Docking"
.year : 1998
.core : true
.relevance:false
-venue->venue341
-authors->author2788160470
-authors->author2236051349
-authors->author2044769972
-authors->author64308271
-authors->author2106427690
-authors->author228510111
-authors->author2118834389
}
paper132658143:Paper {
.title : "Applications of abductive logic programming"
.year : 1998
.core : false
.relevance:false
-venue->venue436
-authors->author2973684468
-authors->author2973908362
}
paper163597783:Paper {
.title : "On the logic of merging"
.year : 1998
.core : false
.relevance:false
-venue->venue458
-authors->author2104136422
-authors->author2106474997
}
paper1495852970:Paper {
.title : "The MAD Experience Multiperspective Application Development in evolutionary prototyping"
.year : 1998
.core : false
.relevance:false
-venue->venue26
-cites->paper1739798036
-cites->paper2073214011
-cites->paper2139907081
-authors->author2251968507
-authors->author2113303640
-authors->author1965687092
-authors->author51682305
-authors->author1972989932
-authors->author2781355347
-authors->author2019814673
-authors->author2527103111
-authors->author2123688139
-authors->author2527193764
}
paper1502765706:Paper {
.title : "The Test ModelChecking Approach to the Verification of Formal Memory Models of Multiprocessors"
.year : 1998
.core : false
.relevance:false
-venue->venue468
-cites->paper1545792627
-cites->paper1986463648
-cites->paper2015688007
-cites->paper2029601347
-cites->paper2169832991
-authors->author1873403161
-authors->author2129100051
-authors->author801543544
-authors->author2292623375
}
paper1526272872:Paper {
.title : "Invariant Discovery via Failed Proof Attempts"
.year : 1998
.core : false
.relevance:false
-venue->venue724
-cites->paper2103953153
-cites->paper2111706174
-cites->paper2147543351
-authors->author2277660068
-authors->author2119770075
}
paper1554183872:Paper {
.title : "Petri Nets as Token Objects An Introduction to Elementary Object Nets"
.year : 1998
.core : false
.relevance:false
-venue->venue635
-authors->author2434010869
}
paper1562948410:Paper {
.title : "Story Diagrams A New Graph Rewrite Language Based on the Unified Modeling Language and Java"
.year : 1998
.core : false
.relevance:false
-venue->venue846
-authors->author2110524446
-authors->author2632758368
-authors->author142991879
-authors->author74679627
}
paper1563464738:Paper {
.title : "Executing Suspended Logic Programs"
.year : 1998
.core : false
.relevance:false
-venue->venue613
-cites->paper2006519067
-authors->author2148376583
-authors->author2228449327
-authors->author2114467999
}
paper1573725807:Paper {
.title : "The Block Cipher Rijndael"
.year : 1998
.core : false
.relevance:false
-venue->venue898
-cites->paper1613874182
-authors->author2022183134
-authors->author1973703345
}
paper1575571691:Paper {
.title : "Agent technology foundations applications and markets"
.year : 1998
.core : false
.relevance:false
-venue->venue0
-authors->author2112978975
-authors->author2345025092
}
paper1591726984:Paper {
.title : "FORM A featureoriented reuse method with domainspecific reference architectures"
.year : 1998
.core : false
.relevance:false
-venue->venue825
-cites->paper2077318760
-authors->author2136582910
-authors->author2150318219
-authors->author2605029534
-authors->author2152210060
-authors->author2285752539
-authors->author2284823825
}
paper1685591268:Paper {
.title : "Termination of graph rewriting is undecidable"
.year : 1998
.core : false
.relevance:false
-venue->venue613
-authors->author247206718
}
paper1729888041:Paper {
.title : "Detectors and correctors a theory of faulttolerance components"
.year : 1998
.core : false
.relevance:false
-venue->venue770
-cites->paper2095425626
-cites->paper2133201251
-cites->paper2133943294
-cites->paper2152465173
-authors->author2126513744
-authors->author2146138432
}
paper1787802610:Paper {
.title : "FODAcom an experience with domain analysis in the Italian telecom industry"
.year : 1998
.core : false
.relevance:false
-venue->venue241
-cites->paper2139907081
-authors->author2974532055
-authors->author2345279158
-authors->author2421025645
-authors->author2682712103
-authors->author2973441329
}
paper1798077826:Paper {
.title : "Breaking abstractions and unstructuring data structures"
.year : 1998
.core : false
.relevance:false
-venue->venue272
-cites->paper1964962870
-cites->paper2126851641
-authors->author321147201
-authors->author2239754346
-authors->author2170666093
}
paper1875319849:Paper {
.title : "Seeding Evolutionary Growth and Reseeding Constructing Capturing and Evolving Knowledge in DomainOriented Design Environments"
.year : 1998
.core : false
.relevance:false
-venue->venue77
-cites->paper1969492351
-cites->paper2045571829
-authors->author2176357113
}
paper1877773550:Paper {
.title : "An automated approach for identifying potential vulnerabilities in software"
.year : 1998
.core : false
.relevance:false
-venue->venue1189
-authors->author2974412700
-authors->author2973247636
-authors->author2974298774
}
paper1913196744:Paper {
.title : "On model checking for nondeterministic infinitestate systems"
.year : 1998
.core : false
.relevance:false
-venue->venue1214
-cites->paper1982900911
-cites->paper2036526834
-cites->paper2123910665
-cites->paper2149706659
-cites->paper2170212320
-authors->author2780714346
-authors->author2627901245
}
paper1915593822:Paper {
.title : "Testing the results of static worstcase executiontime analysis"
.year : 1998
.core : false
.relevance:false
-venue->venue1216
-authors->author2974896712
-authors->author1980714858
}
paper1934227118:Paper {
.title : "Improving data freshness in lazy master schemes"
.year : 1998
.core : false
.relevance:false
-venue->venue770
-authors->author2918803705
-authors->author2108660490
-authors->author2139092179
}
paper1943176887:Paper {
.title : "Rumor Mobile Data Access Through Optimistic PeertoPeer Replication"
.year : 1998
.core : false
.relevance:false
-venue->venue384
-cites->paper1602193077
-cites->paper2116142433
-authors->author2012181057
-authors->author1964135394
-authors->author2048307374
-authors->author2103412749
-authors->author2098553043
-authors->author2119235039
}
paper1968128450:Paper {
.title : "Managing inconsistent specifications reasoning analysis and action"
.year : 1998
.core : false
.relevance:false
-venue->venue1307
-cites->paper1938613683
-cites->paper1979290877
-cites->paper2034717157
-cites->paper2054097655
-cites->paper2105603754
-cites->paper2117870171
-cites->paper2135920852
-cites->paper2147454307
-cites->paper2294967233
-authors->author2207023792
-authors->author2105909224
}
paper1972370267:Paper {
.title : "The use of CASE tools"
.year : 1998
.core : false
.relevance:false
-venue->venue1360
-cites->paper2001961185
-authors->author147163988
-authors->author2431114534
}
paper1978948468:Paper {
.title : "Building program optimizers with rewriting strategies"
.year : 1998
.core : false
.relevance:false
-venue->venue1428
-cites->paper2015640848
-cites->paper2138363365
-authors->author2051360977
-authors->author2131973199
-authors->author2027002858
}
paper1995119232:Paper {
.title : "Fast outoforder processor simulation using memoization"
.year : 1998
.core : false
.relevance:false
-venue->venue152
-cites->paper2129094586
-authors->author2666049199
-authors->author635023701
}
paper1996212617:Paper {
.title : "Cirrin a wordlevel unistroke keyboard for pen input"
.year : 1998
.core : false
.relevance:false
-venue->venue1563
-cites->paper2054731618
-authors->author620732773
-authors->author1987134293
}
paper2001907377:Paper {
.title : "Version models for software configuration management"
.year : 1998
.core : false
.relevance:false
-venue->venue1305
-cites->paper2077318760
-cites->paper2158046522
-cites->paper2161835696
-cites->paper2338335491
-authors->author2106335481
-authors->author346395239
}
paper2013222969:Paper {
.title : "Combining empirical results in software engineering"
.year : 1998
.core : false
.relevance:false
-venue->venue1624
-cites->paper2075848956
-authors->author2099525772
-authors->author2153576473
-authors->author1971801425
}
paper2015873350:Paper {
.title : "The case for usercentered CASE tools"
.year : 1998
.core : false
.relevance:false
-venue->venue763
-authors->author1937785728
-authors->author2286799394
}
paper2017397930:Paper {
.title : "Scope Consistency A Bridge between Release Consistency and Entry Consistency"
.year : 1998
.core : false
.relevance:false
-venue->venue1808
-cites->paper2051789131
-cites->paper2054739713
-cites->paper2152390090
-cites->paper2176864362
-cites->paper2177772636
-authors->author1982523417
-authors->author2157116051
-authors->author2166597129
}
paper2018568588:Paper {
.title : "The UML as a formal modeling notation"
.year : 1998
.core : false
.relevance:false
-venue->venue1814
-cites->paper2160019730
-authors->author426991758
-authors->author2111383049
-authors->author151827428
}
paper2032755892:Paper {
.title : "Functional verification of a multipleissue outoforder superscalar Alpha processorthe DEC Alpha microprocessor"
.year : 1998
.core : false
.relevance:false
-venue->venue1865
-authors->author2628540832
-authors->author2662313515
-authors->author2118127987
-authors->author2610057113
-authors->author2709681962
-authors->author2111338538
-authors->author2614727040
}
paper2035069210:Paper {
.title : "A type system for object initialization in the Java bytecode language"
.year : 1998
.core : false
.relevance:false
-venue->venue140
-authors->author2125383417
-authors->author2332660967
}
paper2049329210:Paper {
.title : "The case for collaborative programming"
.year : 1998
.core : false
.relevance:false
-venue->venue763
-authors->author1806024273
}
paper2051580064:Paper {
.title : "Model checking for a probabilistic branching time logic with fairness"
.year : 1998
.core : false
.relevance:false
-venue->venue1481
-cites->paper1511105469
-cites->paper1579117491
-cites->paper1601373402
-cites->paper1793726001
-cites->paper1850900101
-cites->paper1972203711
-cites->paper2125500714
-cites->paper2165161585
-authors->author2156109015
-authors->author2163680003
}
paper2054731618:Paper {
.title : "Quikwriting continuous stylusbased text entry"
.year : 1998
.core : false
.relevance:false
-venue->venue1563
-authors->author1124562777
}
paper2058451842:Paper {
.title : "Formal specification for role based access control userrole and rolerole relationship management"
.year : 1998
.core : false
.relevance:false
-venue->venue2169
-cites->paper2166602595
-authors->author2054027625
-authors->author2576754282
}
paper2067293385:Paper {
.title : "Building adaptive systems using ensemble"
.year : 1998
.core : false
.relevance:false
-venue->venue1593
-authors->author2109217526
-authors->author2094398115
-authors->author2096387634
-authors->author2012157957
-authors->author2142553426
}
paper2073407646:Paper {
.title : "Ownership types for flexible alias protection"
.year : 1998
.core : false
.relevance:false
-venue->venue140
-cites->paper1491178396
-cites->paper1555946950
-cites->paper2013672985
-cites->paper2080648611
-cites->paper2128932399
-authors->author2130450070
-authors->author1965051166
-authors->author2103426042
}
paper2079333278:Paper {
.title : "Theory and practice of constraint handling rules"
.year : 1998
.core : false
.relevance:false
-venue->venue1329
-cites->paper2135432705
-authors->author190508276
}
paper2080648611:Paper {
.title : "Classes and mixins"
.year : 1998
.core : false
.relevance:false
-venue->venue161
-authors->author2046621229
-authors->author113813022
-authors->author2133340784
}
paper2081437333:Paper {
.title : "Performance engineering of the Totem group communication system"
.year : 1998
.core : false
.relevance:false
-venue->venue2347
-cites->paper1973501242
-cites->paper1985349143
-cites->paper2005216655
-cites->paper2077671984
-cites->paper2131929623
-authors->author2985876259
-authors->author2778690319
-authors->author2154501644
}
paper2085631457:Paper {
.title : "What is a file synchronizer"
.year : 1998
.core : false
.relevance:false
-venue->venue2382
-cites->paper1602193077
-cites->paper2001803004
-cites->paper2048071586
-authors->author2118893055
-authors->author1988947184
}
paper2099165995:Paper {
.title : "Modelica A Unified ObjectOriented Language for System Modelling and Simulation"
.year : 1998
.core : false
.relevance:false
-venue->venue26
-cites->paper2012408028
-authors->author2021091039
-authors->author176398503
}
paper2075854425:Paper {
.title : "The parttime parliament"
.year : 1998
.core : false
.relevance:false
-venue->venue1364
-cites->paper1545155892
-cites->paper1973501242
-cites->paper2012481411
-cites->paper2035362408
-cites->paper2111132249
-cites->paper2152465173
-cites->paper2156027558
-authors->author2096750770
}
paper2100500368:Paper {
.title : "Implementing statecharts in PROMELASPIN"
.year : 1998
.core : false
.relevance:false
-venue->venue2562
-cites->paper2081938726
-cites->paper2115309705
-authors->author245516513
-authors->author2974450151
-authors->author1897785277
-authors->author2028047182
}
paper2102626454:Paper {
.title : "Inconsistency management for multipleview software development environments"
.year : 1998
.core : false
.relevance:false
-venue->venue1331
-cites->paper1504602695
-cites->paper1851467418
-cites->paper2064707938
-cites->paper2117870171
-cites->paper2133633001
-authors->author2311088539
-authors->author106313952
-authors->author2987328752
}
paper2102748509:Paper {
.title : "Localityaware request distribution in clusterbased network servers"
.year : 1998
.core : false
.relevance:false
-venue->venue152
-authors->author62967857
-authors->author2115251612
-authors->author2290999210
-authors->author252313521
-authors->author2974105815
-authors->author2303316918
-authors->author2578562429
}
paper2105360973:Paper {
.title : "A type system for Java bytecode subroutines"
.year : 1998
.core : false
.relevance:false
-venue->venue161
-cites->paper2035069210
-authors->author2028182399
-authors->author2162106674
}
paper2106529232:Paper {
.title : "Understanding code mobility"
.year : 1998
.core : false
.relevance:false
-venue->venue1331
-cites->paper2121134342
-cites->paper2134342348
-authors->author713605394
-authors->author2192390985
-authors->author131738572
}
paper2107859560:Paper {
.title : "Multiprocessors should support simple memory consistency models"
.year : 1998
.core : false
.relevance:false
-venue->venue1073
-cites->paper1885534640
-cites->paper1966151719
-cites->paper1966285605
-cites->paper2029601347
-cites->paper2054739713
-cites->paper2101377877
-cites->paper2145021036
-authors->author2112660313
}
paper2108571087:Paper {
.title : "From MSCs to statecharts"
.year : 1998
.core : false
.relevance:false
-venue->venue2696
-authors->author2138551599
-authors->author2124292291
-authors->author2212499552
-authors->author2091504235
}
paper2111039488:Paper {
.title : "Requirements evolution in the midst of environmental change a managed approach"
.year : 1998
.core : false
.relevance:false
-venue->venue115
-cites->paper2157437711
-authors->author2985353115
-authors->author2938387169
}
paper2122048894:Paper {
.title : "Semipassive replication"
.year : 1998
.core : false
.relevance:false
-venue->venue465
-cites->paper2005216655
-cites->paper2035362408
-cites->paper2077240273
-cites->paper2133943294
-authors->author2016580195
-authors->author2336215013
-authors->author30930764
}
paper2125387478:Paper {
.title : "Maintaining strong cache consistency in the World Wide Web"
.year : 1998
.core : false
.relevance:false
-venue->venue1091
-cites->paper1555915743
-cites->paper2005373714
-authors->author2169037486
-authors->author2336242996
}
paper2126851641:Paper {
.title : "Manufacturing cheap resilient and stealthy opaque constructs"
.year : 1998
.core : false
.relevance:false
-venue->venue161
-cites->paper1491178396
-cites->paper1964962870
-authors->author321147201
-authors->author2239754346
-authors->author2170666093
}
paper2133824053:Paper {
.title : "Integrating architecture description languages with a standard design method"
.year : 1998
.core : false
.relevance:false
-venue->venue5
-cites->paper2013658284
-cites->paper2110425399
-cites->paper2122824813
-cites->paper2153933075
-cites->paper2160019730
-cites->paper2176490758
-authors->author2182166124
-authors->author311754748
-authors->author2308692196
-authors->author2023055819
}
paper2134716336:Paper {
.title : "Architecturebased runtime software evolution"
.year : 1998
.core : false
.relevance:false
-venue->venue5
-cites->paper2013658284
-cites->paper2077318760
-cites->paper2096910097
-cites->paper2146082668
-cites->paper2152952812
-cites->paper2153933075
-cites->paper2167429246
-authors->author2113585066
-authors->author2023055819
-authors->author2138366517
}
paper2136077912:Paper {
.title : "MMLite a highly componentized system architecture"
.year : 1998
.core : false
.relevance:false
-venue->venue3166
-cites->paper2122960384
-authors->author205809023
-authors->author2473382879
}
paper2137252778:Paper {
.title : "A Statically Safe Alternative to Virtual Types"
.year : 1998
.core : false
.relevance:false
-venue->venue26
-cites->paper1739798036
-authors->author2043604325
-authors->author2060729710
-authors->author248131350
}
paper2145965735:Paper {
.title : "Coordinated exception handling in distributed object systems from model to system implementation"
.year : 1998
.core : false
.relevance:false
-venue->venue770
-cites->paper2133201251
-authors->author2029293694
-authors->author189665783
-authors->author2718411817
}
paper2145986468:Paper {
.title : "Information system project selection using fuzzy logic"
.year : 1998
.core : false
.relevance:false
-venue->venue772
-authors->author2159559695
-authors->author2973304364
}
paper2147513755:Paper {
.title : "Flexible modeling and execution of workflow activities"
.year : 1998
.core : false
.relevance:false
-venue->venue2752
-cites->paper2062756186
-authors->author2185344053
}
paper2150767046:Paper {
.title : "A prioritized Petri net model and its application in distributed multimedia systems"
.year : 1998
.core : false
.relevance:false
-venue->venue1091
-authors->author2660850635
-authors->author2127655529
-authors->author2634184958
}
paper2151308681:Paper {
.title : "Disjunctive programming properties of the convex hull of feasible points"
.year : 1998
.core : false
.relevance:false
-venue->venue3415
-authors->author2126407849
}
paper2157532207:Paper {
.title : "Clone detection using abstract syntax trees"
.year : 1998
.core : false
.relevance:false
-venue->venue1070
-cites->paper2109943392
-cites->paper2115534035
-authors->author2572182773
-authors->author2678028807
-authors->author1970241101
-authors->author2144132427
-authors->author2684386371
}
paper2161660617:Paper {
.title : "Embedding critics in design environments"
.year : 1998
.core : false
.relevance:false
-venue->venue2203
-cites->paper1969492351
-cites->paper2037497522
-authors->author674399801
-authors->author2176357113
-authors->author2114119188
-authors->author2658270805
-authors->author1964528081
}
paper2169934995:Paper {
.title : "Implementing Layered Designs with Mixin Layers"
.year : 1998
.core : false
.relevance:false
-venue->venue26
-cites->paper1591471358
-cites->paper1739798036
-cites->paper2027657506
-cites->paper2080648611
-authors->author197016611
-authors->author2030271208
}
paper2171627300:Paper {
.title : "Managing conflicts in goaldriven requirements engineering"
.year : 1998
.core : false
.relevance:false
-venue->venue1331
-cites->paper1979290877
-cites->paper1986186023
-cites->paper2017739343
-cites->paper2105603754
-cites->paper2113435553
-cites->paper2125708466
-cites->paper2147454307
-cites->paper2147543351
-cites->paper2162255975
-authors->author163926993
-authors->author407089328
-authors->author1993417101
}
paper2912854634:Paper {
.title : "Bayesian networks"
.year : 1998
.core : false
.relevance:false
-venue->venue4088
-authors->author2913084264
}
paper2913036292:Paper {
.title : "Workflow evolution"
.year : 1998
.core : false
.relevance:false
-venue->venue2148
-authors->author2990104655
-authors->author1931991507
-authors->author37938808
-authors->author2145207705
}
paper1482786207:Paper {
.title : "Practical File System Design with the Be File System"
.year : 1998
.core : false
.relevance:false
-venue->venue0
-cites->paper2115600841
-cites->paper2135652458
-cites->paper2139921445
-cites->paper2171352284
-authors->author2275856258
}
paper1580291316:Paper {
.title : "Modeling for Reliability Analysis Markov Modeling for Reliability Maintainability Safety and Supportability Analyses of Complex Systems"
.year : 1998
.core : false
.relevance:false
-venue->venue0
-authors->author1923919965
-authors->author2007344709
}
paper2083803628:Paper {
.title : "Dynamic class loading in the Java virtual machine"
.year : 1998
.core : false
.relevance:false
-venue->venue140
-cites->paper2045723688
-cites->paper2092889242
-authors->author2131857791
-authors->author2201416
}
paper2088616860:Paper {
.title : "On the complexity of unsatisfiability proofs for random k CNF formulas"
.year : 1998
.core : false
.relevance:false
-venue->venue1834
-cites->paper2057361103
-cites->paper2126420408
-authors->author672707272
-authors->author1964658237
-authors->author2893425177
-authors->author2019007185
}
}