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

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

Added Constants for the gap and unmatched symbol

File size: 210 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
2
3
4
5public interface SubstitutionMatrix {
6       
7
8        public double getScore(int pos1, int pos2);
9
10        public double getGapPenalty();
11
12        public void generate();
13
14       
15}
Note: See TracBrowser for help on using the repository browser.