Ignore:
Timestamp:
09/05/14 20:20:29 (10 years ago)
Author:
rkrimmel
Message:

Added automatically created javadoc, still needs to be commented properly though

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/matrix/DifferenceSubstitutionMatrix.java

    r1733 r1734  
    99import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask; 
    1010 
     11// TODO: Auto-generated Javadoc 
    1112/** 
     13 * The Class DifferenceSubstitutionMatrix. 
     14 * 
    1215 * @author Ralph Krimmel 
    13  * 
    1416 */ 
    1517public class DifferenceSubstitutionMatrix implements SubstitutionMatrix { 
    1618 
     19        /** The input1. */ 
    1720        private final int[] input1; 
     21         
     22        /** The input2. */ 
    1823        private final int[] input2; 
     24         
     25        /** The max value. */ 
    1926        private final int maxValue; 
    2027 
     28        /** 
     29         * Instantiates a new difference substitution matrix. 
     30         * 
     31         * @param input1 the input1 
     32         * @param input2 the input2 
     33         */ 
    2134        public DifferenceSubstitutionMatrix(int[] input1, int[] input2) { 
    2235                this.input1 = input1; 
     
    2538        } 
    2639 
     40        /* (non-Javadoc) 
     41         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#generate(java.util.HashSet) 
     42         */ 
    2743        @Override 
    2844        public void generate(HashSet<ITask> uniqueTasks) { 
    2945        } 
    3046 
     47        /* (non-Javadoc) 
     48         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#getGapPenalty() 
     49         */ 
    3150        @Override 
    3251        public float getGapPenalty() { 
     
    3453        } 
    3554 
     55        /** 
     56         * Gets the max value. 
     57         * 
     58         * @return the max value 
     59         */ 
    3660        private int getMaxValue() { 
    3761                int max = input1[0]; 
     
    6185        } 
    6286 
     87        /* (non-Javadoc) 
     88         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#update(java.util.LinkedList) 
     89         */ 
    6390        @Override 
    6491        public void update(LinkedList<ITask> newlyGeneratedTasks) { 
Note: See TracChangeset for help on using the changeset viewer.