blob: 4a0157a9b2fb162d3fccb721a5c88e3ca496b27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Prototype for a new optimal solver
Work in progress. Everything is in a state of flux and can change without
notice.
## Building and running tests
First run
```
$ ./configure.sh
```
or `TYPE=AVX2 ./configure.sh` if you want to use AVX2 instructions.
Then
```
$ make test
```
to run the tests. You can also run only the tests that match a chosen
regex, for example:
```
$ TEST=coord make test
```
You can also run
```
$ make benchmark
```
for benchmarks.
|