diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-18 12:49:39 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-18 12:49:39 -0600 |
| commit | 9e7166a52e94d8e15bf2dbfe00026f21f76630a9 (patch) | |
| tree | bb4d7114d5f91fa128375347ab4249a4c35408f2 /inc/macros.h | |
| parent | 1b4d91e623a083690ac6554d1aeaa38b75469908 (diff) | |
| download | math-4610-9e7166a52e94d8e15bf2dbfe00026f21f76630a9.tar.gz math-4610-9e7166a52e94d8e15bf2dbfe00026f21f76630a9.zip | |
oct 16, 18 notes. add unit tests with utest, and bisection root finding methods
Diffstat (limited to 'inc/macros.h')
| -rw-r--r-- | inc/macros.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
