File: slamch-test.c

package info (click to toggle)
vxl 1.17.0.dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 153,280 kB
  • ctags: 105,123
  • sloc: cpp: 747,420; ansic: 209,130; fortran: 34,230; lisp: 14,915; sh: 6,187; python: 5,856; makefile: 340; perl: 294; xml: 160
file content (18 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* slamch-test.c -- Written by Peter Vanroose, 9 November 2003 */
#include "v3p_netlib.h"
#include <stdio.h>

int main(void)
{
    printf("eps  = %g\n", v3p_netlib_slamch_("E", 1));
    printf("sfmin= %g\n", v3p_netlib_slamch_("S", 1));
    printf("base = %g\n", v3p_netlib_slamch_("B", 1));
    printf("prec = %g\n", v3p_netlib_slamch_("P", 1));
    printf("t    = %g\n", v3p_netlib_slamch_("N", 1));
    printf("rnd  = %g\n", v3p_netlib_slamch_("R", 1));
    printf("emin = %g\n", v3p_netlib_slamch_("M", 1));
    printf("rmin = %g\n", v3p_netlib_slamch_("U", 1));
    printf("emax = %g\n", v3p_netlib_slamch_("L", 1));
    printf("rmax = %g\n", v3p_netlib_slamch_("O", 1));
    return 0;
}