fast-downward-0.1.0.0: Solve classical planning problems (STRIPS/SAS+) using Haskell & Fast Downward.

Safe HaskellSafe
LanguageHaskell2010

FastDownward.Exec

Contents

Synopsis

Documentation

Search Engines

Search Engine Options

data CostType Source #

Constructors

Normal

All actions are accounted for with their real cost.

One

All actions are accounted for as unit cost.

PlusOne

All actions are accounted for as their real cost + 1 (except if all actions have original cost 1, in which case cost 1 is used). This is the behaviour known for the heuristics of the LAMA planner. This is intended to be used by the heuristics, not search engines, but is supported for both.

Instances
Show CostType Source # 
Instance details

Defined in FastDownward.Exec

Abstract Tasks

Constraint Generators

Evaluators

data Verbosity Source #

Constructors

Silent 
Basic 
Verbose 
Instances
Show Verbosity Source # 
Instance details

Defined in FastDownward.Exec

Evaluator Configuration

data LPSolver Source #

Constructors

CLP 
CPLEX 
GUROBI 
Instances
Show LPSolver Source # 
Instance details

Defined in FastDownward.Exec

Label Reduction

Landmark Factory

Merge Scoring Function

Merge Selector

Merge Strategy

Merge Tree

Open List

Pattern Collection Generators

Pruning Method

Shrink Strategy

data HighLow Source #

Constructors

High 
Low 
Instances
Show HighLow Source # 
Instance details

Defined in FastDownward.Exec

Subtask Generators