withReal static method

Variable<double> withReal(
  1. double value
)

Creates a variable that holds the specified floating point value.

Implementation

static Variable<double> withReal(double value) {
  return Variable(value);
}