www.mooseframework.org
Functions
main.C File Reference

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 21 of file main.C.

22 {
23  // Initialize MPI, solvers and MOOSE
24  MooseInit init(argc, argv);
25 
26  // Register this application's MooseApp and any it depends on
28 
29  // Create an instance of the application and store it in a smart pointer for easy cleanup
30  std::shared_ptr<MooseApp> app =
31  AppFactory::createAppShared("ExternalPetscSolverTestApp", argc, argv);
32 
33  // Execute the application
34  app->run();
35 
36  return 0;
37 }
ExternalPetscSolverTestApp::registerApps
static void registerApps()
Definition: ExternalPetscSolverTestApp.C:48