diff --git a/AMDiS/src/Lagrange.cc b/AMDiS/src/Lagrange.cc index 42b3f42a3d23c5d52f36a55141c50caab85cba1b..8a6ac65ad32f991934111faf3dc2e511b1278ab9 100644 --- a/AMDiS/src/Lagrange.cc +++ b/AMDiS/src/Lagrange.cc @@ -49,11 +49,8 @@ namespace AMDiS { Lagrange::~Lagrange() { - std::cout << "DELETE LAGRANGE" << std::endl; - std::cout << "BARY ADR = " << bary << std::endl; for (int i = 0; i < static_cast<int>(bary->size()); i++) { if ((*bary)[i]) { - std::cout << "DEL ADR = " << (*bary)[i] << std::endl; DELETE (*bary)[i]; (*bary)[i] = NULL; } @@ -650,9 +647,7 @@ namespace AMDiS { if (dimIndex == numCoords - 1) { (*vec)[coordInd[dimIndex]] = double(rest) / degree; DimVec<double>* newCoords = NEW DimVec<double>(*vec); - std::cout << "BARY ADR = " << bary << std::endl; bary->push_back(newCoords); - std::cout << "ADD ADR = " << newCoords << std::endl; } else { for (int i = rest - 1; i >= 1; i--) { (*vec)[coordInd[dimIndex]] = double(i) / degree; diff --git a/AMDiS/src/ProblemScal.cc b/AMDiS/src/ProblemScal.cc index 68cb2b3e68dcd8baf06f775e5e2c0ad2596ae6c3..957dc59aa7dba174d8b0bc99e002ae2751d0d1e1 100644 --- a/AMDiS/src/ProblemScal.cc +++ b/AMDiS/src/ProblemScal.cc @@ -425,6 +425,8 @@ namespace AMDiS { // create finite element space int degree = 1; GET_PARAMETER(0, name_ + "->polynomial degree" ,"%d", °ree); + std::cout << degree << std::endl; + WAIT_REALLY; feSpace_ = FiniteElemSpace::provideFESpace(NULL, Lagrange::getLagrange(mesh->getDim(), degree), mesh,