Program listing for file numerics/src/FrictionContact/GlobalFrictionContactProblem_as_ConvexQP.h#
Return to documentation for this file
1#ifndef GLOBALFRICTIONCONTACTPROBLEM_AS_CONVEXQP_H
2#define GLOBALFRICTIONCONTACTPROBLEM_AS_CONVEXQP_H
3
4
5
6#include "NumericsFwd.h"
7#include "SiconosConfig.h"
8
9
10struct GlobalFrictionContactProblem_as_ConvexQP {
11
12 ConvexQP *cqp;
13
14 GlobalFrictionContactProblem *gfc3d;
15
16 SolverOptions *options;
17};
18
19#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
20extern "C" {
21#endif
22
23void Projection_ConvexQP_GFC3D_DualCone(void *cqpIn, double *x, double *PX);
24
25#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
26}
27#endif
28
29#endif