From: Han-Wen Nienhuys Date: Wed, 24 Jan 2007 02:01:09 +0000 (+0100) Subject: tune down time factor for output distance further X-Git-Tag: release/2.11.14-1~48 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a3d943d96f4a95204e05c0ef2dddfefabdbb62ac;p=lilypond.git tune down time factor for output distance further --- diff --git a/buildscripts/output-distance.py b/buildscripts/output-distance.py index e56b1e477d..ebc8395f62 100644 --- a/buildscripts/output-distance.py +++ b/buildscripts/output-distance.py @@ -508,12 +508,12 @@ class ProfileFileLink (FileCompareLink): note_info, self.contents[oldnew]) dist = 0.0 - factor = {'time': 2.0 , + factor = {'time': 1.0 , 'cells': 5.0, } for k in ('time', 'cells'): - real_val = math.tan (self.get_ratio (k) * 0.5* math.pi) + real_val = math.tan (self.get_ratio (k) * 0.5 * math.pi) dist += math.exp (math.fabs (real_val) * factor[k]) - 1 dist = min (dist, 100)