Skip to content
Snippets Groups Projects
Commit b91b9403 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Removed unused timer from ExplicitSolver

parent 0f505907
No related branches found
No related tags found
1 merge request!22Header only
......@@ -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;
......
......@@ -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 >::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment