feat: Remove the goal count restriction on initial state

This commit is contained in:
Leni Aniva 2024-10-04 18:42:33 -07:00 committed by Leni Aniva
parent cd5cf51970
commit 0d773e256b
1 changed files with 1 additions and 2 deletions

View File

@ -80,13 +80,12 @@ class Agent:
Searches using th
"""
assert server.is_automatic(), "Search must be run in automatic mode"
assert len(goal_state.goals) == 1, "Initial state must have exactly one goal"
initial_state = SearchState(
state=goal_state,
parent=None,
parent_goal_id=None,
priorities=[0.0]
priorities=[0.0 for _ in goal_state.goals]
)
search_stack = [initial_state]
"""