Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ac_solver/envs/ac_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def __init__(self, config: ACEnvConfig = ACEnvConfig()):
for i in range(self.n_gen)
] # lengths of relators in the current state
self.actions = [] # list of actions from the initial state
self.supermoves = None # dict of supermoves when implemented; None for now

def step(self, action):
self.actions += [action]
Expand Down