sbrt.kernel.math
Interface LinearComb.Term<V>

Type Parameters:
V - the variable type.
All Superinterfaces:
java.lang.Iterable<V>, Polynomial.Term<V>
All Known Implementing Classes:
AbstractLinearComb.Term, HashLinearComb.Term
Enclosing interface:
LinearComb<V>

public static interface LinearComb.Term<V>
extends Polynomial.Term<V>

This interface is used to represent the terms of linear combinations. A term contains a variable and a coefficient.

Author:
This interface was written and documented by Jeremiah Wright while in the Wagner lab.

Method Summary
 V getVariable()
          Returns the variable contained in this term.
 
Methods inherited from interface sbrt.kernel.math.Polynomial.Term
equals, getCoefficient, getVariables, hasAllVariables, hashCode, hasVariable, iterator, power, toString, variables
 

Method Detail

getVariable

V getVariable()
Returns the variable contained in this term.

Returns:
the variable contained in this term.