aboutsummaryrefslogtreecommitdiff
path: root/include/ct1986.h
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-01-18 23:14:12 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit82d679ab5fa43c33ae52fe7b66d7c358f6046a45 (patch)
treefdb42bd3647c7c2934ec29d32aedbdf8b16d28fe /include/ct1986.h
parent10dcfac23be0a8cab39efaaf63abecf098c993db (diff)
First steps towards character LCD
Diffstat (limited to 'include/ct1986.h')
-rw-r--r--include/ct1986.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/ct1986.h b/include/ct1986.h
deleted file mode 100644
index 3f2568d..0000000
--- a/include/ct1986.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <stdint.h>
-#include "tak.h"
-#include "weights.h"
-
-extern const float infty;
-extern char ct1986_ptn[9];
-extern void (*ct1986_display_progress)(const uint8_t);
-
-float
-ct1986_evaluate_black_win(void);
-
-// Generate PTN of the ````best'''' action and store it in ct1986_ptn,
-// along with its value as the return. The ct1986_display_progress
-// function pointer is called on every new square.
-
-float ct1986_generate(const uint8_t max_depth);
-
-// Access to the internal method
-float
-ct1986_minimax(const uint8_t cur_depth, const uint8_t max_depth,
- const uint8_t min, float alpha, float beta);
-
-extern char ct1986_ptn[9];
-extern float ct1986_optimal;
-
-
-void
-ct1986_generate_ptn(void display_progress(void));