Skip to content
Snippets Groups Projects
Commit 9c77e30c authored by Pavel Kus's avatar Pavel Kus
Browse files

correcting != to /= in fortran doxygen

parent d91362dc
No related branches found
No related tags found
No related merge requests found
......@@ -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
!>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment