Allow for removal of static facts in init and removal of irrelevant operators to be optional
bonetblai opened this issue ยท 4 comments
It will be useful to add an option to the grounder to control the removal of static facts from the initial state as well as the removal of irrelevant operators. At this stage, this option does not to be exported to the top-most executable, it would be enough to add two options to _ground()
and ground()
as follows:
def ground(problem, remove_statics_from_initial_state=True, remove_irrelevant_operators=True):
def _ground(problem, remove_statics_from_initial_state=True, remove_irrelevant_operators=True):
If you agree, please update the pip version as well.
Thanks!
I agree that such options could be useful. Pull requests welcome :-)
I just did the pull request for this one. However, the unit tests failed. It seems that the blame is not on me: I got a lot of messages; e.g. the tail is
@@ -364,11 +427,14 @@
threads = []
for for_py_version, distribution_to_package in BUNDLE_SUPPORT.items():
# load extra search dir for the given for_py
for distribution in distribution_to_package.keys():
- thread = Thread(target=_run_manual_upgrade, args=(app_data, distribution, for_py_version, env))
+ thread = Thread(
+ target=_run_manual_upgrade,
+ args=(app_data, distribution, for_py_version, env),
+ )
thread.start()
threads.append(thread)
for thread in threads:
thread.join()
would reformat unit_tests/lib/python3.9/site-packages/virtualenv/seed/wheels/periodic_update.py
Oh no! ๐ฅ ๐ ๐ฅ
496 files would be reformatted, 342 files would be left unchanged.
ERROR: InvocationError for command /Users/blaibonet/software/github/AOccLib/pyperplan/.tox/style/bin/black --check --diff . (exited with code 1)
________________________________________________________________________________________________ summary ________________________________________________________________________________________________
slow: commands succeeded
ERROR: style: commands failed
The patch looks good to me, thanks! I'll take care of the tests.
I fixed the style and uploaded a new version to PyPI.