mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 13:50:33 +05:00
release 5.3.1
This commit is contained in:
parent
ba3bdc812d
commit
671aeeb0f2
@ -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])
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user