-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Large database files | ||
graph7.db | ||
graph8.db | ||
graph9.db | ||
graph10.db | ||
|
||
special/graph7_special.db | ||
special/graph8_special.db | ||
special/graph9_special.db | ||
special/graph10_special.db | ||
|
||
# Temp files | ||
*~ | ||
\#* | ||
.\#* | ||
*.bak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Encyclopedia of Finite Graphs | ||
### database for simple connected graphs | ||
|
||
This is the database file for [Encyclopedia of Finite Graphs](https://github.com/thoppe/Encyclopedia-of-Finite-Graphs) project. | ||
This contains all of the simple connected graphs up to order 10 and a large collection of their invariants stored as an integer table. | ||
Up to order 6, there is a collection of "special" invariants there are stored in a custom table (see main project for details). | ||
|
||
To extract the database, run (requires `pbzip2` and `split`) | ||
|
||
make extract | ||
|
||
To compress the database again, run | ||
|
||
make compress | ||
|
||
If you've cloned the Encyclopedia project, you can automatically download the database by running: | ||
|
||
git submodule add https://github.com/thoppe/Simple-connected-graph-invariant-database.git database | ||
|
||
Note we are unable to store the special invariants for larger graphs due to size constraints. | ||
They will have to be recomputed for `n>6`. |