Skip to content

Commit

Permalink
chore: removed underscore placeholder variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Gobbi committed Jan 24, 2025
1 parent a5f7f61 commit 8582262
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions unified_planning/model/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ def add_increase_continuous_effect(
interval: "up.model.timing.TimeInterval",
fluent: Union["up.model.fnode.FNode", "up.model.fluent.Fluent"],
rhs: "up.model.expression.Expression",
_=None,
):
"""
During the given interval, adds the given `increment` to the `continuous_action's effects`.
Expand Down Expand Up @@ -422,7 +421,6 @@ def add_decrease_continuous_effect(
interval: "up.model.timing.TimeInterval",
fluent: Union["up.model.fnode.FNode", "up.model.fluent.Fluent"],
rhs: "up.model.expression.Expression",
_=None,
):
"""
During the given interval, adds the given `decrement` to the `continuous_action's effects`.
Expand Down
2 changes: 1 addition & 1 deletion unified_planning/test/examples/testing_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ def get_example_problems():
ClosedTimeInterval(StartTiming(), EndTiming()),
battery_charge,
1,
GE(battery_charge, 10),
# GE(battery_charge, 10), # NOTE currently not supported
)
l1 = Object("l1", Location)
l2 = Object("l2", Location)
Expand Down

0 comments on commit 8582262

Please sign in to comment.