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
ift
NIFTy
Commits
e06859b7
Commit
e06859b7
authored
Aug 19, 2019
by
Philipp Arras
Browse files
Add convergence level output to new Controller
parent
30266333
Pipeline
#53965
passed with stages
in 8 minutes and 18 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
nifty5/minimization/iteration_controllers.py
View file @
e06859b7
...
...
@@ -346,8 +346,9 @@ class AbsDeltaEnergyController(IterationController):
# report
if
self
.
_name
is
not
None
:
logger
.
info
(
"{}: Iteration #{} energy={:.6E} diff={:.6E} crit={:.6E}"
.
format
(
self
.
_name
,
self
.
_itcount
,
Eval
,
diff
,
self
.
_deltaE
))
"{}: Iteration #{} energy={:.6E} diff={:.6E} crit={:.6E} clvl={}"
.
format
(
self
.
_name
,
self
.
_itcount
,
Eval
,
diff
,
self
.
_deltaE
,
self
.
_ccount
))
# Are we done?
if
self
.
_iteration_limit
is
not
None
:
...
...
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