diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-03-12 15:01:35 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-03-12 15:01:35 +0300 |
| commit | 8ac4d298a209a2b381f203c2b63e59ace9736846 (patch) | |
| tree | fb1fbda3739afb60f76dd4bb48241957a5a3baa0 /README.md | |
| parent | bfd7f0d6a9f81e093a390be968058732cc7562c6 (diff) | |
Add matrix, vector classes and tests
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 24 |
1 files changed, 22 insertions, 2 deletions
@@ -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 |