#include <iomanip>
#include <ctime>
-#include <cmath>
+#include <math.h>
#include <set>
ExcInvalidDatasetSize (patch->data.n(), n_subdivisions+1));
- vector<Point<spacedim> > ver((n_subdivisions+1)*
- (n_subdivisions+1));
+ std::vector<Point<spacedim> > ver((n_subdivisions+1)*
+ (n_subdivisions+1));
for (unsigned int i=0; i<n_subdivisions+1; ++i)
{
{
// aproximate normal
// vectors in patch
- vector<Point<3> > nrml((n_subdivisions+1)*
- (n_subdivisions+1));
+ std::vector<Point<3> > nrml((n_subdivisions+1)*
+ (n_subdivisions+1));
Point<3> h1,h2;
for (unsigned int i=0; i<n_subdivisions+1;++i)
{
// of coefficients. do that in a MT
// safe way
coefficients_lock.acquire ();
- const vector<number> *p = coefficients[k];
+ const std::vector<number> *p = coefficients[k];
coefficients_lock.release ();
// return the object pointed
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams