Remove debug output

This commit is contained in:
Matthias Hochsteger 2023-10-24 15:03:34 +02:00
parent 5af59aba66
commit 93a76faca6

View File

@ -15,7 +15,6 @@ void ReadMeditFormat (Mesh & mesh, const filesystem::path & filename, map<int, t
auto getIndex = [&](int eldim, int index) { auto getIndex = [&](int eldim, int index) {
if(index_map.count(index)==0) { if(index_map.count(index)==0) {
auto n = ++index_cnt[eldim]; auto n = ++index_cnt[eldim];
cout << "index " << eldim <<'\t' << index << '\t' << n << endl;
index_map[index] = {eldim, n}; index_map[index] = {eldim, n};
if(eldim==2) { if(eldim==2) {
auto fd = FaceDescriptor(n-1,1,0,0); auto fd = FaceDescriptor(n-1,1,0,0);