Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
IMAGINE
Commits
6426cb19
Commit
6426cb19
authored
Nov 17, 2017
by
Theo Steininger
Browse files
Added consistency check.
parent
a6f4c2dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
imagine/pipeline.py
View file @
6426cb19
...
...
@@ -151,7 +151,15 @@ class Pipeline(Loggable, object):
comm
.
send
(
cube_content
,
dest
=
i
,
tag
=
WORK_TAG
)
self
.
logger
.
debug
(
"Sent multinest-cube to nodes with rank > 0."
)
return
self
.
_core_likelihood
(
cube_content
)
error_count
=
0
while
error_count
<
5
:
likelihood
=
self
.
_core_likelihood
(
cube_content
)
if
likelihood
<
0
:
break
else
:
self
.
logger
.
error
(
"Positive log-likelihood value encountered!"
"Redoing calculation."
)
return
likelihood
def
_listen_for_likelihood_calls
(
self
):
status
=
MPI
.
Status
()
...
...
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