Program listing for file numerics/src/MLCP/mlcp_enum_tool.h#

 1#include "MixedLinearComplementarityProblem.h"
 2
 3#ifndef MLCP_ENUM_TOOL_H
 4#define MLCP_ENUM_TOOL_H
 5
 6void mlcp_enum_build_M(int * zw, double * M, double * Mref, int n, int m, int NbLines);
 7void mlcp_enum_build_M_Block(int * zw, double * M, double * Mref, int n, int m, int NbLines, int *indexInBlock);
 8void mlcp_enum_fill_solution(double * z1, double * z2, double * w1, double * w2, int n, int m, int NbLines, int* zw, double * Q);
 9void mlcp_enum_fill_solution_Block(double * z, double * w, int n, int m, int NbLines, int* zw, double * Q, int *indexInBlock);
10
11
12void mlcp_enum_display_solution(double * z1, double * z2, double * w1, double * w2, int n, int m, int NbLines);
13void mlcp_enum_display_solution_Block(double * z, double * w, int n, int m, int Nblines, int *indexInBlock);
14void mlcp_enum_build_indexInBlock(MixedLinearComplementarityProblem* problem, int *indexInBlock);
15
16
17
18#endif