Skip to content

Commit

Permalink
Remove optimal portfolio.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Sep 6, 2023
1 parent 039862c commit bef2e98
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 88 deletions.
80 changes: 0 additions & 80 deletions driver/portfolios/seq_opt_fdss_2023.py

This file was deleted.

9 changes: 1 addition & 8 deletions driver/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,7 @@ def _get_portfolio_configs(portfolio: Path):
traceback.print_exc()
raise SyntaxError(
f"The portfolio {portfolio} could not be loaded.")
for key, value in attributes.items():
# The optimal FDSS 2023 portfolio defines different configs for different PDDL subsets.
if key.startswith("CONFIGS"):
for _, config in value:
yield config
return [config for _, config in attributes["CONFIGS"]]


def _convert_to_standalone_config(config):
Expand Down Expand Up @@ -120,9 +116,6 @@ def _get_all_portfolio_configs():

@pytest.mark.parametrize("config", _get_all_portfolio_configs())
def test_portfolio_config(config):
if (os.getenv("CI") and sys.platform == "darwin" and
any("operatorcounting" in part or "initial_state_potential" in part for part in config)):
pytest.skip("macOS CI runners don't support LP configs.")
_run_search(config)


Expand Down

0 comments on commit bef2e98

Please sign in to comment.