LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
assembler.cc
1/***************************************************************************
2 * LehrFEM++ - A simple C++ finite element libray for teaching
3 * Developed from 2018 at the Seminar of Applied Mathematics of ETH Zurich,
4 * lead developers Dr. R. Casagrande and Prof. R. Hiptmair
5 ***************************************************************************/
6
15#include "assembler.h"
16
17namespace lf::assemble {
18// Initialize AssembleMatrixLogger
19std::shared_ptr<spdlog::logger>& AssembleMatrixLogger() {
20 static auto logger = base::InitLogger("lf::assemble::AssembleMatrixLogger");
21 return logger;
22}
23
24} // namespace lf::assemble
std::shared_ptr< spdlog::logger > & AssembleMatrixLogger()
The logger that is used by AssembleMatrixLocally() to log additional information. (for logging levels...
Definition assembler.cc:19
D.o.f. index mapping and assembly facilities.
Definition assemble.h:31
std::shared_ptr< spdlog::logger > InitLogger(const std::string &name)
Create a spdlog logger, register it in the spdlog registry and initialize it with LehrFEM++ specific ...