summaryrefslogtreecommitdiff
path: root/src/main/Simulator/Graph_12jac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Simulator/Graph_12jac.c')
-rw-r--r--src/main/Simulator/Graph_12jac.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main/Simulator/Graph_12jac.c b/src/main/Simulator/Graph_12jac.c
new file mode 100644
index 0000000..8eaad45
--- /dev/null
+++ b/src/main/Simulator/Graph_12jac.c
@@ -0,0 +1,54 @@
+/* Jacobians */
+#include "Graph_model.h"
+#include "Graph_12jac.h"
+int Graph_initialAnalyticJacobianA(void* inData, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 1;
+}
+int Graph_initialAnalyticJacobianB(void* inData, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 1;
+}
+int Graph_initialAnalyticJacobianC(void* inData, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 1;
+}
+int Graph_initialAnalyticJacobianD(void* inData, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 1;
+}
+
+int Graph_functionJacA_column(void* data, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 0;
+}
+int Graph_functionJacB_column(void* data, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 0;
+}
+int Graph_functionJacC_column(void* data, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 0;
+}
+int Graph_functionJacD_column(void* data, threadData_t *threadData)
+{
+ TRACE_PUSH
+ TRACE_POP
+ return 0;
+}
+
+