let remaining compute =
if not quiet then
let r, post = compute () in
if post_strategy = 0 then
printf "%s@{<dim>%d remaining@}\n@."
(String.make (Pretty.vt_width - 10 - nb_digits r) ' ') r
else
let tot = r + post in
printf "%s@{<dim>%d (%d+%d) remaining@}\n@."
(String.make (Pretty.vt_width - 14 - (nb_digits r) -
(nb_digits post) - (nb_digits tot)) ' ')
tot r post