From 37e96582115dff129498fc50737801e78d908548 Mon Sep 17 00:00:00 2001 From: Dario Coscia Date: Fri, 5 May 2023 17:45:10 +0200 Subject: [PATCH] minor fix --- docs/source/_rst/tutorial1/tutorial.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/source/_rst/tutorial1/tutorial.rst b/docs/source/_rst/tutorial1/tutorial.rst index 16417fb..02c6538 100644 --- a/docs/source/_rst/tutorial1/tutorial.rst +++ b/docs/source/_rst/tutorial1/tutorial.rst @@ -82,12 +82,11 @@ time domain where we want the solution. Summarizing, in PINA we can initialize a problem with a class which is inherited from three base classes: ``SpatialProblem``, ``TimeDependentProblem``, ``ParametricProblem``, depending on the type -of problem we are considering. For reference: \* ``SpatialProblem`` -:math:`\rightarrow` spatial variable(s) presented in the differential -equation \* ``TimeDependentProblem`` :math:`\rightarrow` time -variable(s) presented in the differential equation \* -``ParametricProblem`` :math:`\rightarrow` parameter(s) presented in the -differential equation +of problem we are considering. For reference: + +* ``SpatialProblem`` :math:`\rightarrow` spatial variable(s) presented in the differential equation +* ``TimeDependentProblem`` :math:`\rightarrow` time variable(s) presented in the differential equation +* ``ParametricProblem`` :math:`\rightarrow` parameter(s) presented in the differential equation Write the problem class ~~~~~~~~~~~~~~~~~~~~~~~