Unlike Jendrik's example, where ff() matches the first positional argument and
cea() the second one, this example should really be an error, as "max" only
takes a single argument.
Do we silently swallow additional arguments? It looks like we do, at least for
max(), but probably across the board. This is a bug different from the wish in
this issue, and it would be great if you could open an issue for it mentioning
the "max(h1, h2)" example. Here is an example of something that the option
parser accepts but shouldn't:
./fast-downward.py ../benchmarks/blocks/probBLOCKS-4-0.pddl --search
"astar(max(ff(), cea()))"
|