Algorithm-LibLinear

 view release on metacpan or  search on metacpan

src/liblinear/blas/blas.h  view on Meta::CPAN

/* Data types specific to BLAS implementation */
typedef struct { float r, i; } fcomplex;
typedef struct { double r, i; } dcomplex;
typedef int blasbool;

#include "blasp.h"    /* Prototypes for all BLAS functions */

#define FALSE 0
#define TRUE  1

/* Macro functions */
#define MIN(a,b) ((a) <= (b) ? (a) : (b))
#define MAX(a,b) ((a) >= (b) ? (a) : (b))

#endif



( run in 0.847 second using v1.01-cache-2.11-cpan-49f99fa48dc )