From 9e7166a52e94d8e15bf2dbfe00026f21f76630a9 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Wed, 18 Oct 2023 12:49:39 -0600 Subject: oct 16, 18 notes. add unit tests with utest, and bisection root finding methods --- inc/macros.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'inc/macros.h') diff --git a/inc/macros.h b/inc/macros.h index f6e531e..eab1b41 100644 --- a/inc/macros.h +++ b/inc/macros.h @@ -52,4 +52,7 @@ #define c_max(x, y) (((x) >= (y)) ? (x) : (y)) #define c_min(x, y) (((x) <= (y)) ? (x) : (y)) +#define true 1; +#define false 0; + #endif // MACROS_H -- cgit v1.3