├── .travis.yml ├── LICENSE ├── README.md ├── quant.cpp ├── quant.hpp └── sample.cc /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/quant/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/quant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/quant/HEAD/README.md -------------------------------------------------------------------------------- /quant.cpp: -------------------------------------------------------------------------------- 1 | #include "quant.hpp" 2 | -------------------------------------------------------------------------------- /quant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lyeh-archived/quant/HEAD/quant.hpp -------------------------------------------------------------------------------- /sample.cc: -------------------------------------------------------------------------------- 1 | #define QUANT_TESTS 2 | #include "quant.hpp" 3 | --------------------------------------------------------------------------------