migrate to new c djstdlib

This commit is contained in:
Daniel Ledda
2025-11-14 10:37:18 +01:00
parent 344056744d
commit 7ec69b3067
21 changed files with 392 additions and 366 deletions

View File

@@ -1,6 +1,9 @@
#include "VoxelSpace.h"
#include "lib/djstdlib/core.h"
extern uint64 STD_SOMA[];
typedef list<uint64> SomaSolution;
list<SomaSolution> solve(list<uint64> *reprs_in, int dims[3]);
typedef VoxelSpaceReprList SomaSolution;
DefineList(SomaSolution, SomaSolution);
SomaSolutionList solve(uint64 *reprs_in, uint32 reprs_in_length, int dims[3]);
void interactive_cmd_line_solve_soma();