Skip to content
Snippets Groups Projects
Commit 14614289 authored by Ben Webb's avatar Ben Webb
Browse files

We don't need to save the score

IMP.rmf already saves the score for each restraint,
so we don't need to add it explicitly.
parent db4977a4
No related branches found
No related tags found
No related merge requests found
...@@ -298,7 +298,6 @@ RestraintInfo *GaussianEMRestraint::get_dynamic_info() const { ...@@ -298,7 +298,6 @@ RestraintInfo *GaussianEMRestraint::get_dynamic_info() const {
IMP_NEW(RestraintInfo, ri, ()); IMP_NEW(RestraintInfo, ri, ());
Float scale = IMP::isd::Scale(get_model(), global_sigma_).get_scale(); Float scale = IMP::isd::Scale(get_model(), global_sigma_).get_scale();
ri->add_float("global sigma", scale); ri->add_float("global sigma", scale);
ri->add_float("score", get_last_score());
return ri.release(); return ri.release();
} }
......
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