The pattern database heuristic asserts that its pattern is sorted. I don't know
if this assumption is used somewhere currently. However,
PatternGenerationEdelkamp creates ZeroOnePDBsHeuristics with pattern collections
of unsorted patterns, e.g. in airport/p16.
I had a look at the code and it looks like patterns are sorted up until the call
to remove_irrelevant_variables. This method uses a hash set to filter some
variables from the pattern and iterating over this set returns the variables
without order.
We could either keep the variables sorted here or change the assertion if
unsorted patterns are acceptable.
|