From 14614289c35ce5211c506f5e111df1f200d9b05f Mon Sep 17 00:00:00 2001
From: Ben Webb <ben@salilab.org>
Date: Wed, 11 Mar 2020 13:35:04 -0700
Subject: [PATCH] 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.
---
 src/GaussianEMRestraint.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/GaussianEMRestraint.cpp b/src/GaussianEMRestraint.cpp
index ab49a55..8d2f715 100755
--- a/src/GaussianEMRestraint.cpp
+++ b/src/GaussianEMRestraint.cpp
@@ -298,7 +298,6 @@ RestraintInfo *GaussianEMRestraint::get_dynamic_info() const {
   IMP_NEW(RestraintInfo, ri, ());
   Float scale = IMP::isd::Scale(get_model(), global_sigma_).get_scale();
   ri->add_float("global sigma", scale);
-  ri->add_float("score", get_last_score());
   return ri.release();
 }
 
-- 
GitLab