Skip to content

Commit

Permalink
Added explicit_false_initial_states in MAPDDLWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
Alee08 committed Apr 27, 2023
1 parent ad3a878 commit d0e3c0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def run(self):

setup(
name="up_fmap",
version="0.0.6",
version="0.0.7",
description="up_fmap",
author="Alejandro Torreño, Eva Onaindia and Oscar Sapena",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion up_fmap/fmap_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _solve(
plan = None
logs: List["up.engines.results.LogMessage"] = []
with tempfile.TemporaryDirectory() as tempdir:
w = MAPDDLWriter(problem)
w = MAPDDLWriter(problem, explicit_false_initial_states=True)
domain_filename = os.path.join(tempdir, "domain_pddl/")
problem_filename = os.path.join(tempdir, "problem_pddl/")
plan_filename = os.path.join(tempdir, "plan.txt")
Expand Down

0 comments on commit d0e3c0c

Please sign in to comment.