├── .gitignore ├── AUTHOR ├── LICENCE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── examples ├── create_example_asc.pl ├── create_example_rand.pl ├── time_st.sh └── time_sta.sh ├── src ├── main.cpp ├── sta.cpp └── sta.h └── test ├── README.md ├── buildTester.sh ├── sta_test_1.h └── sta_test_2.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/AUTHOR -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/create_example_asc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/examples/create_example_asc.pl -------------------------------------------------------------------------------- /examples/create_example_rand.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/examples/create_example_rand.pl -------------------------------------------------------------------------------- /examples/time_st.sh: -------------------------------------------------------------------------------- 1 | file="$1" 2 | time st < $file 3 | -------------------------------------------------------------------------------- /examples/time_sta.sh: -------------------------------------------------------------------------------- 1 | file="$1" 2 | time st < $file 3 | -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/sta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/src/sta.cpp -------------------------------------------------------------------------------- /src/sta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/src/sta.h -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/test/README.md -------------------------------------------------------------------------------- /test/buildTester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/test/buildTester.sh -------------------------------------------------------------------------------- /test/sta_test_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/test/sta_test_1.h -------------------------------------------------------------------------------- /test/sta_test_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonccarter/sta/HEAD/test/sta_test_2.h --------------------------------------------------------------------------------