source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/substitution/SubstitutionMatrix.java @ 1570

Last change on this file since 1570 was 1570, checked in by rkrimmel, 10 years ago

Adding FitchMargaliash? Class

File size: 219 bytes
RevLine 
[1553]1package de.ugoe.cs.autoquest.tasktrees.alignment.substitution;
[1314]2
[1324]3
4
[1314]5public interface SubstitutionMatrix {
6       
7
[1568]8        public double getDistance(int pos1, int pos2);
[1314]9
[1568]10        public double getGapPenalty();
[1553]11
[1554]12        public void generate();
13
[1314]14       
15}
Note: See TracBrowser for help on using the repository browser.