Program listing for file numerics/src/tools/quartic.h

Program listing for file numerics/src/tools/quartic.h#

 1#ifndef QUARTIC_H
 2#define QUARTIC_H
 3
 4
 5
 6
 7
 8#include "SiconosConfig.h"
 9
10#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
11extern "C"
12{
13#endif
14
15  int QUADROOTS(double  p[5], double r[3][5]);
16  int CUBICROOTS(double p[5], double r[3][5]);
17  int BIQUADROOTS(double p[5], double r[3][5]);
18
19
20#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
21}
22#endif
23#endif