14 lines
		
	
	
		
			290 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			290 B
		
	
	
	
		
			C
		
	
	
	
#ifndef TEST_CONFIG_H
 | 
						|
#define TEST_CONFIG_H
 | 
						|
 | 
						|
// error bound for single and single complex routines
 | 
						|
#define SINGLE_ERR_BOUND 1e-4
 | 
						|
 | 
						|
// error bound for double an double complex routines
 | 
						|
#define DOUBLE_ERR_BOUND 1e-13
 | 
						|
 | 
						|
// size of test matrices
 | 
						|
#define TEST_SIZE 100
 | 
						|
 | 
						|
#endif /* TEST_CONFIG_H */
 |