quick lines to cout so people (me) don't think the program crashed while reading data
This commit is contained in:
parent
3c64364482
commit
40f6c0da6e
|
|
@ -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));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue