You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.h 290 B

12345678910111213
  1. #ifndef TEST_CONFIG_H
  2. #define TEST_CONFIG_H
  3. // error bound for single and single complex routines
  4. #define SINGLE_ERR_BOUND 1e-4
  5. // error bound for double an double complex routines
  6. #define DOUBLE_ERR_BOUND 1e-13
  7. // size of test matrices
  8. #define TEST_SIZE 100
  9. #endif /* TEST_CONFIG_H */