quick lines to cout so people (me) don't think the program crashed while reading data

This commit is contained in:
Djairo Hougee 2024-05-06 13:06:38 +02:00
parent 3c64364482
commit 40f6c0da6e
1 changed files with 2 additions and 0 deletions

View File

@ -21,8 +21,10 @@ using namespace std;
#define DT 60 * 60 // 60 sec/min * 60 mins #define DT 60 * 60 // 60 sec/min * 60 mins
int main() { int main() {
cout << "reading data..." << endl;
shared_ptr<UVGrid> uvGrid = std::make_shared<UVGrid>(); shared_ptr<UVGrid> uvGrid = std::make_shared<UVGrid>();
auto kernelRK4 = make_unique<RK4AdvectionKernel>(uvGrid); auto kernelRK4 = make_unique<RK4AdvectionKernel>(uvGrid);
cout << "Starting vtk..." << endl;
auto l = new LGlyphLayer(uvGrid, std::move(kernelRK4)); auto l = new LGlyphLayer(uvGrid, std::move(kernelRK4));