Namespace that implements array extrapolation. More...
Functions | |
template<class T > | |
unsigned | extrapolate_if (array3< T > &array, std::function< bool(int i, int j, int k, int thread_index)> func, int count=1) |
Extrapolate array where it passes the test function. More... | |
template<class T > | |
unsigned | extrapolate (array3< T > &array, int count=1) |
Extrapolate array where it passes the test function. More... | |
Namespace that implements array extrapolation.
unsigned array_extrapolator3::extrapolate | ( | array3< T > & | array, |
int | count = 1 |
||
) |
Extrapolate array where it passes the test function.
[in] | array | Grid to extrapolate. |
[in] | count | Extrapolation count. |
unsigned array_extrapolator3::extrapolate_if | ( | array3< T > & | array, |
std::function< bool(int i, int j, int k, int thread_index)> | func, | ||
int | count = 1 |
||
) |
Extrapolate array where it passes the test function.
[in] | array | Grid to extrapolate. |
[in] | func | Test function. |
[in] | count | Extrapolation count. |