Ravelin
LinAlgf.h
1 /****************************************************************************
2  * Copyright 2013 Evan Drumwright
3  * This library is distributed under the terms of the Apache V2.0
4  * License (obtainable from http://www.apache.org/licenses/LICENSE-2.0).
5  ****************************************************************************/
6 
7 #ifndef _RAVELIN_LINALGF_H
8 #define _RAVELIN_LINALGF_H
9 
10 #include <boost/tuple/tuple.hpp>
11 #include <boost/algorithm/minmax.hpp>
12 #include <vector>
13 #include <Ravelin/SingularException.h>
14 #include <Ravelin/NumericalException.h>
15 #include <Ravelin/NonsquareMatrixException.h>
16 #include <Ravelin/Constants.h>
17 #include <Ravelin/MatrixNf.h>
18 #include <Ravelin/Matrix2f.h>
19 #include <Ravelin/FastThreadable.h>
20 #include <Ravelin/SparseMatrixNf.h>
21 #include <Ravelin/VectorNf.h>
22 
23 namespace Ravelin {
24 
25 #define INTEGER int
26 #include "fdefs.h"
27 #include "LinAlg.h"
28 #include "undefs.h"
29 #undef INTEGER
30 
31 } // end namespace
32 
33 #endif
34