Lines Matching refs:problem_functions
47 ProblemFunctions problem_functions; // Setup functions for each problem in main() local
86 PetscCall(PetscCalloc1(1, &problem_functions)); in main()
87 PetscCall(RegisterProblems(problem_functions)); in main()
103 PetscCall(PetscFunctionListFind(problem_functions->setupPhysics, app_ctx->name, &SetupPhysics)); in main()
107 …PetscCall(PetscFunctionListFind(problem_functions->setupSmootherPhysics, app_ctx->name, &SetupSmoo… in main()
248 …PetscCall(PetscFunctionListFind(problem_functions->setupLibceedFineLevel, app_ctx->name, &SetupLib… in main()
271 …PetscCall(PetscFunctionListFind(problem_functions->setupLibceedLevel, app_ctx->name, &SetupLibceed… in main()
863 PetscCall(PetscFunctionListDestroy(&problem_functions->setupPhysics)); in main()
864 PetscCall(PetscFunctionListDestroy(&problem_functions->setupSmootherPhysics)); in main()
865 PetscCall(PetscFunctionListDestroy(&problem_functions->setupLibceedFineLevel)); in main()
866 PetscCall(PetscFunctionListDestroy(&problem_functions->setupLibceedLevel)); in main()
873 PetscCall(PetscFree(problem_functions)); in main()