Package com.embabel.plan
Interface Action
-
-
Method Summary
Modifier and Type Method Description DoublenetValue(WorldState state)Net value of performing this action in the given world state abstract Function1<WorldState, Double>getCost()Cost of performing this action Must be between 0 and 1 1 is the most expensive imaginable. -
-
Method Detail
-
netValue
Double netValue(WorldState state)
Net value of performing this action in the given world state
-
getCost
abstract Function1<WorldState, Double> getCost()
Cost of performing this action Must be between 0 and 1 1 is the most expensive imaginable.
-
-
-
-