Skip to content

Commit

Permalink
fix order of alternatives in policy grammar after introducing new eff…
Browse files Browse the repository at this point in the history
…ects
  • Loading branch information
drexlerd committed Jun 4, 2024
1 parent 1a4c9d5 commit 0e5b27b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext

__version__ = "0.3.24"
__version__ = "0.3.25"
HERE = Path(__file__).resolve().parent


Expand Down
4 changes: 2 additions & 2 deletions src/policy/parsers/syntactic/parser_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ namespace dlplan::policy::parser
| greater_concept_condition | equal_concept_condition;

const auto feature_effect_def = positive_boolean_effect | negative_boolean_effect | unchanged_boolean_effect
| increment_numerical_effect | increment_or_unchanged_numerical_effect
| decrement_numerical_effect | decrement_or_unchanged_numerical_effect
| increment_or_unchanged_numerical_effect | increment_numerical_effect
| decrement_or_unchanged_numerical_effect | decrement_numerical_effect
| unchanged_numerical_effect | greater_numerical_effect | equal_numerical_effect
| increment_concept_effect | decrement_concept_effect | unchanged_concept_effect | greater_concept_effect | equal_concept_effect;

Expand Down

0 comments on commit 0e5b27b

Please sign in to comment.