gov.sns.tools.solver
Class Variable

java.lang.Object
  |
  +--gov.sns.tools.solver.Variable

Deprecated. The optimization and optimizer packages have been replaced by the solver package.

public class Variable
extends java.lang.Object

Variable class for holding the parts of a variable.


Field Summary
protected  double lowerLimit
          Deprecated.  
protected  java.lang.String name
          Deprecated.  
protected  double startValue
          Deprecated.  
protected  double upperLimit
          Deprecated.  
 
Constructor Summary
Variable(java.lang.String atitle, double aStartValue, double aLowerLimit, double anUpperLimit)
          Deprecated. Creates a new instance of Variable
 
Method Summary
 double lowerLimit()
          Deprecated. Get the lower limit.
 java.lang.String name()
          Deprecated. Get the name.
 double startValue()
          Deprecated. Get the starting value (i.e.
 double upperLimit()
          Deprecated. Get the upper limit.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected java.lang.String name
Deprecated. 

startValue

protected double startValue
Deprecated. 

lowerLimit

protected double lowerLimit
Deprecated. 

upperLimit

protected double upperLimit
Deprecated. 
Constructor Detail

Variable

public Variable(java.lang.String atitle,
                double aStartValue,
                double aLowerLimit,
                double anUpperLimit)
Deprecated. 
Creates a new instance of Variable

Method Detail

name

public java.lang.String name()
Deprecated. 
Get the name.

Returns:
the name.

startValue

public double startValue()
Deprecated. 
Get the starting value (i.e. initial guess).

Returns:
the starting value.

lowerLimit

public double lowerLimit()
Deprecated. 
Get the lower limit.

Returns:
the lower limit.

upperLimit

public double upperLimit()
Deprecated. 
Get the upper limit.

Returns:
the upper limit.