test replace key in Database

This commit is contained in:
JamesEMcclure
2019-08-12 13:12:48 -04:00
parent f040c6befc
commit ee6c8b57cd

View File

@@ -37,6 +37,7 @@ int main(int argc, char **argv)
// write a simple database and test that it can be read by LBPM
auto db = std::make_shared<Database>( );
db->putScalar<int>( "BC", BC );
db->putScalar<int>( "BC", BC );
db->putVector<int>( "nproc", { npx, npy, npz } );
db->putVector<int>( "n", { nx, ny, nz } );
db->putVector<std::string>( "Files", List);