Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
b91b9403
There was an error fetching the commit references. Please try again later.
Commit
b91b9403
authored
6 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused timer from ExplicitSolver
parent
0f505907
No related branches found
No related tags found
1 merge request
!22
Header only
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/TNL/Solvers/ODE/ExplicitSolver.h
+0
-5
0 additions, 5 deletions
src/TNL/Solvers/ODE/ExplicitSolver.h
src/TNL/Solvers/ODE/ExplicitSolver_impl.h
+0
-9
0 additions, 9 deletions
src/TNL/Solvers/ODE/ExplicitSolver_impl.h
with
0 additions
and
14 deletions
src/TNL/Solvers/ODE/ExplicitSolver.h
+
0
−
5
View file @
b91b9403
...
...
@@ -11,7 +11,6 @@
#pragma once
#include
<iomanip>
#include
<TNL/Timer.h>
#include
<TNL/Experimental/Arithmetics/FlopsCounter.h>
#include
<TNL/Object.h>
#include
<TNL/Solvers/IterativeSolverMonitor.h>
...
...
@@ -67,8 +66,6 @@ class ExplicitSolver : public IterativeSolver< typename Problem::RealType,
void
setVerbose
(
IndexType
v
);
void
setTimer
(
Timer
*
timer
);
virtual
bool
solve
(
DofVectorPointer
&
u
)
=
0
;
void
setTestingMode
(
bool
testingMode
);
...
...
@@ -98,8 +95,6 @@ protected:
IndexType
verbosity
;
Timer
*
timer
;
bool
testingMode
;
Problem
*
problem
;
...
...
This diff is collapsed.
Click to expand it.
src/TNL/Solvers/ODE/ExplicitSolver_impl.h
+
0
−
9
View file @
b91b9403
...
...
@@ -22,7 +22,6 @@ ExplicitSolver()
tau
(
0.0
),
maxTau
(
DBL_MAX
),
verbosity
(
0
),
timer
(
&
defaultTimer
),
testingMode
(
false
),
problem
(
0
)
//,
//solverMonitor( 0 )
...
...
@@ -130,14 +129,6 @@ setVerbose( IndexType v )
this
->
verbosity
=
v
;
};
template
<
class
Problem
>
void
ExplicitSolver
<
Problem
>::
setTimer
(
Timer
*
timer
)
{
this
->
timer
=
timer
;
};
template
<
class
Problem
>
void
ExplicitSolver
<
Problem
>::
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment