blob: b1e86f194425b9b75c36e849ce5d6764e28c3ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* Jacobians */
static const REAL_ATTRIBUTE dummyREAL_ATTRIBUTE = omc_dummyRealAttribute;
/* Jacobian Variables */
#if defined(__cplusplus)
extern "C" {
#endif
#define Graph_INDEX_JAC_A 3
int Graph_functionJacA_column(void* data, threadData_t *threadData);
int Graph_initialAnalyticJacobianA(void* data, threadData_t *threadData);
#if defined(__cplusplus)
}
#endif
/* A */
#if defined(__cplusplus)
extern "C" {
#endif
#define Graph_INDEX_JAC_B 2
int Graph_functionJacB_column(void* data, threadData_t *threadData);
int Graph_initialAnalyticJacobianB(void* data, threadData_t *threadData);
#if defined(__cplusplus)
}
#endif
/* B */
#if defined(__cplusplus)
extern "C" {
#endif
#define Graph_INDEX_JAC_C 1
int Graph_functionJacC_column(void* data, threadData_t *threadData);
int Graph_initialAnalyticJacobianC(void* data, threadData_t *threadData);
#if defined(__cplusplus)
}
#endif
/* C */
#if defined(__cplusplus)
extern "C" {
#endif
#define Graph_INDEX_JAC_D 0
int Graph_functionJacD_column(void* data, threadData_t *threadData);
int Graph_initialAnalyticJacobianD(void* data, threadData_t *threadData);
#if defined(__cplusplus)
}
#endif
/* D */
|