├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.html ├── README.md ├── README.pdf ├── main.cpp ├── succinct.cpp ├── succinct.hpp ├── test ├── Makefile ├── data │ ├── l+.vg │ ├── l.vg │ ├── ll.vg │ ├── with_m.vg │ └── z.vg └── t │ ├── 01_construction.t │ ├── 01_construction.t~ │ └── 14_vg_mod.t~ └── vg.proto /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | succinctg 3 | *.o 4 | cpp 5 | .Rhistory 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/Makefile -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/README.pdf -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/main.cpp -------------------------------------------------------------------------------- /succinct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/succinct.cpp -------------------------------------------------------------------------------- /succinct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/succinct.hpp -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/data/l+.vg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/data/l+.vg -------------------------------------------------------------------------------- /test/data/l.vg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/data/l.vg -------------------------------------------------------------------------------- /test/data/ll.vg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/data/ll.vg -------------------------------------------------------------------------------- /test/data/with_m.vg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/data/with_m.vg -------------------------------------------------------------------------------- /test/data/z.vg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/data/z.vg -------------------------------------------------------------------------------- /test/t/01_construction.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/t/01_construction.t -------------------------------------------------------------------------------- /test/t/01_construction.t~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/t/01_construction.t~ -------------------------------------------------------------------------------- /test/t/14_vg_mod.t~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/test/t/14_vg_mod.t~ -------------------------------------------------------------------------------- /vg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekg/succinct-graph/HEAD/vg.proto --------------------------------------------------------------------------------