Search for "startTimingProcess" in src/interp, and you'll find that "print" is timed but it will never be printed by ")set message time long".
So adding it to "$interpreterTimedNames". - Qian diff --git a/src/interp/g-timer.boot b/src/interp/g-timer.boot index 3b361422..281c3b33 100644 --- a/src/interp/g-timer.boot +++ b/src/interp/g-timer.boot @@ -141,6 +141,7 @@ DEFPARAMETER($interpreterTimedNames, '( (other 3 . O) _ (diskread 3 . K) _ (resolve 1 . R) _ + (print 3 . P) _ )) DEFPARAMETER($interpreterTimedClasses, '( -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to fricas-devel+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/fricas-devel/2087aa87-679f-4490-977f-606a9c596dc8%40gmail.com.