Differences between revisions 5 and 102 (spanning 97 versions)
Revision 5 as of 2010-08-02 16:21:17
Size: 948
Editor: MalteHelmert
Comment:
Revision 102 as of 2023-10-12 12:21:52
Size: 0
Editor: GabiRoeger
Comment: Info moved to repository (and streamlined)
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Back to HeuristicSpecification.

= LP solver support =

Some configurations of Fast Downward, such as optimal cost partitioning for landmark heuristics, require an Linear Programming (LP) solver and will complain if the planner has not been built with support for such a solver.

Fast Downward uses the [[http://www.coin-or.org/|COIN-OR]] LP Solver ([[http://www.coin-or.org/Clp/|CLP]]) with the [[https://projects.coin-or.org/Osi|Open Solver Interface]].

== Instructions for building Fast Downward with LP support ==

Build Fast Downward with LP support as follows:

{{{#!highlight bash
cd downward/search/lp
./setup # Build the LP solver -- might take a few minutes.
cd ..
make distclean # Remove traces of previous builds.
make USE_LP_CLP=1 # Build "search" (debug mode) with LP support.
make USE_LP_CLP=1 release # Build "release-search" (release mode) with LP support.
}}}