Skip to content
Snippets Groups Projects
Commit 66aa72dc authored by ALFROY THOMAS's avatar ALFROY THOMAS
Browse files

Delete params.h

parent 6dcbc967
Branches
No related merge requests found
//number max of segments
#define SEG_MAX 10
//max spread of the weight in SR graph
#define MAX_SPREAD 10001
#define MAX_SIZE SEG_MAX * MAX_SPREAD
//Limit to the sort of the actives indexes
#define REDUC_LIMIT 8000
#define DIABLO 0
#define ISP 1
#define TOPOLOGY_TYPE DIABLO
//define which type of topology will be load
#if TOPOLOGY_TYPE == DIABLO
typedef long int my_m2;
typedef long int my_int;
#endif
#if TOPOLOGY_TYPE == ISP
typedef float my_m2;
typedef int my_int;
#endif
#define ARRAY_HEAP 0
#define BINARY_HEAP 1
//define which type of heap will be used
#define HEAP_TYPE ARRAY_HEAP
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment