Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
CoMISo
Commits
e25513a2
Commit
e25513a2
authored
Dec 01, 2016
by
Max Lyon
Browse files
ignore warning in Eigen Sparse
parent
6b22e2ce
Pipeline
#3758
failed with stage
in 6 minutes and 2 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
EigenSolver/EigenArpackMatrixT.hh
View file @
e25513a2
...
...
@@ -17,6 +17,9 @@
//== INCLUDES =================================================================
#include
<iostream>
#include
<Base/Code/Quality.hh>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/Eigen>
#if EIGEN_VERSION_AT_LEAST(3,1,0)
...
...
@@ -26,6 +29,7 @@
#include
<unsupported/Eigen/CholmodSupport>
#endif
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
//== FORWARDDECLARATIONS ======================================================
...
...
NSolver/LinearConstraintConverter.hh
View file @
e25513a2
...
...
@@ -14,9 +14,13 @@
#include
<CoMISo/Config/CoMISoDefines.hh>
#include
"NConstraintInterface.hh"
#include
"LinearConstraint.hh"
#include
<Base/Code/Quality.hh>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/StdVector>
#include
<Eigen/Dense>
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
//== FORWARDDECLARATIONS ======================================================
...
...
NSolver/NConstraintInterface.hh
View file @
e25513a2
...
...
@@ -18,8 +18,11 @@
#include
"SuperSparseMatrixT.hh"
#include
<Base/Code/Quality.hh>
LOW_CODE_QUALITY_SECTION_BEGIN
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
//== FORWARDDECLARATIONS ======================================================
...
...
NSolver/NProblemInterface.hh
View file @
e25513a2
...
...
@@ -15,14 +15,17 @@
//== INCLUDES =================================================================
#include
<Base/Code/Quality.hh>
#include
<iostream>
#include
<cfloat>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/Eigen>
#if !(EIGEN_VERSION_AT_LEAST(3,1,0))
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#endif
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
#include
<CoMISo/Config/CoMISoDefines.hh>
...
...
NSolver/QuadraticProblem.hh
View file @
e25513a2
...
...
@@ -5,9 +5,12 @@
#include
<CoMISo/Utils/StopWatch.hh>
#include
<vector>
#include
<CoMISo/NSolver/NProblemInterface.hh>
#include
<Base/Code/Quality.hh>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/Eigen>
#include
<Eigen/Core>
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
//== NAMESPACES ===============================================================
...
...
Solver/EigenLDLTSolver.hh
View file @
e25513a2
...
...
@@ -45,9 +45,12 @@
#include
<vector>
#include
<Base/Code/Quality.hh>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/Eigen>
#include
<Eigen/Sparse>
#include
<Eigen/SparseCholesky>
LOW_CODE_QUALITY_SECTION_END
//== NAMESPACES ===============================================================
...
...
Solver/Eigen_Tools.hh
View file @
e25513a2
...
...
@@ -33,16 +33,18 @@
//== INCLUDES =================================================================
#include
<Base/Code/Quality.hh>
#include
<iostream>
#include
<vector>
#include
<algorithm>
#include
<limits>
#include
<cmath>
LOW_CODE_QUALITY_SECTION_BEGIN
#include
<Eigen/Dense>
#define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
#include
<Eigen/Sparse>
LOW_CODE_QUALITY_SECTION_END
#if COMISO_SUITESPARSE_AVAILABLE
#include
<cholmod.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment