| 340 | } |
| 341 | |
| 342 | amrex::AMReX* |
| 343 | amrex::Initialize (MPI_Comm mpi_comm, |
| 344 | std::ostream& a_osout, std::ostream& a_oserr, |
| 345 | ErrorHandler a_errhandler, int a_device_id) |
| 346 | { |
| 347 | int argc = 0; |
| 348 | char** argv = nullptr; |
| 349 | return Initialize(argc, argv, false, mpi_comm, {}, a_osout, a_oserr, |
| 350 | a_errhandler, a_device_id); |
| 351 | } |
| 352 | |
| 353 | amrex::AMReX* |
| 354 | amrex::Initialize (int& argc, char**& argv, |
nothing calls this directly
no test coverage detected