View Javadoc
1   package com.github.lstephen.ai.search;
2   
3   import java.util.Comparator;
4   
5   /**
6    *
7    * @author lstephen
8    */
9   public interface Heuristic<S> extends Comparator<S> {
10  
11  }