Ravelin
LinAlgd.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_LINALGD_H
8 #define _RAVELIN_LINALGD_H
9 
10 #include <boost/tuple/tuple.hpp>
11 #include <boost/algorithm/minmax.hpp>
12 #include <Ravelin/SingularException.h>
13 #include <Ravelin/NumericalException.h>
14 #include <Ravelin/NonsquareMatrixException.h>
15 #include <Ravelin/Constants.h>
16 #include <Ravelin/MatrixNd.h>
17 #include <Ravelin/Matrix2d.h>
18 #include <Ravelin/FastThreadable.h>
19 #include <Ravelin/SparseMatrixNd.h>
20 #include <Ravelin/VectorNd.h>
21 
22 namespace Ravelin {
23 
24 #define INTEGER int
25 #include "ddefs.h"
26 #include "LinAlg.h"
27 #undef INTEGER
28 #include "undefs.h"
29 
30 } // end namespace
31 
32 #endif