Lines Matching refs:option_set
37 PetscBool option_set = PETSC_FALSE; in ProcessCommandLineOptions() local
75 &app_ctx->checkpoint_interval, &option_set)); in ProcessCommandLineOptions()
76 if (option_set) app_ctx->checkpoint_vtk = PETSC_TRUE; in ProcessCommandLineOptions()
93 sizeof(app_ctx->cont_file), &option_set)); in ProcessCommandLineOptions()
94 …if (!option_set) PetscCall(PetscSNPrintf(app_ctx->cont_file, sizeof app_ctx->cont_file, "%s/ns-sol… in ProcessCommandLineOptions()
95 if (option_set && app_ctx->cont_steps == 0) app_ctx->cont_steps = -1; // Read time from file in ProcessCommandLineOptions()
99 … app_ctx->cont_time_file, sizeof(app_ctx->cont_time_file), &option_set)); in ProcessCommandLineOptions()
100 …if (!option_set) PetscCall(PetscSNPrintf(app_ctx->cont_time_file, sizeof app_ctx->cont_time_file, … in ProcessCommandLineOptions()
109 PetscBool option_set; in ProcessCommandLineOptions() local
112 sizeof(amat_type), &option_set)); in ProcessCommandLineOptions()
113 if (option_set) PetscCall(PetscStrallocpy(amat_type, (char **)&app_ctx->amat_type)); in ProcessCommandLineOptions()
116 PetscBool option_set; in ProcessCommandLineOptions() local
117 PetscCall(PetscOptionsHasName(NULL, NULL, "-pmat_pbdiagonal", &option_set)); in ProcessCommandLineOptions()
118 …if (option_set) PetscCall(PetscPrintf(comm, "Warning! -pmat_pbdiagonal no longer used. Pmat assemb… in ProcessCommandLineOptions()