- Print states in a more countable format.

This commit is contained in:
ccremers 2006-02-27 15:20:37 +00:00
parent c22173e5ee
commit bb16bd755e

View File

@ -33,8 +33,5 @@ statesSmallerThan (const states_t states, unsigned long int reflint)
__inline__ void
statesFormat (const states_t states)
{
if (states < 1000000)
eprintf ("%lu", states);
else
eprintf ("%.3e", statesDouble (states));
eprintf ("%lu", states);
}