source: branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/AlignmentAlgorithm.java @ 1649

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

Adding tests to some classes.

File size: 652 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3import java.util.ArrayList;
4
5import de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix;
6
7public interface AlignmentAlgorithm {
8       
9        /**
10         * Get the alignment score between the two input strings.
11         */
12        public abstract double getAlignmentScore();
13
14        public abstract ArrayList<NumberSequence> getAlignment();
15
16        public abstract void printDPMatrix();
17
18        public abstract void printAlignment();
19
20        public abstract ArrayList<Match> getMatches();
21       
22        public double getMaxScore();
23
24        void align(NumberSequence input1, NumberSequence input2,
25                        SubstitutionMatrix submat, float threshold);
26
27}
Note: See TracBrowser for help on using the repository browser.