From 30b43f08955158d4f2066f4b50fe8d1241b3177b Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 16 May 2025 15:43:09 +0200 Subject: Remove configure + make build system. This commit also updates the README, cleans up some stuff and fixes some oopsies. --- python/nissy_module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/nissy_module.c b/python/nissy_module.c index 069dea0..5f5c0c4 100644 --- a/python/nissy_module.c +++ b/python/nissy_module.c @@ -350,9 +350,9 @@ static PyMethodDef nissy_methods[] = { { "getcube", getcube, METH_VARARGS, getcube_doc }, { "solverinfo", solverinfo, METH_VARARGS, solverinfo_doc }, { "gendata", gendata, METH_VARARGS, gendata_doc }, - { "checkdata", _checkdata, METH_VARARGS, checkdata_doc }, + { "checkdata", checkdata, METH_VARARGS, checkdata_doc }, { "solve", solve, METH_VARARGS, solve_doc }, - { "countmoves", _countmoves, METH_VARARGS, countmoves_doc }, + { "countmoves", countmoves, METH_VARARGS, countmoves_doc }, { NULL, NULL, 0, NULL } }; -- cgit v1.3