source: src/test/resources/partydomain/party1_utility.xml

Last change on this file was 76, checked in by Wouter Pasman, 6 years ago

#28 Added UncertainAdditiveUtilitySpace. Added unit tests for Additive and Uncertain spaces. Added new space type.

File size: 4.9 KB
Line 
1<utility_space>
2 <objective index="0" description="" name="Party" type="objective"
3 etype="objective">
4 <issue index="1" name="Food" vtype="discrete" type="discrete"
5 etype="discrete">
6 <item index="1" description="Buy bags of chips and party nuts for all guests."
7 value="Chips and Nuts" cost="100.0" evaluation="3">
8 </item>
9 <item index="2"
10 description="Diced cheese, sliced sausage, deep fried stuff. More tasty than chips and nuts, but more expensive."
11 value="Finger-Food" cost="170.0" evaluation="2">
12 </item>
13 <item index="3"
14 description="Custom snacks, hours d’oeuvres etc. Less expansive than finger-food, but more work."
15 value="Handmade Food" cost="120.0" evaluation="2">
16 </item>
17 <item index="4"
18 description="Outsource the food, if you will. The least work, the highest cost."
19 value="Catering" cost="250.0" evaluation="1">
20 </item>
21 </issue>
22 <issue index="2" name="Drinks" vtype="discrete" type="discrete"
23 etype="discrete">
24 <item index="1" description="Soda’s, ice water, etc." value="Non-Alcoholic"
25 cost="75.0" evaluation="1">
26 </item>
27 <item index="2"
28 description="More than enough beers for everybody. It has alcohol, but is more expensive."
29 value="Beer Only" cost="300.0" evaluation="3">
30 </item>
31 <item index="3"
32 description="Mix your own drinks. More work, but less expensive than a trainload of beer."
33 value="Handmade Cocktails" cost="200.0" evaluation="2">
34 </item>
35 <item index="4"
36 description="Let some company do the drinks. Least work, highest cost."
37 value="Catering" cost="450.0" evaluation="1">
38 </item>
39 </issue>
40 <issue index="3" name="Location" vtype="discrete" type="discrete"
41 etype="discrete">
42 <item index="1"
43 description="A tent on some field somewhere. Roomy, but outdoors."
44 value="Party Tent" cost="200.0" evaluation="2">
45 </item>
46 <item index="2"
47 description="Give the party in your dormitory. It’s home, but there is less room."
48 value="Your Dorm" cost="100.0" evaluation="1">
49 </item>
50 <item index="3"
51 description="Hire a standard party room. Enough room, no outdoor problems. It costs more, though."
52 value="Party Room" cost="400.0" evaluation="4">
53 </item>
54 <item index="4"
55 description="The fanciest option. A beautifully decorated ballroom with everything you need."
56 value="Ballroom" cost="600.0" evaluation="3">
57 </item>
58 </issue>
59 <issue index="4" name="Invitations" vtype="discrete" type="discrete"
60 etype="discrete">
61 <item index="1"
62 description="Write the address on pieces of paper and hand those out."
63 value="Plain" cost="25.0" evaluation="1">
64 </item>
65 <item index="2"
66 description="Take a nice picture of something, or buy one in the store, and write on the back of that. More expensive, but prettier."
67 value="Photo" cost="75.0" evaluation="3">
68 </item>
69 <item index="3"
70 description="Custom shape card. More work, a tad less expensive than the photo option."
71 value="Custom, Handmade" cost="50.0" evaluation="4">
72 </item>
73 <item index="4"
74 description="Design the card, then let somebody else print it. You pay a lot, but do the least."
75 value="Custom, Printed" cost="150.0" evaluation="2">
76 </item>
77 </issue>
78 <issue index="5" name="Music" vtype="discrete" type="discrete"
79 etype="discrete">
80 <item index="1"
81 description="Plug some boxes into your computer and run off your MP3 collection. More work, the wiring costs money."
82 value="MP3" cost="100.0" evaluation="2">
83 </item>
84 <item index="2"
85 description="Hire a DJ to play off his MP3 collection. No work for you during the party, but more expensive."
86 value="DJ" cost="250.0" evaluation="3">
87 </item>
88 <item index="3"
89 description="Hire a party band for live music. The most expensive, but it is live music."
90 value="Band" cost="350.0" evaluation="1">
91 </item>
92 </issue>
93 <issue index="6" name="Cleanup" vtype="discrete" type="discrete"
94 etype="discrete">
95 <item index="1"
96 description="This will take a lot of scrubbing. It is cheap, but by far the most work."
97 value="Water and Soap" cost="20.0" evaluation="2">
98 </item>
99 <item index="2"
100 description="Specialized materials will help cleaning a lot, but it is more expensive."
101 value="Specialized Materials" cost="60.0" evaluation="3">
102 </item>
103 <item index="3"
104 description="Rent a CleanMaster 3000 and see those stains disappear in no time. Yet less work, yet more mone"
105 value="Special Equiment" cost="150.0" evaluation="1">
106 </item>
107 <item index="4"
108 description="Hire somebody else to do your dirty work. No work,but pricey."
109 value="Hired Help" cost="200.0" evaluation="1">
110 </item>
111 </issue>
112 <weight index="1" value="0.19">
113 </weight>
114 <weight index="2" value="0.28">
115 </weight>
116 <weight index="3" value="0.19">
117 </weight>
118 <weight index="4" value="0.05">
119 </weight>
120 <weight index="5" value="0.19">
121 </weight>
122 <weight index="6" value="0.10">
123 </weight>
124 </objective>
125</utility_space>
Note: See TracBrowser for help on using the repository browser.