source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/AlignmentAlgorithm.java @ 1586

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

Adding simple smith waterman and changing alignment algorithm creation to factory pattern

File size: 306 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3import java.util.ArrayList;
4
5public interface AlignmentAlgorithm {
6
7        /**
8         * Get the alignment score between the two input strings.
9         */
10        public abstract double getAlignmentScore();
11
12        public abstract ArrayList<NumberSequence> getAlignment();
13
14}
Note: See TracBrowser for help on using the repository browser.