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

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

Trying new approach

File size: 456 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        public abstract ArrayList<ArrayList<NumberSequence>> getMatches();
19
20}
Note: See TracBrowser for help on using the repository browser.