File: recurse.h

package info (click to toggle)
gsl 2.8%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 29,088 kB
  • sloc: ansic: 269,984; sh: 4,535; makefile: 902; python: 69
file content (8 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
/* define how a problem is split recursively */
#define GSL_EIGEN_SPLIT(n)         ((n >= 16) ? ((n + 8) / 16) * 8 : n / 2)
#define GSL_EIGEN_SPLIT_COMPLEX(n) ((n >= 8) ? ((n + 4) / 8) * 4 : n / 2)

/* matrix size for crossover to Level 2 algorithms */
#define CROSSOVER              24
#define CROSSOVER_GENSYMM      CROSSOVER
#define CROSSOVER_GENHERM      CROSSOVER