Refactored Karatsuba's algorithm and added sample usage

This commit is contained in:
2025-11-12 16:27:16 +01:00
parent 2d10a7076a
commit 77f68f2328
5 changed files with 463 additions and 341 deletions

View File

@@ -11,7 +11,7 @@ TARGET = usage
TEST_V_TARGET = test_vector
TEST_M_TARGET = test_map
LIB_OBJS = $(OBJ_DIR)/vector.o $(OBJ_DIR)/map.o
LIB_OBJS = $(OBJ_DIR)/vector.o $(OBJ_DIR)/map.o $(OBJ_DIR)/bigint.o
PROG_OBJS = $(OBJ_DIR)/usage.o
.PHONY: all clean