/
githubmirror
/
nmap
Обзор
Документация
Войти
/
githubmirror
/
nmap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
liblinear/blas/blas.h
25 строк
702 B
david
Merge from /nmap-exp/luis/nmap-os6.
19 сен 2011, 22:31
19 сен 2011, 22:31
9bf2ec3
Код
Авторство
О чём код?
/* blas.h -- C header file for BLAS Ver 1.0 */ /* Jesse Bennett March 23, 2000 */ /** barf [ba:rf] 2. "He suggested using FORTRAN, and everybody barfed." - From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */ #ifndef BLAS_INCLUDE #define BLAS_INCLUDE /* 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