Utilities API Reference
Utility classes for outcome space management and bid selection.
negmas_genius_agents.utils.outcome_space
Utility classes for negmas-genius-agents.
This module provides helper classes used by the reimplemented Genius agents.
BidDetails
dataclass
A bid with its associated utility value.
This is equivalent to Genius's BidDetails class.
Source code in src/negmas_genius_agents/utils/outcome_space.py
SortedOutcomeSpace
dataclass
A sorted list of all possible outcomes with their utilities.
This is equivalent to Genius's SortedOutcomeSpace class. It provides efficient lookup of bids by utility value.
The outcomes are sorted in descending order by utility (best first).
Remarks
- The sorted outcomes are obtained from the utility function's own
inverter (
BaseUtilityFunction.invert()) rather than being enumerated and sorted here. NegMAS caches inverters on the ufun (and can load them from disk when a scenario was saved with them), so all negotiators sharing a ufun share one presorted list instead of each re-evaluating the whole outcome space. - Lookups (
get_bid_near_utility,get_bids_above,get_bids_in_range) binary-search the inverter's sorted utilities instead of scanning all outcomes. - The inverter does not sort stably, so outcomes of exactly equal
utility are re-ordered by their enumeration order (see
_break_ties); the resulting list is identical to enumerating the space and sorting it here, which is what agents relying on "the first bid at or above X" depend on.
Source code in src/negmas_genius_agents/utils/outcome_space.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | |
max_utility
property
Get the maximum possible utility.
min_utility
property
Get the minimum possible utility.
outcomes
property
Get all outcomes sorted by utility (descending).
get_bid_near_utility(target_utility)
Find the bid with utility closest to the target utility.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target_utility
|
float
|
The desired utility value. |
required |
Returns:
| Type | Description |
|---|---|
BidDetails | None
|
The BidDetails with utility closest to the target, or None if no bids. |
Source code in src/negmas_genius_agents/utils/outcome_space.py
get_bids_above(min_util)
Get all bids with utility >= min_util.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
min_util
|
float
|
Minimum utility threshold. |
required |
Returns:
| Type | Description |
|---|---|
list[BidDetails]
|
List of BidDetails with utilities >= min_util. |
Source code in src/negmas_genius_agents/utils/outcome_space.py
get_bids_in_range(min_util, max_util)
Get all bids with utility in the specified range.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
min_util
|
float
|
Minimum utility (inclusive). |
required |
max_util
|
float
|
Maximum utility (inclusive). |
required |
Returns:
| Type | Description |
|---|---|
list[BidDetails]
|
List of BidDetails with utilities in [min_util, max_util]. |