version 5.3

This commit is contained in:
Joachim Schoeberl 2014-01-13 09:05:29 +00:00
parent ed51959493
commit 204e29ed86
5 changed files with 9 additions and 6 deletions

View File

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

View File

@ -1,6 +1,7 @@
noinst_HEADERS = acisgeom.hpp gprim.hpp meshing.hpp occgeom.hpp \
visual.hpp csg.hpp incvis.hpp myadt.hpp opti.hpp geometry2d.hpp \
linalg.hpp mydefs.hpp parallel.hpp stlgeom.hpp mystdlib.h
linalg.hpp mydefs.hpp parallel.hpp stlgeom.hpp mystdlib.h \
nginterface_v2_impl.hpp
include_HEADERS = nginterface.h nginterface_v2.hpp

View File

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

View File

@ -3675,7 +3675,6 @@ namespace netgen
Vector shapes;
MatrixFixWidth<3> dshapes;
@ -3706,7 +3705,10 @@ namespace netgen
// info.ndof += facecoeffsindex[info.facenr+1] - facecoeffsindex[info.facenr];
}
Array<Vec<3> > coefs(info.ndof);
ArrayMem<Vec<3>,100> coefs(info.ndof);
ArrayMem<double,100> shapes_mem(info.ndof);
Vector shapes(info.ndof, &shapes_mem[0]);
GetCoefficients (info, &coefs[0]);
if (x)
{

View File

@ -1066,7 +1066,7 @@ proc timer2 { } {
}
}
after 200 { timer2 }
after 30 { timer2 }
}
# after 1000 { timer2 }
timer2