/* JACOBI.H

   NOTES: Header file to be included in every module, that needs
	  to call jacobi().

*/
typedef unsigned dimension;
int jacobi();
void jacobi_set_max_iterations();

