Skip to content

Commit

Permalink
Merge pull request #590 from aiplan4eu/fix-issue-589
Browse files Browse the repository at this point in the history
Fix issue 589
  • Loading branch information
mikand committed Apr 2, 2024
2 parents c74d357 + adb5bde commit d81c882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unified_planning/model/multi_agent/ma_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,10 +393,10 @@ def _update_problem_kind_fluent(self, fluent: "up.model.fluent.Fluent"):
):
self._kind.set_numbers("BOUNDED_TYPES")
if fluent.type.is_int_type():
self.kind.set_fluents_type("INT_FLUENTS")
self._kind.set_fluents_type("INT_FLUENTS")
else:
assert fluent.type.is_real_type()
self.kind.set_fluents_type("REAL_FLUENTS")
self._kind.set_fluents_type("REAL_FLUENTS")
elif fluent.type.is_user_type():
self._kind.set_fluents_type("OBJECT_FLUENTS")
for p in fluent.signature:
Expand Down

0 comments on commit d81c882

Please sign in to comment.