xref: /petsc/src/tao/ftn-mod/petsctaomod.F90 (revision 6dd63270497ad23dcf16ae500a87ff2b2a0b7474)
1*6dd63270SBarry Smith        module petsctaodef
2*6dd63270SBarry Smith        use petsckspdef
3*6dd63270SBarry Smith
4*6dd63270SBarry Smith#include <../ftn/tao/petscall.h>
5*6dd63270SBarry Smith        end module petsctaodef
6*6dd63270SBarry Smith
7*6dd63270SBarry Smith        module petsctao
8*6dd63270SBarry Smith        use petscts
9*6dd63270SBarry Smith        use petsctaodef
10*6dd63270SBarry Smith
11*6dd63270SBarry Smith#include <../ftn/tao/petscall.h90>
12*6dd63270SBarry Smith
13*6dd63270SBarry Smith        contains
14*6dd63270SBarry Smith
15*6dd63270SBarry Smith#include <../ftn/tao/petscall.hf90>
16*6dd63270SBarry Smith
17*6dd63270SBarry Smith        end module petsctao
18*6dd63270SBarry Smith
19*6dd63270SBarry Smith! The all encompassing petsc module
20*6dd63270SBarry Smith
21*6dd63270SBarry Smith        module petsc
22*6dd63270SBarry Smith        use petsctao
23*6dd63270SBarry Smith        use petscao
24*6dd63270SBarry Smith        use petscpf
25*6dd63270SBarry Smith        use petscdmplex
26*6dd63270SBarry Smith        use petscdmswarm
27*6dd63270SBarry Smith        use petscdmnetwork
28*6dd63270SBarry Smith        use petscdmda
29*6dd63270SBarry Smith        use petscdmcomposite
30*6dd63270SBarry Smith        use petscdmforest
31*6dd63270SBarry Smith        use petsccharacteristic
32*6dd63270SBarry Smith        use petscbag
33*6dd63270SBarry Smith        end module petsc
34