Program listing for file numerics/src/FrictionContact/fc3d_GlockerFischerBurmeister_functions.h#
Return to documentation for this file
1#ifndef FRICTIONCONTACT3D_GlockerFischerBurmeister_functions_H
2#define FRICTIONCONTACT3D_GlockerFischerBurmeister_functions_H
3
4
5#include "SiconosConfig.h"
6
7#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
8extern "C" {
9#endif
10typedef void (*UpdateSolverPtr)(int, double*);
11
12void F_GlockerFischerBurmeister(int sizeF, double* reaction, double* FVector, int up2Date);
13
14void jacobianF_GlockerFischerBurmeister(int sizeF, double* reaction, double* jacobianFMatrix,
15 int up2Date);
16
17#if defined(__cplusplus) && !defined(BUILD_AS_CPP)
18}
19#endif
20
21#endif