Skip to content

Commit

Permalink
updating default non-competitors
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserfarouk committed Feb 22, 2024
1 parent 08332a4 commit 0a8f7a1
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions src/scml/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
GreedySyncAgent,
SingleAgreementAspirationAgent,
SyncRandomOneShotAgent,
RandDistOneShotAgent,
EqualDistOneShotAgent,
)
from scml.oneshot.sysagents import _StdSystemAgent as OneShotSysAgent
from scml.oneshot.world import OneShotWorld, SCML2024OneShotWorld
Expand All @@ -36,8 +38,10 @@
from scml.std.agent import StdAgent
from scml.std.agents import (
SyncRandomStdAgent,
GreedyStdAgent,
GreedySyncAgent,
RandomStdAgent,
)
from scml.std.agents.greedy import GreedyStdAgent
from scml.std.world import STD_DEFAULT_PARAMS

__all__ = [
Expand All @@ -56,7 +60,6 @@
"DefaultAgents2021",
"DefaultAgents2022",
"DefaultAgents2023",
"DefaultAgents2024",
"DefaultAgentsOneShot",
"DefaultAgentsOneShot2023",
"DefaultAgentsOneShot2024",
Expand Down Expand Up @@ -114,13 +117,6 @@
# RandomOneShotAgent,
]

DefaultAgents2024 = [
DecentralizingAgent,
# MarketAwareDecentralizingAgent,
MarketAwareIndDecentralizingAgent,
SatisficerAgent,
# RandomOneShotAgent,
]
DefaultAgentsOneShot = [
GreedyOneShotAgent,
SingleAgreementAspirationAgent,
Expand All @@ -135,13 +131,14 @@

DefaultAgentsOneShot2024 = [
GreedyOneShotAgent,
SyncRandomOneShotAgent,
RandDistOneShotAgent,
EqualDistOneShotAgent,
]

DefaultAgentsStd2024 = [
GreedyStdAgent,
RandomStdAgent,
SyncRandomStdAgent,
SyncRandomOneShotAgent,
]


Expand Down

0 comments on commit 0a8f7a1

Please sign in to comment.