Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5a89efb2 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

Fix missing include <limits>

parent 21405ec5
No related branches found
No related tags found
No related merge requests found
Pipeline #794805 failed
fabulous-1.1.3
------------------------------------------------------------------------
- Hotfix: add missing include <limits> to be able to use std::numeric_limits
fabulous-1.1.2
------------------------------------------------------------------------
- Added a tutorial and updated the documentation
- Fixed Compilation error on some MacOSX
fabulous-1.1.1
------------------------------------------------------------------------
- Added new parameter for GCRO interface to treat the deflation space as constant
- Added fabulous_get_Uk_const_last_solve() to check if the deflation space was modified
- Added BCG and Computational Blocking example
- Changed GCRO C and Fortran interface to consider complex eigen values for the real case
- Fixed GCRO orthogonalisation scheme CGS RUHE variant
- Fixed Computational Blocking on first residual
fabulous-1.1.0
------------------------------------------------------------------------
- Added IB-BGCRO-DR solver
- Added online documentation https://solverstack.gitlabpages.inria.fr/fabulous/README.html
- Added online developer documentation https://solverstack.gitlabpages.inria.fr/fabulous/html/index.html
- Added new examples and test cases
#ifndef FABULOUS_ARNOLDI_GCR_HPP
#define FABULOUS_ARNOLDI_GCR_HPP
#include <limits>
#include <numeric>
namespace fabulous {
......
#ifndef FABULOUS_BCG_ITERATIONS2_HPP
#define FABULOUS_BCG_ITERATIONS2_HPP
#include <limits>
#include <numeric>
namespace fabulous {
......
......@@ -2,6 +2,7 @@
#define FABULOUS_EIGEN_UTILS_HPP
#include <complex>
#include <limits>
#include <type_traits>
#include "fabulous/data/Block.hpp"
......
#ifndef FABULOUS_CONVERGENCE_CHECK_HPP
#define FABULOUS_CONVERGENCE_CHECK_HPP
#include <limits>
#include "fabulous/data/Base.hpp"
#include "fabulous/data/Block.hpp"
#include "fabulous/utils/Error.hpp"
......
......@@ -2,6 +2,7 @@
#define FABULOUS_UTILS_HPP
#include <algorithm>
#include <limits>
#include <vector>
#include <iostream>
#include <string>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment