blob: 6f496404391dea9698958c5701a0f8b89ff7ec62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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
```
|