v0.16.3
Loading...
Searching...
No Matches
Classes | Functions
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 2278 of file TetPolynomialBase.cpp.

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