History log of /petsc/src/sys/objects/ftn-custom/zoptionsf.c (Results 1 – 25 of 180)
Revision Date Author Comments
# fe7aa59f 22-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-08-31/fix-hypre-default-setting-reset-to-same' into 'main'

Fixes the bug with hypre whan user changes to parameters are ignored

See merge request petsc/petsc!8678


# 4d81f786 01-Sep-2025 Barry Smith <bsmith@mcs.anl.gov>

Add PetscOptionsBool3()


# b0dcfd16 23-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-03-20/minor-fortran-cleanup' into 'main'

Minor cleanup of Fortran binding stuff to simplify future maintainance

See merge request petsc/petsc!8218


# 6dd63270 20-Mar-2025 Barry Smith <bsmith@mcs.anl.gov>

Minor cleanup of Fortran binding stuff to simplify future maintainance

There is no distinction between F90 and non-F90 code so combine ftn-custom and f90-custom directories and fortranimpl.h and f90

Minor cleanup of Fortran binding stuff to simplify future maintainance

There is no distinction between F90 and non-F90 code so combine ftn-custom and f90-custom directories and fortranimpl.h and f90impl.h files. Also move uses of f90 to ftn when simple

show more ...


# 6d8694c4 20-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-04-29/add-fortran-enums' into 'main'

Major updates to Fortran interface

See merge request petsc/petsc!7517


# ce78bad3 20-Feb-2025 Barry Smith <bsmith@petsc.dev>

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous ve

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous versions!
- also clean up inconsistent PETSc code detected by new Fortran generation tools
- drop use of bfort
- automatically generate all the Fortran PETSc objects, enums etc from the include files
- generate most of the Fortran interface definitions and functions from the source code
- simplify the number and organization of Fortran modules

Co-authored-by: Jose E. Roman <jroman@dsic.upv.es>

show more ...


# d8e47b63 17-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-09-02/rebased-fix-conversion-warnings' into 'main'

Compiler finds (and forbid) casts from higher precision integers to lower

See merge request petsc/petsc!7806


# 1690c2ae 10-Sep-2024 Barry Smith <bsmith@mcs.anl.gov>

Change from deprecated PETSC_MAX/MIN_INT to PETSC_INT_MAX/MIN

Commit-type: i.e. error-checking, optimization, bug-fix, portability-fix, testing-fix, style-fix, feature, documentation, example
Funded

Change from deprecated PETSC_MAX/MIN_INT to PETSC_INT_MAX/MIN

Commit-type: i.e. error-checking, optimization, bug-fix, portability-fix, testing-fix, style-fix, feature, documentation, example
Funded-by:
Project:
Time: hours
Reported-by:
Thanks-to:
Development Tools: Vim, Emacs, Eclipse

show more ...


# eca7e54b 14-Jul-2024 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# eeb89c53 12-Jul-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'balay/fix-ftn-lowcase' into 'release'

ftn: fix typos with lowercase mangling.

See merge request petsc/petsc!7687


# 47582d61 11-Jul-2024 Satish Balay <balay@mcs.anl.gov>

ftn: fix typos with lowercase mangling.

Reproduced with:
./config/examples/arch-ci-mswin-opt-impi.py FPPFLAGS=-iface:cref


# a623e290 12-Jun-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-05-29/minor-fortran-stub-cleanup' into 'main'

More improvements to Fortran stubs and interfaces

See merge request petsc/petsc!7598


# 5d83a8b1 30-May-2024 Barry Smith <bsmith@mcs.anl.gov>

This requires some changes to user FORTRAN code

Pass PETSC_NULL_XXX_ARRAY when passing a NULL as an argument that is expecting an array
Pass PETSC_NULL_ENUM when argument returns an enum instead of

This requires some changes to user FORTRAN code

Pass PETSC_NULL_XXX_ARRAY when passing a NULL as an argument that is expecting an array
Pass PETSC_NULL_ENUM when argument returns an enum instead of PETSC_NULL_INTEGER
Pass arrays (and not scalar values) when the argument is expecting an array; this means replace, for example, the argument v with [v]
Use PetscObjectIsNull(obj) to check if the object is NULL, instead of obj == PETSC_NULL_XXX

The compiler will now automatically prevent you from using the wrong argument type for the first three bullets above
This will also require an update sowing with the new sowing branch this MR is using.

show more ...


# cef0416b 15-May-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-04-26/fix-sowing-viewers' into 'main'

Remove manual Fortran stubs for PetscViewer and PetscObject arguments since now handled by sowing

See merge request petsc/petsc!7511


# ffeef943 28-Apr-2024 Barry Smith <bsmith@mcs.anl.gov>

Update to sowing version that supports PetscViewer and PetscObject

Remove manual Fortran stubs for PetscViewer and PetscObject arguments since now handled by sowing

Also handles the passing of null

Update to sowing version that supports PetscViewer and PetscObject

Remove manual Fortran stubs for PetscViewer and PetscObject arguments since now handled by sowing

Also handles the passing of null objects correctly

show more ...


# 6e57e0df 25-Feb-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'balay/win32fe_cl' into 'main'

win32fe: rename wrapper scripts 'win_cl' to 'win32fe_cl' , and add in support for OneAPI compilers icx, ifx

See merge request petsc/petsc!7321


# c0eeb270 25-Feb-2024 Satish Balay <balay@mcs.anl.gov>

Fix sys/tutorials/ex9f.F90 windows/ifort build

ex9f.obj : error LNK2019: unresolved external symbol PETSCOPTIONSENUM referenced in function MAIN__
ex9f.obj : error LNK2019: unresolved external symbo

Fix sys/tutorials/ex9f.F90 windows/ifort build

ex9f.obj : error LNK2019: unresolved external symbol PETSCOPTIONSENUM referenced in function MAIN__
ex9f.obj : error LNK2019: unresolved external symbol PETSCOPTIONSSTRING referenced in function MAIN__

show more ...


# 0d818c7d 07-Feb-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-bounded-range-real' into 'main'

Sys: add PetscOptions[Bounded|Range]Real()

See merge request petsc/petsc!7269


# 52ce0ab5 07-Feb-2024 Pierre Jolivet <pierre@joliv.et>

Sys: add PetscOptions[Bounded|Range]Real()


# b230feb8 26-May-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-05-16/add-petscoptionsbegin-fortran' into 'main'

Provide PetscOptionsBegin/End and friends for Fortran

See merge request petsc/petsc!6473


# 4bb2516a 26-May-2023 Barry Smith <bsmith@mcs.anl.gov>

Provide PetscOptionsBegin/End and friends for Fortran


# a663c1df 13-Apr-2023 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# fafa7813 13-Apr-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-04-11/run-clang-format-on-ftn-custom/release' into 'release'

Format the ftn-custom files with clang-format. Apparently no particular reason we did not format them initially

Merge branch 'barry/2023-04-11/run-clang-format-on-ftn-custom/release' into 'release'

Format the ftn-custom files with clang-format. Apparently no particular reason we did not format them initially

See merge request petsc/petsc!6310

show more ...


# 5975b3b6 11-Apr-2023 Barry Smith <bsmith@mcs.anl.gov>

Format the ftn-custom files with clang-format. Apparently no particular reason we did not format them initially


# 75239d66 10-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'bourdin/PetscOptionsBindings' into 'main'

Fortran binding for PetscOptionsGetScalarArray and PetscOptionsGetBoolArray

See merge request petsc/petsc!5512


12345678