Package ptolemy.math.test
Class TestFloatBinaryOperation
- java.lang.Object
 - 
- ptolemy.math.test.TestFloatBinaryOperation
 
 
- 
- All Implemented Interfaces:
 FloatBinaryOperation
public class TestFloatBinaryOperation extends java.lang.Object implements FloatBinaryOperation
A operation taking two operands of type float, and producing a value of type float. This interface attempts to mimic a first-class function of two variables.- Since:
 - Ptolemy II 2.0
 - Version:
 - $Id$
 - Author:
 - Christopher Hylands
 - Pt.AcceptedRating:
 - Red (ctsay)
 - Pt.ProposedRating:
 - Red (ctsay)
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TestFloatBinaryOperation() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatoperate(float leftOperand, float rightOperand)Operate on the operands, returning a value of the same type. 
 - 
 
- 
- 
Method Detail
- 
operate
public float operate(float leftOperand, float rightOperand)Operate on the operands, returning a value of the same type. Note that the operation need not be commutative.- Specified by:
 operatein interfaceFloatBinaryOperation- Parameters:
 leftOperand- The left operand.rightOperand- The right operand.- Returns:
 - The results of the operation
 
 
 - 
 
 -