This is an archive of software for the Falstaff project
It consists of 4 files:

-rw-r--r--   1 roger        1140 Jul  1 08:47 mc.s
-rw-r--r--   1 roger        1208 Jul  1 08:47 s.fns
-rw-r--r--   1 roger         893 Jul  1 08:47 solve.r
-rw-r--r--   1 roger         417 Jul  1 08:47 swindle.r

It is presumed that interested hacker is familiar with
Splus.  Steps:

1.  Compile the .r functions on sparc:

		f77 -c solve.r swindle.r

2. Make a load module:

	ld -r -dn -o falstaff.o solve.o swindle.o -L/usr/local/lib -lSport

won't work unless you have the BTL port library as accessible as Sport.

3.  In Splus:

	dynload("falstaff.o")	#dynamically loads the fortran stuff
	source("s.fns")  # puts the required S functions in the current .Data
	source(mc.s")	#runs the monte.carlo

That's it!
