Skip to content

Commit

Permalink
close #115 : ProblemBuilder[...].useTransitionFunction() now accepts …
Browse files Browse the repository at this point in the history
…TransitionFunction<Void, S> when a problem without actions is being created
  • Loading branch information
gonzalezsieira committed Feb 25, 2015
1 parent 3c2ebb6 commit d5ab21d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private WithoutAction(){}
*
* @param transitionFunction transition function to be used.
*/
public Uninformed<Void> useTransitionFunction(StateTransitionFunction<S> transitionFunction){
public Uninformed<Void> useTransitionFunction(TransitionFunction<Void, S> transitionFunction){
return new Uninformed<Void>(transitionFunction);
}
}
Expand Down

0 comments on commit d5ab21d

Please sign in to comment.