MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
invsolwrap.h
Go to the documentation of this file.
1 /*
2  * invsolwrap.h
3  *
4  * Created on: 23/giu/2016
5  * Author: Simone Conso
6  */
7 
8 #ifndef INVSOLWRAP_H_
9 #define INVSOLWRAP_H_
10 
11 extern void *
12 mb_sol_create(const char *sIn, const char *sOut);
13 
14 extern void *
15 mb_sol_create_inv(const char *sIn, const char *sOut);
16 
17 extern int
18 mb_sol_prepare(void *p);
19 
20 extern int
21 mb_sol_start(void *p);
22 
23 extern int
24 mb_sol_advance(void *p);
25 
26 extern int
27 mb_sol_destroy(void *p);
28 
29 extern int
30 mb_sol_setbufin(void *p, unsigned uLabel, int iSize, double *pdBuf);
31 
32 extern int
33 mb_sol_setbufout(void *p, unsigned uLabel, int iSize, double *pdBuf);
34 
35 #endif /* INVSOLWRAP_H_ */
int mb_sol_setbufin(void *p, unsigned uLabel, int iSize, double *pdBuf)
int mb_sol_prepare(void *p)
Definition: invsolwrap.cc:44
int mb_sol_advance(void *p)
Definition: invsolwrap.cc:66
int mb_sol_destroy(void *p)
Definition: invsolwrap.cc:77
int mb_sol_setbufout(void *p, unsigned uLabel, int iSize, double *pdBuf)
void * mb_sol_create_inv(const char *sIn, const char *sOut)
Definition: invsolwrap.cc:36
void * mb_sol_create(const char *sIn, const char *sOut)
Definition: invsolwrap.cc:28
int mb_sol_start(void *p)
Definition: invsolwrap.cc:55