Differences between revisions 7 and 17 (spanning 10 versions)
Revision 7 as of 2016-07-01 08:18:34
Size: 1832
Editor: JendrikSeipp
Comment:
Revision 17 as of 2023-07-28 09:48:15
Size: 845
Editor: MalteHelmert
Comment: search engine => search algorithm
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
== Setting the "cost type" for landmark heuristics == == Using "preferred operators" with landmark heuristics ==
Line 9: Line 9:
For mostly historical reasons, specifying the cost type (see [[Doc/Heuristic]]) for landmark heuristics is currently complicated. Here's the complete set of rules: Unlike all other (current) heuristics, the landmark heuristics ({{{landmark_sum}}} and {{{landmark_cost_partitioning}}}, see [[Doc/Evaluator#Landmark_sum_heuristic]] and [[Doc/Evaluator#Landmark_cost_partitioning_heuristic]]) require a special setting {{{pref=true}}} to enable preferred operator support. Hence, to use preferred operators with these heuristics, '''two''' things must be done at the moment:
Line 11: Line 11:
=== If you use the LAMA-FF synergy ===

There are two relevant options:

 1. {{{lm_cost_type}}} of the landmark generation method (currently only used by {{{lm_rhw}}})
 2. {{{cost_type}}} of the synergy declaration ({{{lm_ff_syn}}})

The cost type of the synergy's landmark heuristic is determined by option 1. when using {{{admissible=false}}} and by option 2. when using {{{admissible=true}}}.

The cost type of the synergy's FF heuristic is determined by option 2.

=== If you do not use the LAMA-FF synergy ===

There are two relevant options:

 1. {{{lm_cost_type}}} of the landmark generation method (currently only used by {{{lm_rhw}}})
 2. {{{cost_type}}} of the landmark heuristic declaration ({{{lmcount}}})

The cost type of the landmark heuristic is determined by option 1. when using {{{admissible=false}}} and by option 2. when using {{{admissible=true}}}.

Option 2 is ignored in this case.

== Using preferred operators with the lmcount heuristic ==

Unlike all other (current) heuristics, the {{{lmcount}}} heuristic requires a special setting {{{pref=true}}} to enable preferred operator support. Hence, to use preferred operators with that heuristic, '''two''' things must be done at the moment:

 1. Set {{{pref=true}}} in the [[Doc/Heuristic| heuristic specification]].
 2. Include the heuristic in the list of heuristics in the {{{preferred}}} specification of the [[Doc/SearchEngine|search engine]].
 1. Set {{{pref=true}}} in the [[Doc/Evaluator| heuristic specification]].
 2. Include the heuristic in the list of heuristics in the {{{preferred}}} specification of the [[Doc/SearchAlgorithm|search algorithm]].

Back to the HomePage.

Caveats for the options

Here, we document some aspects of the command-line syntax that may be unintuitive or complicated.

Using "preferred operators" with landmark heuristics

Unlike all other (current) heuristics, the landmark heuristics (landmark_sum and landmark_cost_partitioning, see Doc/Evaluator#Landmark_sum_heuristic and Doc/Evaluator#Landmark_cost_partitioning_heuristic) require a special setting pref=true to enable preferred operator support. Hence, to use preferred operators with these heuristics, two things must be done at the moment:

  1. Set pref=true in the heuristic specification.

  2. Include the heuristic in the list of heuristics in the preferred specification of the search algorithm.