Go to the documentation of this file.
21 #if defined(scopmath_newton_ix) || defined(scopmath_newton_s) || defined(scopmath_newton_x)
22 #error "naming clash on newton_thread.hpp-internal macros"
24 #define scopmath_newton_ix(arg) ((arg) *_STRIDE)
25 #define scopmath_newton_s(arg) _p[s[arg] * _STRIDE]
26 #define scopmath_newton_x(arg) _p[(arg) *_STRIDE]
57 for (
int j = 0; j < n; j++) {
61 for (
int i = 0;
i < n;
i++)
65 for (
int i = 0;
i < n;
i++) {
81 #undef scopmath_newton_x
100 template <
typename F>
107 int count = 0, error = 0;
108 double change = 1.0, max_dev, temp;
116 int* perm = ns->
perm;
129 for (
int i = 0;
i < n;
i++)
146 for (
int i = 0;
i < n;
i++) {
154 for (
int i = 0;
i < n;
i++) {
165 for (
int i = 0;
i < n;
i++) {
184 #undef scopmath_newton_ix
185 #undef scopmath_newton_s
void nrn_scopmath_solve_thread(int n, double **a, double *b, int *perm, double *p, int *y, _threadargsproto_)
Performs forward substitution algorithm to transform the constant vector in the linear simultaneous e...
void nrn_destroy_newtonspace(NewtonSpace *ns)
int nrn_crout_thread(NewtonSpace *ns, int n, double **a, int *perm, _threadargsproto_)
Performs an LU triangular factorization of a real matrix by the Crout algorithm using partial pivotin...
void nrn_buildjacobian_thread(NewtonSpace *ns, int n, int *index, F const &func, double *value, double **jacobian, _threadargsproto_)
Calculate the Jacobian matrix using finite central differences.
#define scopmath_newton_ix(arg)
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
#define scopmath_newton_s(arg)
int nrn_newton_thread(NewtonSpace *ns, int n, int *s, F func, double *value, _threadargsproto_)
Iteratively solves simultaneous nonlinear equations by Newton's method, using a Jacobian matrix compu...
#define _threadargsproto_
#define scopmath_newton_x(arg)
NewtonSpace * nrn_cons_newtonspace(int n, int n_instance)