Class MatrixRow
- java.lang.Object
-
- de.tilman_neumann.jml.factor.base.matrixSolver.MatrixRow
-
public class MatrixRow extends Object
A congruence used by the matrix solver where the elements have been mapped to integer indices.- Author:
- Tilman Neumann
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addXor(MatrixRow other)
Combine this and other in Z_2, modifying this.boolean
equals(Object o)
int
getBiggestColumnIndex()
ArrayList<Integer>
getRowIndexHistoryAsList()
int
hashCode()
boolean
isNullVector()
String
toString()
-
-
-
Method Detail
-
getBiggestColumnIndex
public int getBiggestColumnIndex()
-
addXor
public void addXor(MatrixRow other)
Combine this and other in Z_2, modifying this. The operation in Z_2 is equivalent to "xor".- Parameters:
other
-
-
isNullVector
public boolean isNullVector()
- Returns:
- true if there are no odd exponent factor indices
-
-