NonLinear constructor

const NonLinear({
  1. required String function,
  2. required double tolerance,
  3. required int maxSteps,
})

Creates a new NonLinear object.

Implementation

const NonLinear({
  required this.function,
  required this.tolerance,
  required this.maxSteps,
});