home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: PORNG */
-
- main()
-
- {
- int *fp,i,iflag,l,max;
- float p,r,s[7],y[8],x;
-
- r = 0.6;
- l = 3;
- max = 7;
- iflag = 1;
-
- *fp=fopen("PRN:","w"); /* open the printer */
-
- fprintf(*fp,"Test Results from PORNG\n");
- printf("Test Results from PORNG\n\n");
-
- porng(l,max,iflag,&r,y,s,&x);
-
- fprintf(*fp," %15.10f \n",x);
- printf( " %15.10f \n",x);
-
- iflag = 0;
-
- for(i = 1; i <= 5; i++)
- {
- porng(l,max,iflag,&r,y,s,&x);
-
- fprintf(*fp," %15.10f \n",x);
- printf( " %15.10f \n",x);
- }
- }
-