Package org.aksw.faraday_cage.engine
Class ExecutionGraph<T>
- java.lang.Object
-
- org.aksw.faraday_cage.engine.ExecutionGraph<T>
-
public class ExecutionGraph<T> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected int[][]entriesprotected List<ExecutionNode<T>>ops
-
Constructor Summary
Constructors Constructor Description ExecutionGraph(int size)
-
Method Summary
Modifier and Type Method Description voidaddRow(int i, ExecutionNode<T> op, int[] row)ExecutionNode<T>getNode(int i)int[]getRow(int i)intgetSize()StringtoString()
-
-
-
Field Detail
-
ops
protected List<ExecutionNode<T>> ops
-
entries
protected int[][] entries
-
-
Method Detail
-
addRow
public void addRow(int i, ExecutionNode<T> op, int[] row)
-
getSize
public int getSize()
-
getNode
public ExecutionNode<T> getNode(int i)
-
getRow
public int[] getRow(int i)
-
-