* GOAL-TEST(s), which the agent can apply to a single state
* description to determine if it is a goal state
*/
public OnlineSearchProblem(ActionsFunction actionsFunction,
GoalTest goalTest) {
this(actionsFunction, goalTest, new DefaultStepCostFunction());
}