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

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

Used Eclipse code cleanup

File size: 425 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
2
3public interface ITriangleMatrix {
4
5        public abstract float get(int first, int second);
6
7        // Increases the size
8        public abstract void increaseSize(int count) throws Exception;
9
10        public abstract void initialize(float value);
11
12        public abstract void set(int first, int second, float value);
13
14        public abstract int size();
15
16        @Override
17        public abstract String toString();
18
19}
Note: See TracBrowser for help on using the repository browser.