Skip to content

Commit

Permalink
fix(up): Minor fixes to supported problem declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
arbimo committed Oct 10, 2023
1 parent 8561f4a commit 8d72c7b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions planning/unified/plugin/up_aries/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"TIMED_EFFECT", # backward compat
"TIMED_GOALS",
"DURATION_INEQUALITIES",
"SELF_OVERLAPPING"
"SELF_OVERLAPPING",
# EXPRESSION_DURATION
"STATIC_FLUENTS_IN_DURATIONS",
"STATIC_FLUENTS_IN_DURATION", # backward compat
Expand Down Expand Up @@ -107,14 +107,14 @@
"UNBOUNDED_INT_ACTION_PARAMETERS",
# "REAL_ACTION_PARAMETERS",
# QUALITY_METRICS
# "ACTIONS_COST",
"ACTIONS_COST",
# "FINAL_VALUE",
"MAKESPAN",
"PLAN_LENGTH",
# "OVERSUBSCRIPTION",
# "TEMPORAL_OVERSUBSCRIPTION",
"INT_NUMBERS_IN_OVERSUBSCRIPTION",
"REAL_NUMBERS_IN_OVERSUBSCRIPTION",
# "REAL_NUMBERS_IN_OVERSUBSCRIPTION",
# ACTIONS_COST_KIND
"STATIC_FLUENTS_IN_ACTIONS_COST",
"FLUENTS_IN_ACTIONS_COST",
Expand All @@ -132,7 +132,8 @@
"TASK_ORDER_TOTAL",
"TASK_ORDER_PARTIAL",
# "TASK_ORDER_TEMPORAL",
}
},
version=2
)

_ARIES_VAL_SUPPORTED_KIND = up.model.ProblemKind(
Expand All @@ -154,7 +155,7 @@
"TIMED_EFFECT", # backward compat
"TIMED_GOALS",
"DURATION_INEQUALITIES",
"SELF_OVERLAPPING"
"SELF_OVERLAPPING",
# EXPRESSION_DURATION
"STATIC_FLUENTS_IN_DURATIONS",
"STATIC_FLUENTS_IN_DURATION", # backward compat
Expand Down Expand Up @@ -225,7 +226,8 @@
"TASK_ORDER_TOTAL",
"TASK_ORDER_PARTIAL",
"TASK_ORDER_TEMPORAL",
}
},
version=2
)


Expand Down

0 comments on commit 8d72c7b

Please sign in to comment.