Metafunction for generating a discretization stencil with a memory pool (MP).
More...
|
| MPDiscreteStencil (const weight_t &zero=weight_t()) |
|
| MPDiscreteStencil (std::size_t nItems, const weight_t &zero=weight_t()) |
|
| MPDiscreteStencil (std::size_t size, const long *pattern, const weight_t &zero=weight_t()) |
|
| MPDiscreteStencil (std::size_t size, const long *pattern, const weight_t *weights, const weight_t &zero=weight_t()) |
|
void | setWeightPool (weight_pool_type *pool) |
|
| DiscreteStencil (const weight_t &zero=weight_t()) |
|
| DiscreteStencil (std::size_t nItems, const weight_t &zero=weight_t()) |
|
| DiscreteStencil (std::size_t size, const long *pattern, const weight_t &zero=weight_t()) |
|
| DiscreteStencil (std::size_t size, const long *pattern, const weight_t *weights, const weight_t &zero=weight_t()) |
|
void | addComplementToZero (long id) |
|
void | appendItem (long id, const weight_t &weight) |
|
void | appendItem (long id, weight_t &&weight) |
|
weight_t & | at (long id) |
|
const weight_t & | at (long id) const |
|
void | clear (bool release=false) |
|
void | display (std::ostream &out, double factor=1.) const |
|
size_t | getBinarySize () const |
|
weight_t & | getConstant () |
|
const weight_t & | getConstant () const |
|
long & | getPattern (std::size_t pos) |
|
const long & | getPattern (std::size_t pos) const |
|
weight_t & | getWeight (std::size_t pos) |
|
const weight_t & | getWeight (std::size_t pos) const |
|
void | initialize (const DiscreteStencil< weight_t, value_t > &other) |
|
void | initialize (std::size_t nItems, const weight_t &zero=weight_t()) |
|
void | initialize (std::size_t size, const long *pattern, const weight_t &zero=weight_t()) |
|
void | initialize (std::size_t size, const long *pattern, const weight_t *weights, const weight_t &zero=weight_t()) |
|
DiscreteStencil< weight_t, value_t > & | operator*= (double factor) |
|
DiscreteStencil< weight_t, value_t > & | operator+= (const DiscreteStencil< weight_t, value_t > &other) |
|
DiscreteStencil< weight_t, value_t > & | operator-= (const DiscreteStencil< weight_t, value_t > &other) |
|
DiscreteStencil< weight_t, value_t > & | operator/= (double factor) |
|
weight_t & | operator[] (long id) |
|
void | optimize (double tolerance=1.e-12) |
|
long * | patternData () |
|
const long * | patternData () const |
|
template<typename Mapper > |
void | renumber (const Mapper &mapper) |
|
void | renumber (const std::unordered_map< long, long > &map) |
|
void | reserve (std::size_t nItems) |
|
void | resize (std::size_t nItems) |
|
void | setConstant (const weight_t &constant) |
|
void | setConstant (weight_t &&constant) |
|
void | setItem (std::size_t pos, long id, const weight_t &weight) |
|
void | setItem (std::size_t pos, long id, weight_t &&weight) |
|
void | setPattern (std::size_t pos, long id) |
|
void | setWeight (std::size_t pos, const weight_t &weight) |
|
void | setWeight (std::size_t pos, weight_t &&weight) |
|
std::size_t | size () const |
|
void | sum (const DiscreteStencil< weight_t, value_t > &other, double factor) |
|
void | sumConstant (const weight_t &constant, double factor=1.) |
|
void | sumItem (long id, const weight_t &weight, double factor=1.) |
|
void | sumWeight (std::size_t pos, const weight_t &weight, double factor=1.) |
|
weight_t * | weightData () |
|
const weight_t * | weightData () const |
|
void | zero () |
|
void | zeroConstant () |
|
void | zeroWeight (std::size_t pos) |
|
template<typename weight_t, typename value_t = typename DiscreteStencilWeightValueInfo<weight_t>::type>
class bitpit::MPDiscreteStencil< weight_t, value_t >
Metafunction for generating a discretization stencil with a memory pool (MP).
- Template Parameters
-
weight_t | is the type of the weights stored in the stencil |
Definition at line 182 of file stencil.hpp.