Skip to content

Commit

Permalink
[MaL] Add missing doxygen file header
Browse files Browse the repository at this point in the history
  • Loading branch information
endJunction committed Jul 12, 2023
1 parent 88111bb commit 20a2395
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions MathLib/LinAlg/LinearSolverOptions.cpp
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down

0 comments on commit 20a2395

Please sign in to comment.