1!> \mainpage Modern Fortran wrappers for SCALAPACK, PBLAS, BLACS
2!!
3!! The open source library
4!! [SCALAPACKFX](<https://github.com/dftbplus/scalapackfx) is an effort to
5!! provide modern Fortran (Fortran 2003) wrappers around routines of the
6!! SCALAPACK, PBLAS and BLACS libraries to make their use as simple as possible.
7!!
8!! For more information see the following sources:
9!! * [Online documentation](https://github.com/dftbplus/scalapackfx)
10!!   for installation and usage of the library
11!! * [API documentation](annotated.html) for the reference manual.
12!! * [Project home page](https://github.com/dftbplus/scalapackfx)
13!!   for the source code, bug tracker and further information on the project.
14
15
16!> Exports the functionality of the ScaLAPACKFX library as one module.
17module libscalapackfx_module
18  use blacsfx_module
19  use pblasfx_module
20  use scalapackfx_module
21  use scalapackfx_tools_module
22  implicit none
23
24  public
25
26end module libscalapackfx_module
27