Code coverage tests

This page documents the degree to which the PARI/GP source code is tested by our public test suite, distributed with the source distribution in directory src/test/. This is measured by the gcov utility; we then process gcov output using the lcov frond-end.

We test a few variants depending on Configure flags on the pari.math.u-bordeaux.fr machine (x86_64 architecture), and agregate them in the final report:

The target is to exceed 90% coverage for all mathematical modules (given that branches depending on DEBUGLEVEL or DEBUGMEM are not covered). This script is run to produce the results below.

LCOV - code coverage report
Current view: top level - graph - plottty.c (source / functions) Hit Total Coverage
Test: PARI/GP v2.18.1 lcov report (development 30074-db9b3c0519) Lines: 88 88 100.0 %
Date: 2025-03-13 08:38:27 Functions: 8 8 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* Copyright (C) 2016  The PARI group.
       2             : 
       3             : This file is part of the PARI/GP package.
       4             : 
       5             : PARI/GP is free software; you can redistribute it and/or modify it under the
       6             : terms of the GNU General Public License as published by the Free Software
       7             : Foundation; either version 2 of the License, or (at your option) any later
       8             : version. It is distributed in the hope that it will be useful, but WITHOUT
       9             : ANY WARRANTY WHATSOEVER.
      10             : 
      11             : Check the License for details. You should have received a copy of it, along
      12             : with the package; see the file 'COPYING'. If not, write to the Free Software
      13             : Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
      14             : 
      15             : #include "pari.h"
      16             : #include "paripriv.h"
      17             : 
      18             : /********************************************************************/
      19             : /**                                                                **/
      20             : /**                         LOW-RES PLOT                           **/
      21             : /**                                                                **/
      22             : /********************************************************************/
      23             : #define ISCR 64
      24             : #define JSCR 22
      25             : 
      26             : INLINE long
      27        1792 : DTOL(double t) { return (long)(t + 0.5); }
      28             : 
      29             : static char
      30        1792 : PICT(long j) {
      31        1792 :   switch(j%3) {
      32         824 :     case 0:  return '_';
      33         328 :     case 1:  return 'x';
      34         640 :     default: return '"';
      35             :   }
      36             : }
      37             : static char
      38          28 : PICTZERO(long j) {
      39          28 :   switch(j%3) {
      40           8 :     case 0:  return ',';
      41          10 :     case 1:  return '-';
      42          10 :     default: return '`';
      43             :   }
      44             : }
      45             : 
      46             : static char *
      47          56 : dsprintf9(double d, char *buf)
      48             : {
      49          56 :   int i = 10;
      50             : 
      51         106 :   while (--i >= 0) {
      52         106 :     sprintf(buf, "%9.*g", i, d);
      53         106 :     if (strlen(buf) <= 9) break;
      54             :   }
      55          56 :   return buf;
      56             : }
      57             : 
      58             : typedef unsigned char screen[ISCR+1][JSCR+1];
      59             : 
      60             : static void
      61        1764 : fill_gap(screen scr, long i, int jnew, int jpre)
      62             : {
      63             :   int mid, i_up, i_lo, up, lo;
      64             : 
      65        1764 :   if (jpre < jnew - 2) {
      66          52 :     up = jnew - 1; i_up = i;
      67          52 :     lo = jpre + 1; i_lo = i - 1;
      68        1712 :   } else if (jnew < jpre - 2) {
      69          76 :     up = jpre - 1; i_up = i - 1;
      70          76 :     lo = jnew + 1; i_lo = i;
      71        1636 :   } else return; /* if gap < 2, leave it as it is. */
      72             : 
      73         128 :   mid = (jpre+jnew)/2;
      74         128 :   if (mid>JSCR) mid=JSCR; else if (mid<0) mid=0;
      75         128 :   if (lo<0) lo=0;
      76         388 :   if (lo<=JSCR) while (lo <= mid) scr[i_lo][lo++] = ':';
      77         128 :   if (up>JSCR) up=JSCR;
      78         376 :   if (up>=0) while (up > mid) scr[i_up][up--] = ':';
      79             : }
      80             : 
      81             : static double
      82          56 : todbl(GEN x) { return rtodbl(gtofp(x, LOWDEFAULTPREC)); }
      83             : 
      84             : void
      85          28 : pariplot(void* E, GEN (*fun)(void *E, GEN x), GEN a, GEN b, GEN ysmlu,GEN ybigu, long prec)
      86             : {
      87          28 :   const char BLANK = ' ', YY = '|', XX_UPPER = '\'', XX_LOWER = '.';
      88             :   long jz, j, i, sig;
      89          28 :   pari_sp av = avma;
      90          28 :   int jnew, jpre = 0; /* for lint */
      91             :   GEN x, dx;
      92             :   double diff, dyj, ysml, ybig, y[ISCR+1];
      93             :   screen scr;
      94             :   char buf[80], z;
      95             : 
      96          28 :   sig=gcmp(b,a); if (!sig) return;
      97          28 :   if (sig<0) { x=a; a=b; b=x; }
      98          28 :   x = gtofp(a, prec);
      99          28 :   dx = divru(gtofp(gsub(b,a),prec), ISCR-1);
     100         644 :   for (j=1; j<=JSCR; j++) scr[1][j]=scr[ISCR][j]=YY;
     101        1764 :   for (i=2; i<ISCR; i++)
     102             :   {
     103        1736 :     scr[i][1]   = XX_LOWER;
     104        1736 :     scr[i][JSCR]= XX_UPPER;
     105       36456 :     for (j=2; j<JSCR; j++) scr[i][j] = BLANK;
     106             :   }
     107          28 :   ysml = ybig = 0.; /* -Wall */
     108        1820 :   for (i=1; i<=ISCR; i++)
     109             :   {
     110        1792 :     pari_sp av2 = avma;
     111        1792 :     y[i] = gtodouble( fun(E, x) );
     112        1792 :     set_avma(av2);
     113        1792 :     if (i == 1)
     114          28 :       ysml = ybig = y[1];
     115             :     else
     116             :     {
     117        1764 :       if (y[i] < ysml) ysml = y[i];
     118        1764 :       if (y[i] > ybig) ybig = y[i];
     119             :     }
     120        1792 :     x = addrr(x,dx);
     121             :   }
     122          28 :   set_avma(av);
     123          28 :   if (ysmlu) ysml = gtodouble(ysmlu);
     124          28 :   if (ybigu) ybig = gtodouble(ybigu);
     125          28 :   diff = ybig - ysml;
     126          28 :   if (!diff) { ybig += 1; diff= 1.; }
     127          28 :   dyj = ((JSCR-1)*3+2) / diff;
     128             :   /* work around bug in gcc-4.8 (32bit): plot(x=-5,5,sin(x)))) */
     129          28 :   jz = 3 - (long)(ysml*dyj + 0.5); /* 3 - DTOL(ysml*dyj) */
     130          28 :   z = PICTZERO(jz); jz /= 3;
     131        1820 :   for (i=1; i<=ISCR; i++)
     132             :   {
     133        1792 :     if (0<=jz && jz<=JSCR) scr[i][jz]=z;
     134        1792 :     j = 3 + DTOL((y[i]-ysml)*dyj);
     135        1792 :     jnew = j/3;
     136        1792 :     if (i > 1) fill_gap(scr, i, jnew, jpre);
     137        1792 :     if (0<=jnew && jnew<=JSCR) scr[i][jnew] = PICT(j);
     138        1792 :     jpre = jnew;
     139             :   }
     140          28 :   pari_putc('\n');
     141          28 :   pari_printf("%s ", dsprintf9(ybig, buf));
     142        1820 :   for (i=1; i<=ISCR; i++) pari_putc(scr[i][JSCR]);
     143          28 :   pari_putc('\n');
     144         588 :   for (j=(JSCR-1); j>=2; j--)
     145             :   {
     146         560 :     pari_puts("          ");
     147       36400 :     for (i=1; i<=ISCR; i++) pari_putc(scr[i][j]);
     148         560 :     pari_putc('\n');
     149             :   }
     150          28 :   pari_printf("%s ", dsprintf9(ysml, buf));
     151        1820 :   for (i=1; i<=ISCR; i++)  pari_putc(scr[i][1]);
     152          28 :   pari_putc('\n');
     153             :   {
     154             :     char line[10 + 32 + 32 + ISCR - 9];
     155          28 :     sprintf(line, "%10s%-9.7g%*.7g\n"," ",todbl(a),ISCR-9,todbl(b));
     156          28 :     pari_printf(line);
     157             :   }
     158             : }
     159             : 
     160             : void
     161          28 : pariplot0(GEN a, GEN b, GEN code, GEN ysmlu,GEN ybigu, long prec)
     162             : {
     163          28 :   push_lex(gen_0, code);
     164          28 :   pariplot((void*)code, &gp_eval, a, b, ysmlu, ybigu, prec);
     165          28 :   pop_lex(1);
     166          28 : }

Generated by: LCOV version 1.16