Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elpa
elpa
Commits
c19db92b
Commit
c19db92b
authored
May 23, 2017
by
Andreas Marek
Browse files
Doxygen documentation for elpa.F90
parent
4ae5f0dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/elpa.F90
View file @
c19db92b
...
...
@@ -48,6 +48,7 @@
! The ELPA public API
!> \brief Fortran module to use the ELPA library. No other module shoule be used
module
elpa
use
elpa_constants
use
elpa_api
...
...
@@ -58,13 +59,20 @@ module elpa
contains
!> \brief function to allocate an ELPA instance
!> Parameters
!> \details
!> \result obj class(elpa_t), pointer : pointer to allocated object
function
elpa_allocate
()
result
(
obj
)
use
elpa_impl
class
(
elpa_t
),
pointer
::
obj
obj
=>
elpa_impl_allocate
()
end
function
!> \brief function to deallocate an ELPA instance
!> Parameters
!> \details
!> \param obj class(elpa_t), pointer : pointer to object to be destroyed and deallocated
subroutine
elpa_deallocate
(
obj
)
class
(
elpa_t
),
pointer
::
obj
call
obj
%
destroy
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment