! Example for PetscOptionsInsertFileYAML: Fortran Example program main #include use petscsys implicit none PetscErrorCode :: ierr character(len=256) :: filename PetscBool :: flg call PetscInitialize(PETSC_NULL_CHARACTER,ierr) if (ierr /= 0) then write(6,*)'Unable to initialize PETSc' stop endif call PetscOptionsGetString(PETSC_NULL_OPTIONS,PETSC_NULL_CHARACTER,"-f",filename,flg,ierr) if (flg) then call PetscOptionsInsertFileYAML(PETSC_COMM_WORLD,filename,PETSC_TRUE,ierr) end if call PetscOptionsView(PETSC_NULL_OPTIONS,PETSC_VIEWER_STDOUT_WORLD,ierr) call PetscFinalize(ierr) !/*TEST ! ! build: ! requires: yaml ! ! test: ! suffix: 1 ! requires: yaml ! args: -f petsc.yml -options_left 0 ! filter: egrep -v "(malloc_dump|malloc_test|saws_port_auto_select|display|check_pointer_intensity|error_output_stdout|nox)" ! localrunfiles: petsc.yml ! output_file: output/ex47_1.out ! ! test: ! suffix: 2 ! requires: yaml ! args: -options_file_yaml petsc.yml -options_left 0 ! filter: egrep -v "(malloc_dump|malloc_test|saws_port_auto_select|display|check_pointer_intensity|error_output_stdout|nox)" ! localrunfiles: petsc.yml ! output_file: output/ex47_2.out ! !TEST*/ end program main