MPSolve 3.2.1
Loading...
Searching...
No Matches
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
19MPS_BEGIN_DECLS
20
22 mps_approximation * root, cplx_t corr);
24 mps_approximation * root, cdpe_t corr);
26 mps_approximation * root, mpc_t corr, long int wp);
27
28MPS_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