So-Bogus
A c++ sparse block matrix library aimed at Second Order cone problems
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
BlockSolvers.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_GAUSS_SEIDEL_HPP
13 #define BOGUS_GAUSS_SEIDEL_HPP
14 
15 #include "BlockSolvers.fwd.hpp"
16 
17 #include "BlockSolvers/GaussSeidel.hpp"
18 #include "BlockSolvers/ProductGaussSeidel.hpp"
19 #include "BlockSolvers/Krylov.hpp"
20 #include "BlockSolvers/ProjectedGradient.hpp"
21 #include "BlockSolvers/ADMM.hpp"
22 
23 #include "BlockSolvers/LCPLaw.hpp"
24 
25 #endif