Ignore:
Timestamp:
06/18/14 08:59:41 (10 years ago)
Author:
rkrimmel
Message:

Building distance matrix between sequences

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/MatrixEntry.java

    r1559 r1568  
    22 
    33public class MatrixEntry { 
    4         private float score; 
     4        private double score; 
    55        private MatrixEntry previous; 
    66        private int xvalue; 
     
    1515        } 
    1616 
    17         public float getScore() { 
     17        public double getScore() { 
    1818                return score; 
    1919        } 
    20         public void setScore(float score) { 
     20        public void setScore(double score) { 
    2121                this.score = score; 
    2222        } 
Note: See TracChangeset for help on using the changeset viewer.