├── .clang-format ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── benchmark ├── CMakeLists.txt ├── darts │ └── darts.h ├── main.cc ├── marisa-0.2.5 │ ├── AUTHORS │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── bindings │ │ ├── Makefile │ │ ├── marisa-swig.cxx │ │ ├── marisa-swig.h │ │ ├── marisa-swig.i │ │ ├── perl │ │ │ ├── Makefile.PL │ │ │ ├── marisa-swig.cxx │ │ │ ├── marisa-swig.h │ │ │ ├── marisa-swig_wrap.cxx │ │ │ ├── marisa.pm │ │ │ └── sample.pl │ │ ├── python │ │ │ ├── marisa-swig.cxx │ │ │ ├── marisa-swig.h │ │ │ ├── marisa-swig_wrap.cxx │ │ │ ├── marisa.py │ │ │ ├── sample.py │ │ │ └── setup.py │ │ └── ruby │ │ │ ├── extconf.rb │ │ │ ├── marisa-swig.cxx │ │ │ ├── marisa-swig.h │ │ │ ├── marisa-swig_wrap.cxx │ │ │ └── sample.rb │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── docs │ │ ├── readme.en.html │ │ ├── readme.ja.html │ │ └── style.css │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── marisa.h │ │ └── marisa │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── agent.h │ │ │ ├── base.h │ │ │ ├── exception.h │ │ │ ├── iostream.h │ │ │ ├── key.h │ │ │ ├── keyset.h │ │ │ ├── query.h │ │ │ ├── scoped-array.h │ │ │ ├── scoped-ptr.h │ │ │ ├── stdio.h │ │ │ └── trie.h │ ├── install-sh │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── marisa │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── agent.cc │ │ │ ├── grimoire │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── algorithm.h │ │ │ ├── algorithm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── sort.h │ │ │ ├── intrin.h │ │ │ ├── io.h │ │ │ ├── io │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── mapper.cc │ │ │ │ ├── mapper.h │ │ │ │ ├── reader.cc │ │ │ │ ├── reader.h │ │ │ │ ├── writer.cc │ │ │ │ └── writer.h │ │ │ ├── trie.h │ │ │ ├── trie │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cache.h │ │ │ │ ├── config.h │ │ │ │ ├── entry.h │ │ │ │ ├── header.h │ │ │ │ ├── history.h │ │ │ │ ├── key.h │ │ │ │ ├── louds-trie.cc │ │ │ │ ├── louds-trie.h │ │ │ │ ├── range.h │ │ │ │ ├── state.h │ │ │ │ ├── tail.cc │ │ │ │ └── tail.h │ │ │ ├── vector.h │ │ │ └── vector │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bit-vector.cc │ │ │ │ ├── bit-vector.h │ │ │ │ ├── flat-vector.h │ │ │ │ ├── pop-count.h │ │ │ │ ├── rank-index.h │ │ │ │ └── vector.h │ │ │ ├── keyset.cc │ │ │ └── trie.cc │ ├── ltmain.sh │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── marisa.pc.in │ ├── missing │ ├── test-driver │ ├── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── base-test.cc │ │ ├── io-test.cc │ │ ├── marisa-assert.h │ │ ├── marisa-test.cc │ │ ├── trie-test.cc │ │ └── vector-test.cc │ ├── tools │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cmdopt.cc │ │ ├── cmdopt.h │ │ ├── marisa-benchmark.cc │ │ ├── marisa-build.cc │ │ ├── marisa-common-prefix-search.cc │ │ ├── marisa-dump.cc │ │ ├── marisa-lookup.cc │ │ ├── marisa-predictive-search.cc │ │ └── marisa-reverse-lookup.cc │ └── vs2008 │ │ ├── base-test │ │ └── base-test.vcproj │ │ ├── io-test │ │ └── io-test.vcproj │ │ ├── libmarisa │ │ └── libmarisa.vcproj │ │ ├── marisa-benchmark │ │ └── marisa-benchmark.vcproj │ │ ├── marisa-build │ │ └── marisa-build.vcproj │ │ ├── marisa-common-prefix-search │ │ └── marisa-common-prefix-search.vcproj │ │ ├── marisa-dump │ │ └── marisa-dump.vcproj │ │ ├── marisa-lookup │ │ └── marisa-lookup.vcproj │ │ ├── marisa-predictive-search │ │ └── marisa-predictive-search.vcproj │ │ ├── marisa-reverse-lookup │ │ └── marisa-reverse-lookup.vcproj │ │ ├── marisa-test │ │ └── marisa-test.vcproj │ │ ├── trie-test │ │ └── trie-test.vcproj │ │ ├── vector-test │ │ └── vector-test.vcproj │ │ ├── vs2008.sln │ │ └── vs2008.suo └── ux-trie │ ├── bitVec.cpp │ ├── bitVec.hpp │ ├── bitVecTest.cpp │ ├── cmdline.h │ ├── rsDic.cpp │ ├── rsDic.hpp │ ├── ux.hpp │ ├── uxMain.cpp │ ├── uxMap.cpp │ ├── uxMap.hpp │ ├── uxMapTest.cpp │ ├── uxTest.cpp │ ├── uxTrie.cpp │ ├── uxTrie.hpp │ ├── uxUtil.cpp │ ├── uxUtil.hpp │ └── wscript ├── cmd ├── CMakeLists.txt ├── flags.h └── main.cc ├── fstlib.h ├── fstlib.pdf └── test ├── CMakeLists.txt ├── test.cc └── words.tsv /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/darts/darts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/darts/darts.h -------------------------------------------------------------------------------- /benchmark/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/main.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/AUTHORS -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/aclocal.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/Makefile -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/marisa-swig.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/marisa-swig.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/marisa-swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/marisa-swig.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/marisa-swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/marisa-swig.i -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/Makefile.PL -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/marisa-swig.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/marisa-swig.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/marisa-swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/marisa-swig.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/marisa-swig_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/marisa-swig_wrap.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/marisa.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/marisa.pm -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/perl/sample.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/perl/sample.pl -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/marisa-swig.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/marisa-swig.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/marisa-swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/marisa-swig.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/marisa-swig_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/marisa-swig_wrap.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/marisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/marisa.py -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/sample.py -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/python/setup.py -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/ruby/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/ruby/extconf.rb -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/ruby/marisa-swig.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/ruby/marisa-swig.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/ruby/marisa-swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/ruby/marisa-swig.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/ruby/marisa-swig_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/ruby/marisa-swig_wrap.cxx -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/bindings/ruby/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/bindings/ruby/sample.rb -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/compile -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/config.guess -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/config.sub -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/configure -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/configure.ac -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/depcomp -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/docs/readme.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/docs/readme.en.html -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/docs/readme.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/docs/readme.ja.html -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/docs/style.css -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/agent.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/base.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/exception.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/iostream.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/key.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/keyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/keyset.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/query.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/scoped-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/scoped-array.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/scoped-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/scoped-ptr.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/stdio.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/include/marisa/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/include/marisa/trie.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/install-sh -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = marisa 2 | -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/agent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/agent.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm/Makefile.am: -------------------------------------------------------------------------------- 1 | noinst_HEADERS = \ 2 | sort.h 3 | -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/algorithm/sort.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/intrin.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/mapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/mapper.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/mapper.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/reader.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/reader.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/writer.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/io/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/io/writer.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/cache.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/config.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/entry.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/header.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/history.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/key.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/louds-trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/louds-trie.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/louds-trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/louds-trie.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/range.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/state.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/tail.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/tail.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/trie/tail.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/bit-vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/bit-vector.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/bit-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/bit-vector.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/flat-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/flat-vector.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/pop-count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/pop-count.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/rank-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/rank-index.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/grimoire/vector/vector.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/keyset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/keyset.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/lib/marisa/trie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/lib/marisa/trie.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/ltmain.sh -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/m4/libtool.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/m4/ltoptions.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/m4/ltsugar.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/m4/ltversion.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/marisa.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/marisa.pc.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/missing -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/test-driver -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/base-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/base-test.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/io-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/io-test.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/marisa-assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/marisa-assert.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/marisa-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/marisa-test.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/trie-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/trie-test.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tests/vector-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tests/vector-test.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/Makefile.am -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/Makefile.in -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/cmdopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/cmdopt.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/cmdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/cmdopt.h -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-benchmark.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-build.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-common-prefix-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-common-prefix-search.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-dump.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-lookup.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-predictive-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-predictive-search.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/tools/marisa-reverse-lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/tools/marisa-reverse-lookup.cc -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/base-test/base-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/base-test/base-test.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/io-test/io-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/io-test/io-test.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/libmarisa/libmarisa.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/libmarisa/libmarisa.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-benchmark/marisa-benchmark.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-benchmark/marisa-benchmark.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-build/marisa-build.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-build/marisa-build.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-common-prefix-search/marisa-common-prefix-search.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-common-prefix-search/marisa-common-prefix-search.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-dump/marisa-dump.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-dump/marisa-dump.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-lookup/marisa-lookup.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-lookup/marisa-lookup.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-predictive-search/marisa-predictive-search.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-predictive-search/marisa-predictive-search.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-reverse-lookup/marisa-reverse-lookup.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-reverse-lookup/marisa-reverse-lookup.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/marisa-test/marisa-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/marisa-test/marisa-test.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/trie-test/trie-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/trie-test/trie-test.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/vector-test/vector-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/vector-test/vector-test.vcproj -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/vs2008.sln -------------------------------------------------------------------------------- /benchmark/marisa-0.2.5/vs2008/vs2008.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/marisa-0.2.5/vs2008/vs2008.suo -------------------------------------------------------------------------------- /benchmark/ux-trie/bitVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/bitVec.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/bitVec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/bitVec.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/bitVecTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/bitVecTest.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/cmdline.h -------------------------------------------------------------------------------- /benchmark/ux-trie/rsDic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/rsDic.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/rsDic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/rsDic.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/ux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/ux.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxMain.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/ux-trie/uxMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxMap.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxMapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxMapTest.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxTest.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxTrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxTrie.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxTrie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxTrie.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxUtil.cpp -------------------------------------------------------------------------------- /benchmark/ux-trie/uxUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/uxUtil.hpp -------------------------------------------------------------------------------- /benchmark/ux-trie/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/benchmark/ux-trie/wscript -------------------------------------------------------------------------------- /cmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/cmd/CMakeLists.txt -------------------------------------------------------------------------------- /cmd/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/cmd/flags.h -------------------------------------------------------------------------------- /cmd/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/cmd/main.cc -------------------------------------------------------------------------------- /fstlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/fstlib.h -------------------------------------------------------------------------------- /fstlib.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/fstlib.pdf -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/test/test.cc -------------------------------------------------------------------------------- /test/words.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhirose/cpp-fstlib/HEAD/test/words.tsv --------------------------------------------------------------------------------