@@ -30,7 +30,7 @@ void frolladaptivefun(rollfun_t rfun, unsigned int algo, const double *x, uint64
3030 if (algo == 0 && verbose ) {
3131 //frolladaptivemaxFast(x, nx, ans, k, fill, narm, hasnf, verbose); // frolladaptivemaxFast does not exists as of now
3232 snprintf (end (ans -> message [0 ]), 500 , _ ("%s: algo fast not implemented, fall back to exact\n" ), __func__ );
33- //set algo to 1 to print exact instead of fast in snprinf "fun %s" (line 93 )
33+ //set algo to 1 to print exact instead of fast in snprinf "fun %s" (Last snprintf in this function )
3434 algo = 1 ;
3535 }
3636 frolladaptivemaxExact (x , nx , ans , k , fill , narm , hasnf , verbose );
@@ -39,7 +39,7 @@ void frolladaptivefun(rollfun_t rfun, unsigned int algo, const double *x, uint64
3939 if (algo == 0 && verbose ) {
4040 //frolladaptiveminFast(x, nx, ans, k, fill, narm, hasnf, verbose); // frolladaptiveminFast does not exists as of now
4141 snprintf (end (ans -> message [0 ]), 500 , _ ("%s: algo fast not implemented, fall back to exact\n" ), __func__ );
42- //set algo to 1 to print exact instead of fast in snprinf "fun %s" (line 93 )
42+ //set algo to 1 to print exact instead of fast in snprinf "fun %s" (Last snprintf in this function )
4343 algo = 1 ;
4444 }
4545 frolladaptiveminExact (x , nx , ans , k , fill , narm , hasnf , verbose );
0 commit comments