Skip to content

Commit

Permalink
Added README
Browse files Browse the repository at this point in the history
  • Loading branch information
thoppe committed Aug 13, 2014
1 parent 1cd86a2 commit 9e33a32
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
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
21 changes: 21 additions & 0 deletions README.md
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`.

0 comments on commit 9e33a32

Please sign in to comment.