refactor color bubble

This commit is contained in:
James E McClure
2018-05-17 10:18:57 -04:00
parent b3626d3edd
commit ebbccdaf7c
2 changed files with 3 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ public:
// functions in they should be run
void ReadParams(string filename);
void ReadParams(std::shared_ptr<Database> DB)
void ReadInput();
void Create();
void Initialize();

View File

@@ -8,6 +8,7 @@
#include <fstream>
#include "common/ScaLBL.h"
#include "common/MPI_Helpers.h"
#include "models/ColorModel.h"
using namespace std;
@@ -108,7 +109,7 @@ int main(int argc, char **argv)
}
}
auto filename = argv[1];
ScaLBL_ColorModel() ColorModel;
ScaLBL_ColorModel ColorModel;
ColorModel.ReadParams(filename);
}
// ****************************************************