Type alias ProcType

ProcType: "error" | "init" | "last"

ProcType specifies the action to be taken when a computation doesn't converge within the given number of iterations. The following options are available:

  • "error": throws Error;
  • "init": returns the initial rough approximation.
  • "last": returns the last approximation.

Generated using TypeDoc