Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Merge requests
!201
Feature/eigen3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/eigen3
feature/eigen3
into
develop
Overview
0
Commits
8
Pipelines
0
Changes
1
Merged
Stéphane Del Pino
requested to merge
feature/eigen3
into
develop
3 months ago
Overview
0
Commits
8
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
8827f99e
Prev
Next
Show latest version
1 file
+
0
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
8827f99e
Fix another bunch of warnings
· 8827f99e
Stéphane Del Pino
authored
3 months ago
src/algebra/EigenvalueSolverOptions.hpp
+
0
−
17
Options
@@ -61,11 +61,6 @@ class EigenvalueSolverOptions
private:
ESLibrary
m_library
=
ESLibrary
::
slepsc
;
double
m_epsilon
=
1E-6
;
size_t
m_maximum_iteration
=
200
;
bool
m_verbose
=
false
;
public:
static
EigenvalueSolverOptions
default_options
;
@@ -83,18 +78,6 @@ class EigenvalueSolverOptions
return
m_library
;
}
bool
&
verbose
()
{
return
m_verbose
;
};
bool
verbose
()
const
{
return
m_verbose
;
};
EigenvalueSolverOptions
(
const
EigenvalueSolverOptions
&
)
=
default
;
EigenvalueSolverOptions
(
EigenvalueSolverOptions
&&
)
=
default
;
Loading