From 20a2395e7908cb461f94b36e036189feb9963aff Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 12 Jul 2023 18:01:52 +0200 Subject: [PATCH] [MaL] Add missing doxygen file header --- MathLib/LinAlg/LinearSolverOptions.cpp | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/MathLib/LinAlg/LinearSolverOptions.cpp b/MathLib/LinAlg/LinearSolverOptions.cpp index 596efa618ea..9763eda9eb2 100644 --- a/MathLib/LinAlg/LinearSolverOptions.cpp +++ b/MathLib/LinAlg/LinearSolverOptions.cpp @@ -1,15 +1,22 @@ +/** + * \file + * \copyright + * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + */ + #include "LinearSolverOptions.h" -* \file #include <set> #include "BaseLib/ConfigTree.h" - //! Configuration tag names of all known linear solvers for their - //! configuration in the project file. - //! Add your tag name here when you add a new solver. - static std::set<std::string> - known_linear_solvers{"eigen", "lis", "petsc"}; +//! Configuration tag names of all known linear solvers for their +//! configuration in the project file. +//! Add your tag name here when you add a new solver. +static std::set<std::string> known_linear_solvers{"eigen", "lis", "petsc"}; namespace MathLib { -- GitLab