/* * */ package de.ugoe.cs.autoquest.tasktrees.alignment.matrix; // TODO: Auto-generated Javadoc /** * The Interface ITriangleMatrix. */ public interface ITriangleMatrix { /** * Gets the. * * @param first the first * @param second the second * @return the float */ public abstract float get(int first, int second); // Increases the size /** * Increase size. * * @param count the count * @throws Exception the exception */ public abstract void increaseSize(int count) throws Exception; /** * Initialize. * * @param value the value */ public abstract void initialize(float value); /** * Sets the. * * @param first the first * @param second the second * @param value the value */ public abstract void set(int first, int second, float value); /** * Size. * * @return the int */ public abstract int size(); /** * To string. * * @return the string */ @Override public abstract String toString(); }