So-Bogus
A c++ sparse block matrix library aimed at Second Order cone problems
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
Block.hpp
1 /*
2  * This file is part of bogus, a C++ sparse block matrix library.
3  *
4  * Copyright 2013 Gilles Daviet <gdaviet@gmail.com>
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 */
10 
11 
12 #ifndef BOGUS_BLOCK_HPP
13 #define BOGUS_BLOCK_HPP
14 
15 #include "Block.fwd.hpp"
16 
17 #include "Block/ScalarBindings.hpp"
18 #include "Block/BlockObjectBase.hpp"
19 #include "Block/BlockMatrixBase.hpp"
20 
21 #ifndef BOGUS_WITHOUT_EIGEN
22 #include "Eigen/EigenBlockContainers.hpp"
23 #include "Eigen/BlockBindings.hpp"
24 #endif
25 
26 #include "Block/Evaluators.hpp"
27 
28 #include "Block/SparseBlockMatrix.hpp"
29 #include "Block/MappedSparseBlockMatrix.hpp"
30 #include "Block/CompoundMatrix.hpp"
31 #include "Block/Zero.hpp"
32 #include "Block/Operators.hpp"
33 
34 #endif