cosapp.core.numerics.enum

Classes

NonLinearMethods(value[, names, module, ...])

Enumeration of non-linear algorithm available.

class cosapp.core.numerics.enum.NonLinearMethods(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]

Bases: Enum

Enumeration of non-linear algorithm available.

POWELL : Modified Powell method using MINPACK’s hybrd and hybrj routines BROYDEN_GOOD : Broyden’s first Jacobian approximation. This method is also known as “Broyden’s good method”. NR : Simple Newton-Raphson

BROYDEN_GOOD = 'broyden1'
NR = 'cosapp'
POWELL = 'hybr'