diff options
author | Jasper | 2025-09-08 10:35:14 +0200 |
---|---|---|
committer | Jasper | 2025-09-08 10:35:14 +0200 |
commit | 1386f6dc5024937c8c9c741efed9274d4861b76f (patch) | |
tree | 50c27e867e3551a820e90ac2bd0d43ca087625ef /build.sh | |
parent | bd39c6ab8b87a90944afe271ce847ed0ce090c92 (diff) |
Added vector struct
It's completely based on the existing matrix struct and its functions.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,4 +2,4 @@ if [ ! -d "bin" ]; then mkdir bin fi -gcc -Wall -Wextra -pedantic -lm -o bin/linalg_debug debug.c tests.c utils.c matrix.c +gcc -Wall -Wextra -pedantic -lm -o bin/linalg_debug debug.c tests.c utils.c matrix.c vector.c |