2: #include <AMReX.H> 3: #include "MyTest.H" 5: int main(int argc, char *argv[]) 6: { 7: amrex::Initialize(argc, argv); 9: { 10: BL_PROFILE("main"); 11: MyTest mytest; 12: for (int i = 0; i < 1; ++i) { 13: mytest.solve(); 14: mytest.writePlotfile(); 15: } 16: } 18: amrex::Finalize(); 19: }