Removing debugging code

This commit is contained in:
Stowell, Mark L
2024-05-07 15:48:28 -07:00
parent c5be56264c
commit 1450a58374
3 changed files with 13 additions and 53 deletions
-6
View File
@@ -5125,9 +5125,6 @@ Nedelec2PyrFiniteElement::Nedelec2PyrFiniteElement()
const double *eop = poly1d.OpenPoints(2 - 1);
const double fop = 1. / 3.;
std::cout << "Open points (on edges): "
<< eop[0] << " " << eop[1] << std::endl;
// not real nodes ...
Nodes.IntPoint(0).Set3(eop[0], 0., 0.);
Nodes.IntPoint(1).Set3(eop[1], 0., 0.);
@@ -5185,9 +5182,6 @@ Nedelec2PyrFiniteElement::Nedelec2PyrFiniteElement()
I(j,i) = vecs(j,0)*tk[i][0]+vecs(j,1)*tk[i][1]+vecs(j,2)*tk[i][2];
}
}
I.Print(std::cout);
std::cout << "Trace: " << I.Trace() << std::endl;
std::cout << "Square of Frobenius Norm: " << I.FNorm2() << std::endl;
}
}