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

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

Adding needleman wunsch

File size: 387 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        public abstract void printDPMatrix();
15
16        public abstract void printAlignment();
17
18}
Note: See TracBrowser for help on using the repository browser.