From f1c6f59ae02a9d9db50171a69032dc2409a0e6c6 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 16 Jul 2026 15:30:08 +0530 Subject: magic bitboards via AI --- tests/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/main.c b/tests/main.c index ff7560d..38eb544 100644 --- a/tests/main.c +++ b/tests/main.c @@ -4,6 +4,7 @@ #define TEST_MOD #include "generated.c" +#include "engine/magic.h" double diff_time(struct timespec a, struct timespec b) { double a_time = (double)a.tv_sec + a.tv_nsec * 1e-9; @@ -13,6 +14,7 @@ double diff_time(struct timespec a, struct timespec b) { } int main() { + magic_init(); int i = 0; int return_type = 0; while (i < total_test_count) { -- cgit v1.2.3