| 249 | Let's look at more detail at the computerbuy.json profile: |
| 250 | {{{ |
| 251 | "SumOfGroupsUtilitySpace": { |
| 252 | "domain": {.... |
| 253 | }, |
| 254 | "name": "computerbuy", |
| 255 | "partUtilities": { |
| 256 | "boxandgraphics": { |
| 257 | "PartsUtilities": { |
| 258 | "issues": [ |
| 259 | "box", |
| 260 | "graphics" |
| 261 | ], |
| 262 | "utilslist": [ |
| 263 | { |
| 264 | "values": [ |
| 265 | "all-in-one", |
| 266 | "built-in" |
| 267 | ], |
| 268 | "util": 0.09 |
| 269 | }, |
| 270 | { |
| 271 | "values": [ |
| 272 | "all-in-one", |
| 273 | "low 8G" |
| 274 | ], |
| 275 | "util": 0 |
| 276 | }, |
| 277 | .... |
| 278 | }}} |
| 279 | |
| 280 | The domain is a normal domain definition, with a number of issues and possible issue values. |
| 281 | |
| 282 | The different part is the partsUtilities. Here utilities are defined on combinations of |
| 283 | issue values, instead of per issue. The first group is named "boxandgraphics" (any name can be chosen), |
| 284 | combining the values of the issue "box" and "graphics". Here we see that the utility of a all-in-one with built-in graphics is higher than that of a all-in-one with a low-end graphics card, and that infact the latter has utility 0 (which is because the all-in-one box does not have a graphics card slot). |