Lines Matching refs:options

19 static PetscErrorCode ProcessOptions(MPI_Comm comm, AppCtx *options)  in ProcessOptions()  argument
22 options->compare = PETSC_FALSE; in ProcessOptions()
23 options->compare_labels = PETSC_FALSE; in ProcessOptions()
24 options->distribute = PETSC_TRUE; in ProcessOptions()
25 options->field = PETSC_FALSE; in ProcessOptions()
26 options->reorder = PETSC_FALSE; in ProcessOptions()
27 options->format = PETSC_VIEWER_DEFAULT; in ProcessOptions()
28 options->second_write_read = PETSC_FALSE; in ProcessOptions()
29 options->use_low_level_functions = PETSC_FALSE; in ProcessOptions()
30 PetscCall(PetscStrncpy(options->ofname, "ex55.h5", sizeof(options->ofname))); in ProcessOptions()
33 …-compare", "Compare the meshes using DMPlexEqual()", "ex55.c", options->compare, &options->compare… in ProcessOptions()
34 …re labels in the meshes using DMCompareLabels()", "ex55.c", options->compare_labels, &options->com… in ProcessOptions()
35 …scOptionsBool("-distribute", "Distribute the mesh", "ex55.c", options->distribute, &options->distr… in ProcessOptions()
36 …OptionsBool("-field", "Layout a field over the mesh", "ex55.c", options->field, &options->field, N… in ProcessOptions()
37 …ool("-reorder", "Reorder the points in the section", "ex55.c", options->reorder, &options->reorder… in ProcessOptions()
38 …ing("-ofilename", "The output mesh file", "ex55.c", options->ofname, options->ofname, sizeof(optio… in ProcessOptions()
39 …rite and read", "ex55.c", PetscViewerFormats, (PetscEnum)options->format, (PetscEnum *)&options->f… in ProcessOptions()
40 …write_read", "Write and read for the 2nd time", "ex55.c", options->second_write_read, &options->se… in ProcessOptions()
41 …ow level functions for viewing and loading", "ex55.c", options->use_low_level_functions, &options-… in ProcessOptions()