Changes between Version 502 and Version 503 of WikiStart


Ignore:
Timestamp:
12/16/24 13:25:15 (4 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v502 v503  
    236236=== Sum Of Groups
    237237The SumOfGroupsUtilitySpace is a utility space that defines the utility of bids as a sum of the
    238 utilities of a number of subsets, or groups, of the issue values.
    239 
    240 A group defines the utility of a non-empty subset of the issues in the domain.
    241 The parts are non-overlapping. All combinations must have a utility assigned.
     238utilities of a number of subsets, or groups, of the issue values.
    242239
    243240This space enables handling UtilitySpaces that are not simply linear
     
    250247
    251248
     249Let'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
     280The domain is a normal domain definition, with a number of issues and possible issue values.
     281
     282The different part is the partsUtilities. Here utilities are defined on combinations of
     283issue values, instead of per issue. The first group is named "boxandgraphics" (any name can be chosen),
     284combining 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).
    252285
    253286