added 1e-10 floor to prevent div-by-zero
original commit: d54f51ab799849975ce2324b152bddf4191347d3
This commit is contained in:
parent
abf6fff5ea
commit
352284953b
|
@ -10,7 +10,7 @@
|
|||
(define *-node (profile-*-node profile))
|
||||
(define hidden (get-hidden profile hide-self% hide-subs%))
|
||||
(define nodes (remq* hidden (profile-nodes profile)))
|
||||
(define total-time (profile-total-time profile))
|
||||
(define total-time (max 1e-20 (profile-total-time profile)))
|
||||
(define node->
|
||||
(let ([t (make-hasheq)])
|
||||
(for ([node (in-list nodes)] [idx (in-naturals 1)])
|
||||
|
|
Loading…
Reference in New Issue
Block a user