This is a simple program to solve a system of linear equations.  It uses
the RWVector C++ library package and the associated linpack routines.

To use, put the matrix (A) in a file, the right hand side(s) in
file(s), and call the program to see the results spewed to the file
names given.

Syntax:

solve -v [-A[pab]] [-x[pab]] [-b[pab]] AFile bFile1 xFile1 bFile2 xFile2 ...

The -v flag indicates "verbose" mode.  This causes A b and x to be 
printed to standard output.

The flags indicate the format of the input/output:
	'p' indicates "pretty-print" format (printTo(),scanFrom())
	'a' indicates ASCII internal format
	'b' indicates packed binary format
The three flags correspond to the matrix and two vectors in Ax=b.
