Uses of Class
sbrt.kernel.math.HashLinearComb

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

Uses of HashLinearComb in sbrt.kernel.math
 

Methods in sbrt.kernel.math that return HashLinearComb
 HashLinearComb<V> HashLinearComb.add(double constant)
          Adds, in the mathematical sense, the provided constant to this linear combination.
 HashLinearComb<V> HashLinearComb.add(LinearComb<? extends V> expression)
          Adds, in the mathematical sense, the provided linear combination to this linear combination.
 HashLinearComb<V> HashLinearComb.multiply(double constant)
          Multiplies this linear combination by the provided constant.
 HashLinearComb<V> HashLinearComb.plugIn(java.util.Map<?,? extends LinearComb<? extends V>> variableValues)
          Plugs in the provided linear combinations to produce a new linear combination.
 HashLinearComb<V> HashLinearComb.plugIn(java.util.Map<?,java.lang.Double> numbers, java.util.Map<?,? extends LinearComb<? extends V>> linearCombs)
          Plugs in the provided numerical values and linear combinations to produce a new linear combination.
 HashLinearComb<V> HashLinearComb.plugIn(java.lang.Object variable, double value)
          Plugs the provided numerical value into the provided variable to produce a new linear combination.
 HashLinearComb<V> HashLinearComb.plugIn(java.lang.Object variable, LinearComb<? extends V> expr)
          Plugs the provided linear combination into the provided variable to produce a new linear combination.
 HashLinearComb<V> HashLinearComb.plugInNumbers(java.util.Map<?,java.lang.Double> variableValues)
          Plugs in the provided numerical values to produce a new linear combination.
static
<V> HashLinearComb<V>
HashLinearComb.singleTerm(double coefficient, V variable)
          Returns a single-term linear combination with the provided variable and coefficient.
static
<V> HashLinearComb<V>
HashLinearComb.singleTerm(LinearComb.Term<V> term)
          Returns a single-term linear combination with the provided term.
static
<V> HashLinearComb<V>
HashLinearComb.singleTerm(V variable)
          Returns a single-term linear combination with the provided variable.
static
<V> HashLinearComb<V>
HashLinearComb.singleTerm(V variable, double coefficient)
          Returns a single-term linear combination with the provided variable and coefficient.
static
<V> HashLinearComb<V>
HashLinearComb.singleTerm(V variable, double coefficient, double zeroCutoff)
          Returns a single-term linear combination with the provided variable, coefficient, and zero cutoff.
 HashLinearComb<V> HashLinearComb.solveFor(java.lang.Object variable, double rightHandSide)
          Equates this linear combination to the provided constant and solves for the provided variable.