Skip to content

Commit

Permalink
fix multi-res unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahdhn committed Oct 12, 2023
1 parent 880fe9d commit f91f0f3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void MultiResChild()
return id.x >= SectionX[1] && id.x < SectionX[2];
}},
Neon::domain::Stencil::s7_Laplace_t(),
descriptor);
descriptor, true, false);

auto XField = grid.newField<Type>("XField", 1, -1);
auto isRefinedField = grid.newField<Type>("isRefined", 1, -1);
Expand Down
2 changes: 1 addition & 1 deletion libNeonSkeleton/tests/unit/sUt_multiRes/src/MultiResDemo.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void MultiResDemo()
return false;
}},
Neon::domain::Stencil::s7_Laplace_t(),
descriptor);
descriptor, true, false);

std::stringstream s("mGridDemo", std::ios_base::app | std::ios_base::out);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void MultiResParent()
return id.x >= SectionX[1] && id.x < SectionX[2];
}},
Neon::domain::Stencil::s7_Laplace_t(),
descriptor);
descriptor, true, false);

auto XField = grid.newField<Type>("XField", 1, -1);
auto hasParentField = grid.newField<Type>("hasParent", 1, -1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void MultiResSkeleton()
return true;
}},
Neon::domain::Stencil::s7_Laplace_t(),
descriptor);
descriptor, true, false);

auto field = grid.newField<Type>("field", 3, -1);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void MultiResSameLevelStencil()
return true;
}},
Neon::domain::Stencil::s7_Laplace_t(),
descriptor);
descriptor, true, false);

auto XField = grid.newField<Type>("XField", 1, -1);
auto YField = grid.newField<Type>("YField", 1, -1);
Expand Down

0 comments on commit f91f0f3

Please sign in to comment.