v0.15.0
Loading...
Searching...
No Matches
TetPolynomialBase.cpp File Reference

Implementation of hierarchical bases on tetrahedral. More...

Go to the source code of this file.

Classes

struct  TetBaseCache
 
struct  TetBaseCache::BaseCacheItem
 
struct  TetBaseCache::HDivBaseCacheItem
 

Functions

template<typename T >
auto tetCacheSwitch (const void *ptr, T &cache, std::string cache_name)
 

Detailed Description

Implementation of hierarchical bases on tetrahedral.

A l2, h1, h-div and h-curl spaces are implemented.

Definition in file TetPolynomialBase.cpp.

Function Documentation

◆ tetCacheSwitch()

template<typename T >
auto tetCacheSwitch ( const void * ptr,
T & cache,
std::string cache_name )

Definition at line 2271 of file TetPolynomialBase.cpp.

2271 {
2272 auto it = cache.find(ptr);
2273 if (it != cache.end()) {
2274 MOFEM_LOG_CHANNEL("WORLD");
2275 MOFEM_TAG_AND_LOG("WORLD", Sev::noisy, "TetPolynomialBase")
2276 << "Cache off " << cache_name << ": " << it->second.size();
2277 cache.erase(it);
2278 return false;
2279 } else {
2280 MOFEM_LOG_CHANNEL("WORLD");
2281 MOFEM_TAG_AND_LOG("WORLD", Sev::noisy, "TetPolynomialBase")
2282 << "Cache on " << cache_name;
2283 cache[ptr];
2284 return true;
2285 }
2286}
#define MOFEM_TAG_AND_LOG(channel, severity, tag)
Tag and log in channel.
#define MOFEM_LOG_CHANNEL(channel)
Set and reset channel.