Ignore:
Timestamp:
05/29/14 22:43:07 (10 years ago)
Author:
rkrimmel
Message:

new Smith waterman variant

File:
1 edited

Legend:

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

    r1555 r1558  
    3333                        for(int j = 0; j< size; j++) { 
    3434                                if(i<j) { 
    35                                         result = result + (this.get(i,j) + " "); 
     35                                        result = result + String.format("%+4.1f",this.get(i,j)); 
    3636                                } 
    3737                                else { 
    38                                         result = result + ("    "); 
     38                                        result = result + ("      "); 
    3939                                } 
    4040                        } 
Note: See TracChangeset for help on using the changeset viewer.