Looks like h^max actually is faster now, but goal count got a bit slower (not
much but consistently). You could add relative scatter plots to see the details
of that. To do so, copy the file relativescatter.py for example from
experiments/issue582 and then add the following lines to the experiment:
from relativescatter import RelativeScatterPlotReport
exp.add_report(
RelativeScatterPlotReport(
attributes=["total_time"],
filter_config_nick=["gbfs_gc"],
get_category=lambda run1, run2: run1.get("domain"),
),
outfile='issue554_base_v1_total_time_gc.png'
)
exp.add_report(
RelativeScatterPlotReport(
attributes=["total_time"],
filter_config_nick=["astar_hmax"],
get_category=lambda run1, run2: run1.get("domain"),
),
outfile='issue554_base_v1_total_time_hmax.png'
)
|