Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
fleur
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
57
Issues
57
List
Boards
Labels
Milestones
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
fleur
fleur
Commits
5f27a13c
Commit
5f27a13c
authored
May 09, 2019
by
Daniel Wortmann
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix for last commit
parent
d6c67ae8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
forcetheorem/dmi.F90
forcetheorem/dmi.F90
+2
-1
forcetheorem/jij.F90
forcetheorem/jij.F90
+1
-1
forcetheorem/mae.F90
forcetheorem/mae.F90
+2
-1
forcetheorem/ssdisp.F90
forcetheorem/ssdisp.F90
+2
-1
No files found.
forcetheorem/dmi.F90
View file @
5f27a13c
...
...
@@ -65,6 +65,7 @@ CONTAINS
LOGICAL
FUNCTION
dmi_next_job
(
this
,
lastiter
,
atoms
,
noco
)
USE
m_types_setup
USE
m_xmlOutput
USE
m_constants
IMPLICIT
NONE
CLASS
(
t_forcetheo_dmi
),
INTENT
(
INOUT
)::
this
LOGICAL
,
INTENT
(
IN
)
::
lastiter
...
...
@@ -73,7 +74,7 @@ CONTAINS
TYPE
(
t_noco
),
INTENT
(
INOUT
)
::
noco
INTEGER
::
itype
IF
(
.NOT.
lastiter
)
THEN
dmi_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
noco
)
dmi_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
atoms
,
noco
)
RETURN
ENDIF
!OK, now we start the DMI-loop
...
...
forcetheorem/jij.F90
View file @
5f27a13c
...
...
@@ -118,7 +118,7 @@ CONTAINS
INTEGER
::
n
IF
(
.NOT.
lastiter
)
THEN
jij_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
noco
)
jij_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
atoms
,
noco
)
RETURN
ENDIF
...
...
forcetheorem/mae.F90
View file @
5f27a13c
...
...
@@ -64,6 +64,7 @@ CONTAINS
LOGICAL
FUNCTION
mae_next_job
(
this
,
lastiter
,
atoms
,
noco
)
USE
m_types_setup
USE
m_xmlOutput
USE
m_constants
IMPLICIT
NONE
CLASS
(
t_forcetheo_mae
),
INTENT
(
INOUT
)::
this
LOGICAL
,
INTENT
(
IN
)
::
lastiter
...
...
@@ -71,7 +72,7 @@ CONTAINS
!Stuff that might be modified...
TYPE
(
t_noco
),
INTENT
(
INOUT
)
::
noco
IF
(
.NOT.
lastiter
)
THEN
mae_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
noco
)
mae_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
atoms
,
noco
)
RETURN
ENDIF
!OK, now we start the MAE-loop
...
...
forcetheorem/ssdisp.F90
View file @
5f27a13c
...
...
@@ -68,6 +68,7 @@ CONTAINS
LOGICAL
FUNCTION
ssdisp_next_job
(
this
,
lastiter
,
atoms
,
noco
)
USE
m_types_setup
USE
m_xmlOutput
USE
m_constants
IMPLICIT
NONE
CLASS
(
t_forcetheo_ssdisp
),
INTENT
(
INOUT
)::
this
LOGICAL
,
INTENT
(
IN
)
::
lastiter
...
...
@@ -76,7 +77,7 @@ CONTAINS
TYPE
(
t_noco
),
INTENT
(
INOUT
)
::
noco
INTEGER
::
itype
IF
(
.NOT.
lastiter
)
THEN
ssdisp_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
noco
)
ssdisp_next_job
=
this
%
t_forcetheo
%
next_job
(
lastiter
,
atoms
,
noco
)
RETURN
ENDIF
!OK, now we start the SSDISP-loop
...
...
Vasily Tseplyaev
@tsep
mentioned in issue
#233 (closed)
·
May 09, 2019
mentioned in issue
#233 (closed)
mentioned in issue #233
Toggle commit list
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