So-Bogus
A c++ sparse block matrix library aimed at Second Order cone problems
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
Block.fwd.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_FWD_HPP
13 #define BOGUS_BLOCK_FWD_HPP
14 
15 #include "Block/Constants.hpp"
16 #include "Block/Traits.hpp"
17 
18 namespace bogus {
19 
20 template < typename Derived >
21 struct BlockObjectBase ;
22 
23 template < typename Derived >
24 class IterableBlockObject;
25 
26 template < typename Derived >
27 struct Transpose ;
28 
29 template < typename Derived >
30 class BlockMatrixBase ;
31 
32 template < typename Derived >
33 class SparseBlockMatrixBase ;
34 
35 template < typename BlockT, int Flags = flags::NONE >
36 class SparseBlockMatrix ;
37 
38 template < typename BlockT, int Flags = flags::NONE, typename Index = BOGUS_DEFAULT_INDEX_TYPE >
39 class MappedSparseBlockMatrix ;
40 
41 
42 }
43 
44 #endif