AlexanderKnight / HPC2019-Project1-KdV

Project 1 - HPC 2019 - KdV Equation
0 stars 0 forks source link

Progress report #7

Open jefflynn1 opened 5 years ago

jefflynn1 commented 5 years ago

Pushed main.cpp.

It should now take an input file and create an array of doubles with those data points.

A 2d array is constructed.

A for loop is run updating each row of the 2d array by calling timestep. It will use row i - 1 array as input to output the ith row. (I have more comments in the actual source code for this)

I am sure there is some errors with my code mainly in how I am updating my 2d array. I have not tested it yet.