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

 1#ifndef MIN_MERIT
 2#define MIN_MERIT
 3
 4
 5#include "NumericsFwd.h"
 6#include "SiconosConfig.h"
 7
 8#ifdef __cplusplus
 9#undef restrict
10#define restrict __restrict
11#endif
12
13#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
14extern "C"
15{
16#endif
17
18
19  void F_min(int n1, int n2, double* restrict z, double* restrict F, double* restrict Fmin);
20
21
22  void Jac_F_min(int n1, int n2, double* restrict z, double* restrict F, NumericsMatrix* nabla_F, NumericsMatrix* H);
23
24#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
25}
26#endif
27
28#endif