Skip to content

Commit 2af68d4

Browse files
committed
Some cleaning
1 parent 124430a commit 2af68d4

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

Code/Source/solver/VtkData.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,6 @@ void VtkVtpData::copy_cell_data(const std::string& data_name, Vector<double>& me
656656
}
657657
void VtkVtpData::copy_cell_data(const std::string& data_name, Vector<int>& mesh_data)
658658
{
659-
std::cout << "[VtkVtpData.copy_cell_data] data_name: " << data_name << std::endl;
660659
auto vtk_data = vtkIntArray::SafeDownCast(impl->vtk_polydata->GetCellData()->GetArray(data_name.c_str()));
661660
if (vtk_data == nullptr) {
662661
return;

Code/Source/solver/read_msh.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,6 @@ void read_msh(Simulation* simulation)
15121512
flag = true;
15131513
}
15141514
}
1515-
15161515
#ifdef debug_read_msh
15171516
dmsg << "flag: " << flag;
15181517
#endif
@@ -1774,7 +1773,7 @@ void set_dmn_id_vtk(Simulation* simulation, mshType& lM, const std::string& file
17741773
#endif
17751774
for (int a = 0; a < lM.gnEl; a++) {
17761775
lM.eId(a) = lM.eId(a) | (1UL << tmpR(a));
1777-
std::cout << "[set_dmn_id_vtk] a: " << a+1 << " lM.eId: " << lM.eId(a) << " ";
1776+
//std::cout << "[set_dmn_id_vtk] a: " << a+1 << " lM.eId: " << lM.eId(a) << " ";
17781777
}
17791778

17801779
}

0 commit comments

Comments
 (0)