Source code for scml.scml2020.agents.random

"""Implements a randomly behaving agent"""

from negmas import RandomUtilityFunction

from .indneg import IndependentNegotiationsAgent

__all__ = ["RandomAgent"]


[docs] class RandomAgent(IndependentNegotiationsAgent): """An agent that negotiates randomly."""
[docs] def create_ufun(self, is_seller: bool, issues=None, outcomes=None): if issues: outcomes = None return RandomUtilityFunction( issues=issues, outcomes=outcomes, reserved_value=0.0, )