Commit e97cba15 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Small fixes and typo fix in documentation of solver monitor.

parent 59a4d824
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -163,7 +163,6 @@ class LinearSolver
      MatrixPointer matrix = nullptr;
      PreconditionerPointer preconditioner = nullptr;
};

      } // namespace Linear
   } // namespace Solvers
} // namespace TNL
+2 −2
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ class SolverMonitor
      }

      /**
       * \brief Stops the main loop of the monitor. See \ref SolverMonitor::runMainLoop.
       * \brief Stops the main loop of the monitor. See \ref TNL::SolverMonitor::runMainLoop.
       */
      void stopMainLoop() { stopped = true; }

@@ -101,7 +101,7 @@ class SolverMonitor
       * \brief Checks whether the main loop was stopped.
       *
       * \return true if the main loop was stopped.
       * \return false if the mian loop was not stopped yet.
       * \return false if the main loop was not stopped yet.
       */
      bool isStopped() const { return stopped; }