Ignore:
Timestamp:
04/19/13 17:02:50 (11 years ago)
Author:
pharms
Message:
  • improved java doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskComparator.java

    r1146 r1154  
    2424/** 
    2525 * <p> 
    26  * TODO comment 
     26 * this class is a very fast implementation for the {@link SymbolComparator} interface to be 
     27 * applied on task instances. To be efficient, it caches information about the equality of tasks. 
     28 * Only, if it does not know a specific equality yet, it call the task equality rule manager 
     29 * to compare two tasks. Otherwise, it returns the known equality. 
    2730 * </p> 
     31 *  
     32 * TODO improve documentation and remove stop watch stuff. 
    2833 *  
    2934 * @author Patrick Harms 
     
    4550    private TaskEquality minimalNodeEquality; 
    4651 
    47     /** */ 
     52    /** 
     53     * <p> 
     54     * the internally used comparer for tasks. 
     55     * </p>  
     56     */ 
    4857    private Comparer comparer; 
    4958 
    50     /** */ 
     59    /** 
     60     * <p> 
     61     * the internally used comparer for tasks considering only lexical equality. 
     62     * </p>  
     63     */ 
    5164    private Comparer lexicalComparer; 
    5265 
Note: See TracChangeset for help on using the changeset viewer.