
	This is testing programs to test Ada binding of LAPACK. Each test
program is simply test one specific case. We want to make sure that our
interface work correctly, not all functional of LAPACK. 

	Type "make" to create test programs, there should not be any error
in this stage. If any error, check Install instruction.

	Type "make testing" to run test program. The result file will be
created, namely Test.Out, in each directory. 

	Type "make clean" to clear all programs that we generated.

Test methode
============

	LIN: Linear Equations is the equation

			A x = B 

	From given A and B, call Fortran subroutine to compute x and verify
by compute absolute error from  | B - A x | for each element of matric B. 
( Because we compute real number, so equality test is not suitable. )

	LLS: Linear Least Squares Problem is the equation

		Minimize || b - A x ||2
		   x

		For special case, A is n x n metric, so that we can verify
as LIN.

	EIV: Eigen Value problem is 

			A v = lamda v

	From given A, compute v and lamda. Verify |(A v) - (lamda v)|
should be small. 


The testing Result  (Test.Out)
==================

LIN, LLS, EIV

	Each program should print out 
	
		Abs Error : x.xxx

	Where x.xxx is some small real number. It value should be in order 
1E-5 or less in real number case and 1E-13 in double precision number case.

	If there is the ERROR line, it's mean our input value is not
correct, we will modify later.

