Uses of Interface
sbrt.kernel.math.Polynomial

Packages that use Polynomial
sbrt.kernel.math Provides classes and interfaces for creating objects relevant to mathematics. 
 

Uses of Polynomial in sbrt.kernel.math
 

Subinterfaces of Polynomial in sbrt.kernel.math
 interface LinearComb<V>
          This interface is used to represent linear combinations.
 interface QuadraticExpr<V>
          This interface is used to represent quadratic expressions.
 

Classes in sbrt.kernel.math that implement Polynomial
 class AbstractLinearComb<V>
          This abstract class is a skeleton implementation of LinearComb.
 class AbstractPolynomial<V>
          This abstract class is a skeleton implementation of Polynomial.
 class HashLinearComb<V>
          This class is a concrete implemenation of LinearComb.
 

Methods in sbrt.kernel.math that return Polynomial
 Polynomial<V> Polynomial.plugInNumbers(java.util.Map<?,java.lang.Double> variableValues)
          Plugs in the provided numerical values to produce a new polynomial.