Class WeightedPair
- java.lang.Object
-
- org.apache.sysds.runtime.matrix.data.MatrixValue
-
- org.apache.sysds.runtime.matrix.data.MatrixCell
-
- org.apache.sysds.runtime.matrix.data.WeightedCell
-
- org.apache.sysds.runtime.matrix.data.WeightedPair
-
- All Implemented Interfaces:
Serializable
,Comparable
,org.apache.hadoop.io.Writable
,org.apache.hadoop.io.WritableComparable
public class WeightedPair extends WeightedCell
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.sysds.runtime.matrix.data.MatrixValue
MatrixValue.CellIndex
-
-
Constructor Summary
Constructors Constructor Description WeightedPair()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Object o)
void
copy(MatrixValue that)
Copy that MatrixValue into this MatrixValue.boolean
equals(Object o)
double
getOtherValue()
int
hashCode()
void
readFields(DataInput in)
void
setOtherValue(double ov)
String
toString()
void
write(DataOutput out)
-
Methods inherited from class org.apache.sysds.runtime.matrix.data.WeightedCell
aggregateUnaryOperations, denseScalarOperationsInPlace, getValue, getWeight, reorgOperations, scalarOperations, setWeight, sparseScalarOperationsInPlace, sparseUnaryOperationsInPlace, unaryOperations
-
Methods inherited from class org.apache.sysds.runtime.matrix.data.MatrixCell
append, binaryOperations, binaryOperationsInPlace, compareTo, copy, ctableOperations, ctableOperations, ctableOperations, ctableOperations, ctableOperations, get, getNonZeros, getNumColumns, getNumRows, incrementalAggregate, incrementalAggregate, isEmpty, isInSparseFormat, replaceOperations, reset, reset, reset, reset, reset, set, setValue, slice, zeroOutOperations
-
Methods inherited from class org.apache.sysds.runtime.matrix.data.MatrixValue
aggregateUnaryOperations
-
-
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classWeightedCell
-
readFields
public void readFields(DataInput in) throws IOException
- Specified by:
readFields
in interfaceorg.apache.hadoop.io.Writable
- Overrides:
readFields
in classWeightedCell
- Throws:
IOException
-
write
public void write(DataOutput out) throws IOException
- Specified by:
write
in interfaceorg.apache.hadoop.io.Writable
- Overrides:
write
in classWeightedCell
- Throws:
IOException
-
copy
public void copy(MatrixValue that)
Description copied from class:MatrixValue
Copy that MatrixValue into this MatrixValue. If the MatrixValue is a MatrixBlock evaluate the sparsity of the original matrix, and copy into either a sparse or a dense matrix.- Overrides:
copy
in classWeightedCell
- Parameters:
that
- object to copy the values into.
-
getOtherValue
public double getOtherValue()
-
setOtherValue
public void setOtherValue(double ov)
-
compareTo
public int compareTo(Object o)
- Specified by:
compareTo
in interfaceComparable
- Overrides:
compareTo
in classWeightedCell
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classWeightedCell
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classWeightedCell
-
-