|
void | finley::util::sortValueAndIndex (ValueAndIndexList &array) |
| orders a ValueAndIndexList by value More...
|
|
bool | finley::util::hasReducedIntegrationOrder (const escript::Data &in) |
| returns true if the data object is defined on reduced element types More...
|
|
void | finley::util::gather (dim_t len, const index_t *index, dim_t numData, const double *in, double *out) |
|
void | finley::util::addScatter (dim_t len, const index_t *index, dim_t numData, const double *in, double *out, index_t upperBound) |
|
void | finley::util::smallMatMult (int A1, int A2, double *A, int B2, const std::vector< double > &B, const std::vector< double > &C) |
| multiplies two matrices: A(1:A1,1:A2) := B(1:A1,1:B2)*C(1:B2,1:A2) More...
|
|
void | finley::util::smallMatSetMult1 (int len, int A1, int A2, double *A, int B2, const std::vector< double > &B, const std::vector< double > &C) |
|
void | finley::util::invertSmallMat (int len, int dim, const double *A, double *invA, double *det) |
|
void | finley::util::normalVector (int len, int dim, int dim1, const double *A, double *Normal) |
|
index_t | finley::util::getMinInt (int dim, dim_t N, const index_t *values) |
| calculates the minimum value from a dim X N integer array More...
|
|
index_t | finley::util::getMaxInt (int dim, dim_t N, const index_t *values) |
| calculates the maximum value from a dim X N integer array More...
|
|
std::pair< index_t, index_t > | finley::util::getMinMaxInt (int dim, dim_t N, const index_t *values) |
|
std::pair< index_t, index_t > | finley::util::getFlaggedMinMaxInt (dim_t N, const index_t *values, index_t ignore) |
|
std::vector< index_t > | finley::util::packMask (const std::vector< short > &mask) |
|
void | finley::util::setValuesInUse (const int *values, const int numValues, std::vector< int > &valuesInUse, esysUtils::JMPI &mpiinfo) |
|