Solver constructor

Solver({
  1. List<Equation>? equations,
  2. int iterations = 10,
  3. double tolerance = 1e-7,
})

@todo remove useless constructor

Implementation

Solver({
  List<Equation>? equations,
  this.iterations = 10,
  this.tolerance = 1e-7
}){
  this.equations = equations ?? [];
}