Rework node operations storage, remove make_edge from insert_edge calls

This commit is contained in:
2023-08-23 19:28:45 +02:00
parent a81aafbf20
commit c365233ea4
16 changed files with 421 additions and 363 deletions

View File

@ -8,13 +8,13 @@ For all the julia calls, use `-t n` to give julia `n` threads.
Instantiate the project first:
`julia --project -e 'import Pkg; Pkg.instantiate()'`
`julia --project=./ -e 'import Pkg; Pkg.instantiate()'`
### Run Tests
To run all tests, run
`julia --project=. -e 'import Pkg; Pkg.test()'`
`julia --project=./ -e 'import Pkg; Pkg.test()' -O0`
### Run Examples
@ -24,7 +24,7 @@ Get the correct environment for the examples folder:
Then execute a specific example:
`julia --project=examples examples/<file>.jl`
`julia --project=examples examples/<file>.jl -O3`
## Concepts