Ignore:
Timestamp:
07/09/14 12:13:13 (10 years ago)
Author:
rkrimmel
Message:

Refactoring and code cleanup

File:
1 moved

Legend:

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

    r1587 r1589  
    11package de.ugoe.cs.autoquest.tasktrees.alignment.matrix; 
     2 
     3 
    24 
    35 
    46import de.ugoe.cs.autoquest.tasktrees.alignment.algorithms.AlignmentAlgorithm; 
    57 
    6 public class BinaryAlignmentStorage { 
     8 
     9public class PairwiseAlignmentStorage { 
    710 
    811    private AlignmentAlgorithm[][] alignments; 
    9     UPGMAMatrix sequenceDistances; 
     12    private UPGMAMatrix sequenceDistances; 
    1013    
    11     public BinaryAlignmentStorage(int sizex, int sizey) { 
     14    public PairwiseAlignmentStorage(int sizex, int sizey) { 
    1215        alignments = new AlignmentAlgorithm[sizex+1][sizey+1]; 
    1316        sequenceDistances = new UPGMAMatrix(Math.max(sizex,sizey)); 
    1417        sequenceDistances.initialize(Double.POSITIVE_INFINITY); 
    1518    } 
     19  
     20     
    1621     
    1722    public void set(int i,int j,AlignmentAlgorithm sw) { 
Note: See TracChangeset for help on using the changeset viewer.