child.addExample(ex);
}
public Double getQ(RState state, RAction action, boolean straight)
{
GroundFactSet set = new GroundFactSet();
for(GroundFact fact : state.getGroundFactState())
{
set.add(fact);
}
set.add(action.getGroundFact());
return child.getQ(set,straight);
}