summaryrefslogtreecommitdiff
path: root/lib/include/wolff/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/wolff/types.h')
-rw-r--r--lib/include/wolff/types.h25
1 files changed, 8 insertions, 17 deletions
diff --git a/lib/include/wolff/types.h b/lib/include/wolff/types.h
index ec9efaf..68bd09e 100644
--- a/lib/include/wolff/types.h
+++ b/lib/include/wolff/types.h
@@ -1,36 +1,27 @@
#include <inttypes.h>
-typedef uint_fast32_t v_t;
-typedef uint_fast8_t q_t;
-typedef uint_fast16_t R_t;
-typedef uint_fast8_t D_t;
-typedef uint_fast16_t L_t;
-typedef uint_fast64_t count_t;
-typedef int_fast64_t h_t;
+typedef uint_fast32_t v_t; // vertex and edge indices
+typedef uint_fast8_t q_t; // enumerated states
+typedef uint_fast8_t D_t; // dimension
+typedef uint_fast16_t L_t; // linear size
+typedef uint_fast64_t N_t; // cycle iterator
#define MAX_v UINT_FAST32_MAX
#define MAX_Q UINT_FAST8_MAX
-#define MAX_R UINT_FAST16_MAX
#define MAX_D UINT_FAST8_MAX
#define MAX_L UINT_FAST16_MAX
-#define MAX_COUNT UINT_FAST64_MAX
-#define MAX_H INT_FAST64_MAX
-#define MIN_H INT_FAST64_MIN
+#define MAX_N UINT_FAST64_MAX
#define PRIv PRIuFAST32
#define PRIq PRIuFAST8
-#define PRIR PRIuFAST16
#define PRID PRIuFAST8
#define PRIL PRIuFAST16
-#define PRIcount PRIuFAST64
-#define PRIh PRIdFAST64
+#define PRIN PRIuFAST64
#define SCNv SCNuFAST32
#define SCNq SCNuFAST8
-#define SCNR SCNuFAST16
#define SCND SCNuFAST8
#define SCNL SCNuFAST16
-#define SCNcount SCNuFAST64
-#define SCNh SCNdFAST64
+#define SCNN SCNuFAST64