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
aaa439e8
There was an error fetching the commit references. Please try again later.
Commit
aaa439e8
authored
3 years ago
by
Tomáš Oberhuber
Committed by
Jakub Klinkovský
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Writing documentation on explicit solver.
parent
943fa63c
No related branches found
No related tags found
1 merge request
!125
ODE solvers
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TNL/Solvers/ODE/ExplicitSolver.h
+22
-1
22 additions, 1 deletion
src/TNL/Solvers/ODE/ExplicitSolver.h
with
22 additions
and
1 deletion
src/TNL/Solvers/ODE/ExplicitSolver.h
+
22
−
1
View file @
aaa439e8
...
...
@@ -18,17 +18,38 @@ namespace TNL {
namespace
Solvers
{
namespace
ODE
{
/**
* \brief Base class for ODE solvers and explicit solvers od PDEs.
*
* \tparam Real is type of the floating-point arithmetics.
* \tparam Index is type for indexing.
* \tparam IterativeSolverMonitor< Real, Index > is
*/
template
<
typename
Real
=
double
,
typename
Index
=
int
,
typename
SolverMonitor
=
IterativeSolverMonitor
<
Real
,
Index
>
>
class
ExplicitSolver
:
public
IterativeSolver
<
Real
,
Index
,
SolverMonitor
>
{
public:
public:
/**
* \brief Type of the floating-point arithmetics.
*/
using
RealType
=
Real
;
/**
* \brief Indexing type.
*/
using
IndexType
=
Index
;
/**
* \brief Type of the monitor of the convergence of the solver.
*/
using
SolverMonitorType
=
SolverMonitor
;
/**
* \brief Default constructor.
*/
ExplicitSolver
()
=
default
;
static
void
...
...
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