Class Xor
- java.lang.Object
-
- org.apache.sysds.runtime.functionobjects.FunctionObject
-
- org.apache.sysds.runtime.functionobjects.ValueFunction
-
- org.apache.sysds.runtime.functionobjects.Xor
-
- All Implemented Interfaces:
Serializable
public class Xor extends ValueFunction
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
execute(boolean in1, boolean in2)
double
execute(double in1, double in2)
static Xor
getXorFnObject()
boolean
isBinary()
-
Methods inherited from class org.apache.sysds.runtime.functionobjects.ValueFunction
requiresCorrection, toString
-
-
-
-
Method Detail
-
getXorFnObject
public static Xor getXorFnObject()
-
execute
public boolean execute(boolean in1, boolean in2)
- Overrides:
execute
in classFunctionObject
-
execute
public double execute(double in1, double in2)
- Overrides:
execute
in classFunctionObject
-
isBinary
public boolean isBinary()
- Overrides:
isBinary
in classValueFunction
-
-