mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-13 06:30:34 +05:00
version 5.3
This commit is contained in:
parent
ed51959493
commit
204e29ed86
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([netgen],[5.2-dev],[],[])
|
AC_INIT([netgen],[5.3-dev],[],[])
|
||||||
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
noinst_HEADERS = acisgeom.hpp gprim.hpp meshing.hpp occgeom.hpp \
|
noinst_HEADERS = acisgeom.hpp gprim.hpp meshing.hpp occgeom.hpp \
|
||||||
visual.hpp csg.hpp incvis.hpp myadt.hpp opti.hpp geometry2d.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
|
include_HEADERS = nginterface.h nginterface_v2.hpp
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
// in the configure/make phases, with the
|
// in the configure/make phases, with the
|
||||||
// right version number
|
// right version number
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#define PACKAGE_VERSION "5.2-dev"
|
#define PACKAGE_VERSION "5.3-dev"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -3675,7 +3675,6 @@ namespace netgen
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Vector shapes;
|
|
||||||
MatrixFixWidth<3> dshapes;
|
MatrixFixWidth<3> dshapes;
|
||||||
|
|
||||||
|
|
||||||
@ -3706,7 +3705,10 @@ namespace netgen
|
|||||||
// info.ndof += facecoeffsindex[info.facenr+1] - facecoeffsindex[info.facenr];
|
// 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]);
|
GetCoefficients (info, &coefs[0]);
|
||||||
if (x)
|
if (x)
|
||||||
{
|
{
|
||||||
|
@ -1066,7 +1066,7 @@ proc timer2 { } {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
after 200 { timer2 }
|
after 30 { timer2 }
|
||||||
}
|
}
|
||||||
# after 1000 { timer2 }
|
# after 1000 { timer2 }
|
||||||
timer2
|
timer2
|
||||||
|
Loading…
Reference in New Issue
Block a user