 
/* compile with gcc -lm -o test.e r1279.c test.c */

#include <stdio.h>
#include "r1279.h"
#include "math.h"

int main()
{
    int i; 
    long N = 100;  	/* max 2000000000 */
    long seed = 12345;	/* enter the seed here */

    setr1279(seed);

    for (i=0; i < N; i++) {
	printf("%f\n",r1279());
    }
    return 0;
}
