MPSolve  3.2.1
newton.h
Go to the documentation of this file.
1 /*
2  * This file is part of MPSolve 3.2.1
3  *
4  * Copyright (C) 2001-2020, Dipartimento di Matematica "L. Tonelli", Pisa.
5  * License: http://www.gnu.org/licenses/gpl.html GPL version 3 or higher
6  *
7  * Authors:
8  * Leonardo Robol <leonardo.robol@unipi.it>
9  */
10 
16 #ifndef MPS_NEWTON_H_
17 #define MPS_NEWTON_H_
18 
19 MPS_BEGIN_DECLS
20 
21 void mps_fnewton (mps_context * st, mps_polynomial * p,
22  mps_approximation * root, cplx_t corr);
23 void mps_dnewton (mps_context * st, mps_polynomial * p,
24  mps_approximation * root, cdpe_t corr);
25 void mps_mnewton (mps_context * st, mps_polynomial * p,
26  mps_approximation * root, mpc_t corr, long int wp);
27 
28 MPS_END_DECLS
29 
30 #endif /* MPS_NEWTON_H_ */
MPS_BEGIN_DECLS void mps_fnewton(mps_context *st, mps_polynomial *p, mps_approximation *root, cplx_t corr)
Compute the Newton correction, i.e. and the value given by:
Definition: newton.c:36
void mps_mnewton(mps_context *st, mps_polynomial *p, mps_approximation *root, mpc_t corr, long int wp)
Compute the Newton correction, i.e. and the value given by:
Definition: newton.c:273
void mps_dnewton(mps_context *st, mps_polynomial *p, mps_approximation *root, cdpe_t corr)
Compute the Newton correction, i.e. and the value given by:
Definition: newton.c:156
Definition: approximation.h:24
this struct holds the state of the mps computation
Definition: context.h:55
Struct that represents an abstract polynomial. All the other real polynomial implementations (such as...
Definition: polynomial.h:111