From 0582fd859b6b80ec7dfb820faef758a22ed34f5f Mon Sep 17 00:00:00 2001 From: Yoo Date: Mon, 15 Jul 2024 15:32:39 -0700 Subject: [PATCH] White space error fixed --- ExampleCodes/EB/STLtest/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ExampleCodes/EB/STLtest/main.cpp b/ExampleCodes/EB/STLtest/main.cpp index 46941db7..3cbdaab6 100644 --- a/ExampleCodes/EB/STLtest/main.cpp +++ b/ExampleCodes/EB/STLtest/main.cpp @@ -49,16 +49,15 @@ int main (int argc, char* argv[]) DistributionMapping dm(ba); int required_coarsening_level = 0; // typically the same as the max AMR level index - int max_coarsening_level = 0; // typically a huge number so MG coarsens as much as possible + int max_coarsening_level = 0; // typically a huge number so MG coarsens as much as possible // build a simple geometry using the "eb2." parameters in the inputs file EB2::Build(geom, required_coarsening_level, max_coarsening_level); std::string pltfile; auto const& factory = makeEBFabFactory(geom, ba, dm, {1,1,1}, EBSupport::full); MultiFab const& vfrc = factory->getVolFrac(); - MultiFab object(ba,dm,1,0); - object.setVal(1.0); - + MultiFab object(ba,dm,1,0); + object.setVal(1.0); MultiFab::Subtract(object, vfrc, 0,0,1,0); amrex::WriteMLMF("plt", {&object}, {geom}); }