source: opponentmodel/src/test/resources/japantrip1.json@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 1.4 KB
Line 
1{
2 "LinearAdditiveUtilitySpace": {
3 "issueUtilities": {
4 "place": {
5 "DiscreteValueSetUtilities": {
6 "valueUtilities": {
7 "Tokyo": 1.0,
8 "Osaka": 0.2,
9 "Negoya": 0.2,
10 "Hokkaido": 0.2
11 }
12 }
13 },
14 "budget": {
15 "NumberValueSetUtilities": {
16 "lowValue": 900,
17 "lowUtility": 1.0,
18 "highValue": 1800,
19 "highUtility": 0.15
20 }
21 },
22 "days": {
23 "DiscreteValueSetUtilities": {
24 "valueUtilities": {
25 "3": 1.0,
26 "4": 0.2,
27 "5": 0.2,
28 "6": 0.1
29 }
30 }
31 },
32 "purpose": {
33 "DiscreteValueSetUtilities": {
34 "valueUtilities": {
35 "Sightseeing": 0.6,
36 "Activity": 1.0,
37 "Shopping": 0.3
38 }
39 }
40 }
41 },
42 "issueWeights": {
43 "place": 0.57,
44 "budget": 0.09,
45 "days": 0.17,
46 "purpose": 0.17
47 },
48 "domain": {
49 "name": "japantrip",
50 "issuesValues": {
51 "place": {
52 "values": [
53 "Tokyo",
54 "Osaka",
55 "Negoya",
56 "Hokkaido"
57 ]
58 },
59 "budget": {
60 "range": {
61 "low": 900,
62 "high": 1800,
63 "step": 300
64 }
65 },
66 "days": {
67 "values": [
68 "3",
69 "4",
70 "5",
71 "6"
72 ]
73 },
74 "purpose": {
75 "values": [
76 "Sightseeing",
77 "Activity",
78 "Shopping"
79 ]
80 }
81 }
82 },
83 "name": "japantrip1",
84 "reservationBid": {
85 "issuevalues": {
86 "place": "Osaka",
87 "budget": 1800,
88 "days": "6",
89 "purpose": "Shopping"
90 }
91 }
92 }
93}
Note: See TracBrowser for help on using the repository browser.