Class GreaterThanEquals
- java.lang.Object
- 
- org.apache.sysds.runtime.functionobjects.FunctionObject
- 
- org.apache.sysds.runtime.functionobjects.ValueFunction
- 
- org.apache.sysds.runtime.functionobjects.ValueComparisonFunction
- 
- org.apache.sysds.runtime.functionobjects.GreaterThanEquals
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class GreaterThanEquals extends ValueComparisonFunction - See Also:
- Serialized Form
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancompare(boolean in1, boolean in2)booleancompare(double in1, double in2)booleancompare(long in1, long in2)booleancompare(String in1, String in2)doubleexecute(double in1, double in2)execute() method that returns double is required since current map-reduce runtime can only produce matrices of doubles.static GreaterThanEqualsgetGreaterThanEqualsFnObject()- 
Methods inherited from class org.apache.sysds.runtime.functionobjects.ValueFunctionrequiresCorrection
 
- 
 
- 
- 
- 
Method Detail- 
getGreaterThanEqualsFnObjectpublic static GreaterThanEquals getGreaterThanEqualsFnObject() 
 - 
executepublic double execute(double in1, double in2)execute() method that returns double is required since current map-reduce runtime can only produce matrices of doubles. This method is used on MR side to perform comparisons on matrices like A>=B and A>=2.5- Overrides:
- executein class- FunctionObject
 
 - 
comparepublic boolean compare(double in1, double in2)- Specified by:
- comparein class- ValueComparisonFunction
 
 - 
comparepublic boolean compare(long in1, long in2)- Specified by:
- comparein class- ValueComparisonFunction
 
 - 
comparepublic boolean compare(boolean in1, boolean in2)- Specified by:
- comparein class- ValueComparisonFunction
 
 - 
comparepublic boolean compare(String in1, String in2) - Specified by:
- comparein class- ValueComparisonFunction
 
 
- 
 
-