solve abstract method

({double convergence, double efficiency, List<double> guesses}) solve()

Generates the succession generated by the root-finding algorithm. Returns a Record object whose members are:

  • a guesses named field, which contains the list of values generated by the algorithm on each step;

  • a convergence named field, whose value represents the convergence rate for the generated succession (computed using convergence).

  • a efficiency named field, whose value represents the efficiency of the algorithm (computed using efficiency).

Implementation

({List<double> guesses, double convergence, double efficiency}) solve();