So-Bogus
A c++ sparse block matrix library aimed at Second Order cone problems
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
Block.io.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 #include "Block.hpp"
12 #include "Block/Streams.hpp"
13 
14 #ifdef BOGUS_WITH_BOOST_SERIALIZATION
15 #include <boost/serialization/version.hpp>
16 #include <boost/serialization/split_free.hpp>
17 #include <boost/serialization/array.hpp>
18 #include <boost/serialization/vector.hpp>
19 #include <boost/serialization/utility.hpp>
20 
21 #ifndef BOGUS_WITHOUT_EIGEN
22 #include "Eigen/EigenSerialization.hpp"
23 #endif
24 
25 #include "Block/Serialization.hpp"
26 #endif
27 
28 #ifndef BOGUS_BLOCK_WITHOUT_EIGEN_SPARSE
29 #include "Eigen/SparseConversions.hpp"
30 #endif