release 5.3.1

This commit is contained in:
Joachim Schoeberl 2014-10-07 11:24:07 +00:00
parent ba3bdc812d
commit 671aeeb0f2
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([netgen],[5.3],[],[])
AC_INIT([netgen],[5.3.1],[],[])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4])

View File

@ -20,7 +20,7 @@
// in the configure/make phases, with the
// right version number
#ifdef WIN32
#define PACKAGE_VERSION "5.3-dev"
#define PACKAGE_VERSION "5.3"
#endif

View File

@ -2421,7 +2421,10 @@ namespace netgen
double hminv = numeric_limits<double>::max();
double hmaxv = -numeric_limits<double>::max();
bool hhasit = false;
#if defined _OPENMP && _OPENMP >= 201107
#pragma omp parallel for reduction (max : hmaxv) reduction (min : hminv) reduction (|| : hhasit)
#endif
for (int i = 0; i < ne; i++)
{
double val;