#ifndef BLOCK_H
#define BLOCK_H

/* Initial size for a matrix representing a SET*/
#define INI_SET_MATRIX_SIZE 5


/* Closure flags */
#define CLS_REFLEXIVE  1
#define CLS_SYMMETRIC  2
#define CLS_TRANSITIVE 4

/* T-Norm identifiers */
#define TNM_MINIMUM     1
#define TNM_PRODUCT     2
#define TNM_LUKASIEWICZ 3
#define TNM_NOT_USED -1

#endif

