https://github.com/ftosoni/k2tree_basic_v0.1
k²-tree implementation by the University of A Coruna
https://github.com/ftosoni/k2tree_basic_v0.1
Last synced: 8 days ago
JSON representation
k²-tree implementation by the University of A Coruna
- Host: GitHub
- URL: https://github.com/ftosoni/k2tree_basic_v0.1
- Owner: ftosoni
- Created: 2024-03-18T13:55:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-22T12:41:00.000Z (about 2 years ago)
- Last Synced: 2024-03-22T17:53:05.665Z (about 2 years ago)
- Language: C
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# k2tree_basic_v0.1
k²-tree implementation by the University of A Coruna
## Install
```bash
mkdir build
cd build
cmake ..
make -j 12
```
## Create plain format
In the `gen_graph` folder
```bash
python3 edgedescr2plain.py ../data/example14.graph-txt ../data/example14.kt-plain
```
## Compress
In the `build` folder
```bash
./build_tree ../data/example14.kt-plain ../data/example14
```
## Multiply
In the `build` folder
```bash
./multiply ../data/example14.kt ../data/invec14
```