quick lines to cout so people (me) don't think the program crashed while reading data
This commit is contained in:
@@ -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));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user