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

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

 1#ifndef PATHSEARCH_H
 2#define PATHSEARCH_H
 3
 4#include "NMS.h"
 5#include "Newton_methods.h"
 6#include "NumericsFwd.h"
 7#include "SiconosConfig.h"
 8
 9
10typedef struct
11{
12  NMS_data* data_NMS;
13  functions_LSA* lsa_functions;
14} pathsearch_data;
15
16#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
17extern "C"
18{
19#endif
20
21
22  void pathsearch_set_default(SolverOptions* options);
23
24#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
25}
26#endif
27
28#endif