diff options
author | Jason Gross <jgross@mit.edu> | 2016-09-29 14:32:50 -0400 |
---|---|---|
committer | Jason Gross <jgross@mit.edu> | 2016-09-29 14:36:33 -0400 |
commit | 46daf37ed46397b03a30fa2d89b62ffcc2c8d166 (patch) | |
tree | aae47a61675ba940388ecc35e206c138f6cbaf17 /test-suite/output-modulo-time | |
parent | edb55a94fc5c0473e57f5a61c0c723194c2ff414 (diff) |
Set the default LtacProf cutoff to 2%
This was the original value from Tobias' code. When a user passes
-profile-ltac on the command line, or inserts [Show Ltac Profile] in the
document, the most useful default behavior is to not overload them with
useless information. When GUI clients want to display fancier profiling
information, there is no cost to the user to requiring them to specify
what cutoff they want. If the GUI client does not have any special
LtacProf handling, the most useful presentation is again the one that
cuts off the display at 2% total time.
Diffstat (limited to 'test-suite/output-modulo-time')
-rw-r--r-- | test-suite/output-modulo-time/ltacprof.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/output-modulo-time/ltacprof.v b/test-suite/output-modulo-time/ltacprof.v index d79451f0f..6611db70e 100644 --- a/test-suite/output-modulo-time/ltacprof.v +++ b/test-suite/output-modulo-time/ltacprof.v @@ -1,4 +1,4 @@ -(* -*- coq-prog-args: ("-emacs" "-profile-ltac") -*- *) +(* -*- coq-prog-args: ("-emacs" "-profile-ltac-cutoff" "0.0") -*- *) Ltac sleep' := do 100 (do 100 (do 100 idtac)). Ltac sleep := sleep'. |