1 #ifndef MLCP_DIRECT_PATH_ENUM_H
2 #define MLCP_DIRECT_PATH_ENUM_H
3 
4 
5 #include "NumericsFwd.h"  // for MixedLinearComplementarityProblem, SolverOp...
6 int mlcp_direct_path_enum_getNbIWork(MixedLinearComplementarityProblem* problem, SolverOptions* options);
7 int mlcp_direct_path_enum_getNbDWork(MixedLinearComplementarityProblem* problem, SolverOptions* options);
8 
9 void mlcp_direct_path_enum(MixedLinearComplementarityProblem* problem, double *z, double *w, int *info, SolverOptions* options);
10 void mlcp_direct_path_enum_reset(void);
11 void mlcp_direct_path_enum_init(MixedLinearComplementarityProblem* problem, SolverOptions* options);
12 
13 #endif //MLCP_DIRECT_PATH_ENUM_H
14