From 4364f5af94dc3c74c2857bd7b28e6cbcb3515155 Mon Sep 17 00:00:00 2001 From: Kinvert Date: Mon, 17 Aug 2026 20:23:07 -0400 Subject: [PATCH] Remove dead dataset_table() function --- src/constellation.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/constellation.c b/src/constellation.c index 9520da0f05..1d9b0f2c15 100644 --- a/src/constellation.c +++ b/src/constellation.c @@ -614,18 +614,6 @@ PlotArgs DEFAULT_PLOT_ARGS = { .z_label = "Train/Learning Rate", }; - -Table* dataset_table(Dataset *data, char *env) { - for (int i = 0; i < data->n; i++) { - if (strcmp(data->tables[i].name, env) == 0) { - return &data->tables[i]; - } - } - printf("Error: env %s not found\n", env); - exit(1); - return NULL; -} - float safe_log10(float x) { if (x <= 0) { return x;