-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-test.ttl
72 lines (65 loc) · 1.58 KB
/
config-test.ttl
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
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@prefix o: <http://project-hobbit.eu/ontology/>
#@prefix o: <http://aksw.org/adhoc/ontology/> .
@prefix o: <http://www.example.org/> .
@prefix : <http://project-hobbit.eu/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:defaultScenarioConfig
a o:ScenarioConfig ;
o:randomSeed 1000 ;
o:scenarioLength [ o:min 4; o:max 8; o:type xsd:integer] ;
o:numScenarios 10 ;
o:numWarmups 2 ;
o:nfa [
o:startState o:state1 ;
o:transition [
o:from o:state1 ;
o:to o:state2 ;
o:preventUndo true ;
o:key "cp5" ;
o:weight [ o:min 0.6 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp4" ;
o:weight [ o:min 0.6 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp5" ;
o:weight [ o:min 0.6 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp6" ;
o:weight [ o:min 1.0 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp7" ;
o:weight [ o:min 1.0 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp8" ;
o:weight [ o:min 1.0 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp9" ;
o:weight [ o:min 0.6 ; o:max 1.0 ]
] ;
o:transition [
o:from o:state2 ;
o:to o:state2 ;
o:key "cp14" ;
o:weight [ o:min 0.6 ; o:max 1.0 ]
] ;
]
.