-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ecai23 #264
Ecai23 #264
Conversation
This commit fixes a warning when doing 'poetry install': > Warning: poetry.lock is not consistent with pyproject.toml. You may be getting improper dependencies. Run `poetry lock [--no-update]` to fix it. We run 'poetry lock --no-update' using poetry at version 1.6.1.
from 'search(ff)' to 'search(ff())'. Proper escaping of parenthesis has been applied.
@@ -63,7 +63,7 @@ def get_planner_cmd( | |||
str(bind_path / domain.name), | |||
str(bind_path / problem.name), | |||
# we need escaping due to nuances in using planutils with docker | |||
f'--search "astar\\({self._heuristic.value}\\)"', | |||
f'--search "astar\\({self._heuristic.value}\\(\\)\\)"', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change due to recent version of downward (missing reference).
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #264 +/- ##
==========================================
+ Coverage 89.79% 90.95% +1.15%
==========================================
Files 12 22 +10
Lines 549 984 +435
==========================================
+ Hits 493 895 +402
- Misses 56 89 +33
Flags with carried forward coverage won't be shown. Click here to find out more. |
@@ -0,0 +1,65 @@ | |||
import pkg_resources |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
tests/test_adl_compiler/test_compilation_remove_disjunctive_goal.py
Outdated
Show resolved
Hide resolved
9088c6a
to
c071aba
Compare
…on _compile_instance Suggested by @francescofuggitti: #264 (comment)
Potentially breaking change if someone relied on public functions with 'before' in their name. However, for vast majority of library uses, this should not have happened.
…new_conditional_effects'
Inspired by @francescofuggitti's comment: #264 (comment)
Signed-off-by: Francesco Fuggitti <francesco.fuggitti@gmail.com>
Signed-off-by: Francesco Fuggitti <francesco.fuggitti@gmail.com>
Signed-off-by: Francesco Fuggitti <francesco.fuggitti@gmail.com>
Benchmarks are now stored in a new repository. The new repository is added as a submodule in tests/benchmarks. Minor changes were required on the test code side so to adapt it to the new benchmark folder structure.
the poetry lock has been produced with `poetry lock --no-update`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's great! Thank you, @LBonassi95 and @marcofavorito!
Co-Authored-By: Francesco Fuggitti <francescofuggitti@gmail.com> - Pnf -> PPNF: #264 (comment) - introduced -> introduces: #264 (comment) - encodind -> encoding: #264 (comment)
…on _compile_instance Suggested by @francescofuggitti: #264 (comment)
Inspired by @francescofuggitti's comment: #264 (comment)
Proposed changes
Integration of the ecai23 ADL encoding.
Types of changes