aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authory-jan137 <yousefjan24000@gmail.com>2026-03-12 15:01:35 +0300
committery-jan137 <yousefjan24000@gmail.com>2026-03-12 15:01:35 +0300
commit8ac4d298a209a2b381f203c2b63e59ace9736846 (patch)
treefb1fbda3739afb60f76dd4bb48241957a5a3baa0 /README.md
parentbfd7f0d6a9f81e093a390be968058732cc7562c6 (diff)
Add matrix, vector classes and tests
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 22 insertions, 2 deletions
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