From 8ac4d298a209a2b381f203c2b63e59ace9736846 Mon Sep 17 00:00:00 2001 From: y-jan137 Date: Thu, 12 Mar 2026 15:01:35 +0300 Subject: Add matrix, vector classes and tests --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5622524..cb776c1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ -# zig-raytracer -Lightweight raytracer in Zig +# Numerical Linear Algebra + +This repo contains a small C++ dense numerical linear algebra library for double, with a companion experiments directory for evaluating performance. + +## Build + +```bash +cmake -S . -B build +cmake --build build +``` + +## Run tests + +```bash +ctest --test-dir build --output-on-failure +``` + +## Run the example + +```bash +./build/solve_linear_system +``` \ No newline at end of file -- cgit v1.2.3