blob: 7c7489a60eaf9c4cc8f9e645308c4cc75d1ae8f5 (
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
49
50
51
52
53
54
55
56
57
58
59
|
/* Synchronous systems */
#include "Graph_model.h"
#if defined(__cplusplus)
extern "C" {
#endif
/* Initializes the clocks of model. */
void Graph_function_initSynchronous(DATA *data, threadData_t *threadData)
{
TRACE_PUSH
long i=0, j=0;
TRACE_POP
}
/* Update the base clock. */
void Graph_function_updateSynchronous(DATA *data, threadData_t *threadData, long i)
{
TRACE_PUSH
modelica_boolean ret;
switch (i) {
default:
throwStreamPrint(NULL, "Internal Error: unknown base partition %ld", i);
break;
}
TRACE_POP
}
/*Clocked systems equations */
int Graph_function_equationsSynchronous(DATA *data, threadData_t *threadData, long i)
{
TRACE_PUSH
int ret;
switch (i) {
default:
throwStreamPrint(NULL, "Internal Error: unknown sub partition %ld", i);
ret = 1;
break;
}
TRACE_POP
return ret;
}
/* pre(%v%) = %v% */
void Graph_function_savePreSynchronous(DATA *data, threadData_t *threadData)
{
TRACE_PUSH
TRACE_POP
}
#if defined(__cplusplus)
}
#endif
|