From 40f6c0da6e30e2233079db95edd03a686c3190a6 Mon Sep 17 00:00:00 2001 From: djairoh Date: Mon, 6 May 2024 13:06:38 +0200 Subject: [PATCH] quick lines to cout so people (me) don't think the program crashed while reading data --- vtk/src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vtk/src/main.cpp b/vtk/src/main.cpp index 1631424..49e44bb 100644 --- a/vtk/src/main.cpp +++ b/vtk/src/main.cpp @@ -21,8 +21,10 @@ using namespace std; #define DT 60 * 60 // 60 sec/min * 60 mins int main() { + cout << "reading data..." << endl; shared_ptr uvGrid = std::make_shared(); auto kernelRK4 = make_unique(uvGrid); + cout << "Starting vtk..." << endl; auto l = new LGlyphLayer(uvGrid, std::move(kernelRK4));