CYCLUS
use_matrix_lib.h
Go to the documentation of this file.
1 // UseMatLib.h contains all of the declarations needed to use a specific
2 // Matrix and/or Vector library in place of the default librares for the
3 // decay calculations performed on a Material object.
4 #ifndef CYCLUS_SRC_USE_MATRIX_LIB_H_
5 #define CYCLUS_SRC_USE_MATRIX_LIB_H_
6 
7 // To change the matrix library used:
8 //
9 // #include "<Matrix Library>"
10 #include "l_matrix.h"
11 
12 namespace cyclus {
13 
14 // To change the matrix type:
15 //
16 // typedef <Matrix Type> Matrix;
17 typedef LMatrix Matrix;
18 
19 // To change the vector type:
20 //
21 // typedef <Vector Type> Vector;
22 typedef LMatrix Vector;
23 
24 } // namespace cyclus
25 
26 #endif // CYCLUS_SRC_USE_MATRIX_LIB_H_
LMatrix Vector
taken directly from OsiSolverInterface.cpp on 2/17/14 from https://projects.coin-or.org/Osi/browser/trunk.
Definition: agent.cc:14
LMatrix Matrix