package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms; import java.util.ArrayList; public interface AlignmentAlgorithm { /** * Get the alignment score between the two input strings. */ public abstract double getAlignmentScore(); public abstract ArrayList getAlignment(); public abstract void printDPMatrix(); public abstract void printAlignment(); public abstract ArrayList> getMatches(); }