source: branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/matrix/ITriangleMatrix.java @ 1702

Last change on this file since 1702 was 1702, checked in by rkrimmel, 10 years ago
File size: 413 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
2
3public interface ITriangleMatrix {
4
5        //Increases the size
6        public abstract void increaseSize(int count) throws Exception;
7
8        public abstract float get(int first, int second);
9
10        public abstract void set(int first, int second, float value);
11
12        public abstract void initialize(float value);
13
14        public abstract String toString();
15
16        public abstract int size();
17
18}
Note: See TracBrowser for help on using the repository browser.