Skip to content

Commit

Permalink
Merge pull request #5 from aiplan4eu/fix-unsolvable
Browse files Browse the repository at this point in the history
Fix unsolvable result
  • Loading branch information
Alee08 authored Nov 9, 2023
2 parents a61205f + d3a0e24 commit 7519363
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.10",
version="0.0.11",
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 @@ -89,7 +89,7 @@ def _result_status(
if retval != 0:
return PlanGenerationResultStatus.INTERNAL_ERROR
elif plan is None:
return PlanGenerationResultStatus.UNSOLVABLE_PROVEN
return PlanGenerationResultStatus.UNSOLVABLE_INCOMPLETELY
else:
return PlanGenerationResultStatus.SOLVED_SATISFICING

Expand Down

0 comments on commit 7519363

Please sign in to comment.