15 #define FE_SOLVE_PORT FE_DL_EXPORT 17 #define FE_SOLVE_PORT FE_DL_IMPORT 23 typedef double t_solve_real;
24 typedef Vector<2, t_solve_real> t_solve_v2;
25 typedef Vector<3, t_solve_real> t_solve_v3;
26 typedef Matrix<3,3,t_solve_real> t_solve_matrix;
27 typedef Matrix<2,2,t_solve_real> t_solve_m2;
28 typedef Vector<2, t_solve_real> t_solve_v2;
29 const t_solve_v3 solveZeroVector(0.0,0.0,0.0);
36 void copy(t_solve_v3 &a_solve_v3,
const SpatialVector &a_SpatialVector)
38 a_solve_v3[0] = a_SpatialVector[0];
39 a_solve_v3[1] = a_SpatialVector[1];
40 a_solve_v3[2] = a_SpatialVector[2];
kernel
Definition: namespace.dox:3
Interface into a dynamic library to access its factories.
Definition: Library.h:60