Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Ohlmann
elpa
Commits
9c77e30c
Commit
9c77e30c
authored
Jul 27, 2019
by
Pavel Kus
Browse files
correcting != to /= in fortran doxygen
parent
d91362dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/elpa.F90
View file @
9c77e30c
...
...
@@ -116,13 +116,13 @@
!> stop
!> endif
!> elpa => elpa_allocate(success)
!> if (success
!
= ELPA_OK) then
!> if (success
/
= ELPA_OK) then
!> print *,"Could not allocate ELPA"
!> endif
!>
!> ! set parameters decribing the matrix and it's MPI distribution
!> call elpa%set("na", na, success, success)
!> if (success
!
= ELPA_OK) then
!> if (success
/
= ELPA_OK) then
!> print *,"Could not set entry"
!> endif
!> call elpa%set("nev", nev, success, success)
...
...
@@ -139,7 +139,7 @@
!>
!> ! set up the elpa object
!> success = elpa%setup()
!> if (succes
!
= ELPA_OK) then
!> if (succes
/
= ELPA_OK) then
!> print *,"Could not setup ELPA object"
!> endif
!>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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