Skip to content

Commit

Permalink
MultiobjectiveLS generic types explained [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo Rodríguez Mier committed Nov 8, 2014
1 parent 27e4747 commit 7f3676e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
* Original paper:
* Martins, E. D. Q. V., & Santos, J. L. E. (1999). <b>"The labeling algorithm for the multiobjective shortest path problem"</b>. <i>Departamento de Matematica, Universidade de Coimbra, Portugal, Tech. Rep. TR-99/005</i>.
*
* @param <S> type of the states used by the algorithm
* @param <A> action type.
* @param <S> state type.
* @param <C> comparable cost used to compare states.
* @param <N> type of the heuristic search node used.
*
* @author Pablo Rodríguez Mier <<a href="mailto:[email protected]">[email protected]</a>>
*/
public class MultiobjectiveLS<A,S,C extends Comparable<C>,N extends HeuristicNode<A,S,C,N>> extends Algorithm<A,S,N> {
Expand Down

0 comments on commit 7f3676e

Please sign in to comment.