1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-
-
+
-
-
-
+
-
-
-
-
+
+
+
+
|
#include "mtt_Reduce_Solver.hh"
void
Reduce_Solver::Solve (void)
MTT::Reduce_Solver::Solve (void)
{
// std::cerr << "Error:"
// << " Symbolic solution of equations failed during model build" << std::endl
// << " Try using one of the other algebraic solution methods" << std::endl;
;
}
ColumnVector
Reduce_Solver::solve (const ColumnVector &x,
const ColumnVector &u,
const double &t,
const ColumnVector &par)
MTT::Reduce_Solver::solve (const ColumnVector &x,
const ColumnVector &u,
const double &t,
const ColumnVector &par)
{
return u;
}
|