fixed TestTorus

This commit is contained in:
James E McClure
2018-05-16 21:32:30 -04:00
parent 135083804a
commit 76cfb78880
2 changed files with 3 additions and 2 deletions

View File

@@ -12,7 +12,8 @@
std::shared_ptr<Database> loadInputs( int nprocs )
{
auto db = std::make_shared<Database>( "Domain.in" );
//auto db = std::make_shared<Database>( "Domain.in" );
auto db = std::make_shared<Database>();
db->putScalar<int>( "BC", 0 );
db->putVector<int>( "nproc", { 1, 1, 1 } );
db->putVector<int>( "n", { 100, 100, 100 } );