> If final_config is given but not final_config_builder,
> run it after the first solution has been found, to
> mirror the behaviour of portfolios with final_config_builder.
> Previously, all remaining configs were run before the
> last_config was started.
This change significantly reduces the plan quality for FDSS-1 (the only portfolio that uses the final_config parameter):
Switching to last_config after a solution has been found produces worse plans. IPC score with final_config after first solution:
1884.20, IPC score with final_config only after all configs have been run: 1963.72 (suite has 2252 problems, the score is calculated
from the <=4 plan costs found by FDSS-{1,2} on the default and issue branch).
Two solutions come to mind:
- Restore the old behaviour and run last_config only after all configs have run.
- Remove final_config from FDSS-1 (and possibly from portfolio.py altogether).
I vote for the first solution although it is inconsistent with the behaviour in the case last_config_builder is given.
In case we choose solution 1, we have to decide if we want to start final_config directly after the last regular config or if we want
to run the set of successful configs again first. These might perform better with lower g_bounds.
|