printf("Functions filtered by support = %10d. (%6.2f %%)\n",p->nFunsFilteredBysupport,!p->nFunsFilteredBysupport?0:100.0*p->nFunsFilteredBysupport/p->nFunsTried);
printf("Functions not found in lib = %10d. (%6.2f %%)\n",p->nFunsNotFound,!p->nFunsNotFound?0:100.0*p->nFunsNotFound/p->nFunsTried);
printf("Functions founded = %10d. (%6.2f %%)\n",p->nFunsFound,!p->nFunsFound?0:100.0*p->nFunsFound/p->nFunsTried);
printf("Functions delay computed = %10d. Ratio = %6.2f.\n",p->nFunsDelayComput,!p->nFunsDelayComput?0:1.0*p->nFunsDelayComput/p->nFunsFound);