]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/profile-property-access.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / profile-property-access.ly
index 641c24fe70c092138b4bc1f9749819ef972684cc..be8016ffa563e99cdf638ca92326cceaa0254457 100644 (file)
@@ -1,22 +1,31 @@
+% -*- Scheme -*-
+
 \header {
-  texidoc = "This file profiles property accesses; the log file shows the top properties examined."
+  texidoc = "This file profiles property accesses; the log file shows the top properties examined.
+Note: lilypond must be compiled with --disable-optimising for this file to work."
 }
 
 
 #(ly:set-option 'profile-property-accesses #t)
 
-\version "2.10.8"
+\version "2.14.0"
 
-%\include "../../input/typography-demo.ly"
-\book { \score { {c4 } } }
+\include "typography-demo.ly"
+%\book { \score { {c4 } } }
 
-#(define (prop-stats>?  x y) (> (cdr x) (cdr y)))
+#(define (prop-stats>?  x y)
+  (cond
+   ((> (cdr x) (cdr y)) #t)
+   ((= (cdr x) (cdr y))
+    (symbol<? (car x) (car y)))
+   (else #f)))
 
 #(define (display-stats what)
   (let*
    ((count 50)
     (rnd 10)
-    (alist (hash-table->alist (ly:property-lookup-stats what)))
+    (round-to (lambda (x) (* rnd (inexact->exact (round (/ x rnd))))))
+    (alist (map (lambda (entry) (cons (car entry) (round-to (cdr entry)))) (hash-table->alist (ly:property-lookup-stats what))))
     (total (apply + (map cdr alist)))
    )
 
@@ -25,8 +34,8 @@
   (ly:progress "\n\n~A properties, top ~a rounded to ~a\n\n~a"
    what count rnd
    (string-join
-    (map (lambda (x) (format "~30a: ~6@a" (car x) (* rnd (inexact->exact (round (/ (cdr x) rnd))))))
-     (take 
+    (map (lambda (x) (format "~30a: ~6@a" (car x) (cdr x)))
+     (ly:truncate-list! 
     (sort alist prop-stats>?) count))
     "\n"))))