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

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

Added Constants for the gap and unmatched symbol

File size: 210 bytes
RevLine 
[1572]1package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
[1314]2
[1324]3
4
[1314]5public interface SubstitutionMatrix {
6       
7
[1578]8        public double getScore(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.