Hi,I got both the MD and the BD to work, but there is something I don't understand about the wlc.If I set it up and like this (with both MD and BD):l_max = 100.0lp = 5.0wlc = IMP.misc.WormLikeChain(l_max, lp)sd = IMP.core.SphereDistancePairScore(wlc)crw = IMP.container.PairsRestraint(sd, cpc)crw.set_weight(kforce)m.add_restraint(crw)And then check the l_max and lp values with:sl_max = wlc.evaluate_with_derivative(l_max)slp = wlc.evaluate_with_derivative(lp)print "l_max %f\nlp %f" % (sl_max[0], slp[0])I get "out of scale" values, even if wlc is the only score applied, e.g.:l_max 590.102905lp 0.022517Another thing that I noticed is that, apparently, only l_max has a influence on the final structure (it constrains the occupancy). Is that expected?