From 078e21a1feb811f9ef7797ce3ee5d2e8ffcccfce Mon Sep 17 00:00:00 2001 From: nasr Date: Fri, 17 Apr 2026 17:49:10 +0200 Subject: feature(main): during my work on other projects I improved the base library a bit. this is a drag and drop of that in the project. the next steps exit out of implementing lineair regression and attempting to calcualte what the value would be of a key in the btree... Signed-off-by: nasr feature(main): during my work on other projects I improved the base library a bit. this is a drag and drop of that in the project. the next steps exit out of implementing lineair regression and attempting to calcualte what the value would be of a key in the btree... Signed-off-by: nasr --- source/tb_ml/tb_ml.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 source/tb_ml/tb_ml.c (limited to 'source/tb_ml') diff --git a/source/tb_ml/tb_ml.c b/source/tb_ml/tb_ml.c new file mode 100644 index 0000000..cf9625a --- /dev/null +++ b/source/tb_ml/tb_ml.c @@ -0,0 +1,20 @@ +#define BASE_UNITY +#include "../base/base_include.h" + +#if 0 + +#include "../third_party/btree_impl.h" +#endif + + + +//- dataset is an implementation of the btree + +int main(int c, char **v) +{ + unused(c); + unused(v); + + + return 0; +} -- cgit v1.3