]> AND Private Git Repository - snake_gpu.git/blob - src/lib_math.h~
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Initial commit
[snake_gpu.git] / src / lib_math.h~
1 #ifndef _LIB_MATH_H
2 #define _LIB_MATH_H
3
4
5 #include <sys/time.h>
6 #include "structures.h"
7
8 void tic(struct timeval* temps, char* texte) ;
9 double toc(struct timeval start, char* texte) ;
10
11 void min_max_int1d(int *val_min, int *val_max, int *vect, int dim) ;
12
13 #define min(a,b) ((a)<(b)) ? (a) : (b) 
14 #define max(a,b) ((a)>(b)) ? (a) : (b) 
15
16 uint32 calcul_px_autour_noeud(uint32 ni, uint32 nj, int pas, 
17                            uint32 idim_m1, uint32 jdim_m1,
18                            uint32 *liste_pixel_move);
19
20 inline int test_inf(double arg1, double arg2);
21
22 inline int sign_diff_ou_egal_zero(int val1, int val2);
23 inline int sign_diff_strict(int val1, int val2);
24
25 inline int sinus_triangle(int Ai, int Aj, int Bi, int Bj, int Ci, int Cj);
26
27 void recopie_vecteur(int *in, int *out, int dim) ;
28
29
30 #endif