├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── lttbConfig.cmake.in ├── include └── lttb.hpp └── test ├── CMakeLists.txt ├── data ├── sample.csv └── source.csv ├── test-downsample.cpp ├── test-empty.cpp ├── test-main.cpp └── test-small.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/README.md -------------------------------------------------------------------------------- /cmake/lttbConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/cmake/lttbConfig.cmake.in -------------------------------------------------------------------------------- /include/lttb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/include/lttb.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/data/sample.csv -------------------------------------------------------------------------------- /test/data/source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/data/source.csv -------------------------------------------------------------------------------- /test/test-downsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/test-downsample.cpp -------------------------------------------------------------------------------- /test/test-empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/test-empty.cpp -------------------------------------------------------------------------------- /test/test-main.cpp: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include "doctest.h" 3 | -------------------------------------------------------------------------------- /test/test-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parkertomatoes/lttb-cpp/HEAD/test/test-small.cpp --------------------------------------------------------------------------------