aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/numerics.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numerics.hpp b/src/numerics.hpp
index 43b6c0b..f095368 100644
--- a/src/numerics.hpp
+++ b/src/numerics.hpp
@@ -24,7 +24,7 @@
#include <vector>
#define MIN(A, B) ((A) < (B) ? (A) : (B))
-#define MAX(A, B) ((A) > (B) ? (A) : (B))
+#define MAX(A, B) ((B) < (A) ? (A) : (B))
typedef uint64_t word_t;
struct Fraction