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

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

Added automatically created javadoc, still needs to be commented properly though

File size: 976 bytes
Line 
1/*
2 *
3 */
4package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
5
6// TODO: Auto-generated Javadoc
7/**
8 * The Interface ITriangleMatrix.
9 */
10public interface ITriangleMatrix {
11
12        /**
13         * Gets the.
14         *
15         * @param first the first
16         * @param second the second
17         * @return the float
18         */
19        public abstract float get(int first, int second);
20
21        // Increases the size
22        /**
23         * Increase size.
24         *
25         * @param count the count
26         * @throws Exception the exception
27         */
28        public abstract void increaseSize(int count) throws Exception;
29
30        /**
31         * Initialize.
32         *
33         * @param value the value
34         */
35        public abstract void initialize(float value);
36
37        /**
38         * Sets the.
39         *
40         * @param first the first
41         * @param second the second
42         * @param value the value
43         */
44        public abstract void set(int first, int second, float value);
45
46        /**
47         * Size.
48         *
49         * @return the int
50         */
51        public abstract int size();
52
53        /**
54         * To string.
55         *
56         * @return the string
57         */
58        @Override
59        public abstract String toString();
60
61}
Note: See TracBrowser for help on using the repository browser.