├── .clang-format ├── .github └── workflows │ ├── main.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── gpl-3.0.txt ├── help ├── f0.auto_scale.maxhelp ├── f0.auto_scale~.maxhelp ├── f0.construct.maxhelp ├── f0.distance.maxhelp ├── f0.distance~.maxhelp ├── f0.fold.maxhelp ├── f0.gcd.maxhelp ├── f0.inc_dec_split.maxhelp ├── f0.limit_counter.maxhelp ├── f0.noergaard.maxhelp ├── f0.range.maxhelp ├── f0.range2.maxhelp ├── f0.range2~.maxhelp ├── f0.range~.maxhelp ├── f0.slub.maxhelp ├── f0.slub~.maxhelp ├── f0.smooth.maxhelp ├── f0.smooth2.maxhelp ├── f0.smooth2~.maxhelp ├── f0.smooth~.maxhelp ├── f0.snap.maxhelp ├── f0.tune.maxhelp ├── f0.tune~.maxhelp ├── f0.ultimate_counter.maxhelp └── f0logo.png └── source └── projects ├── f0.auto_scale ├── CMakeLists.txt └── f0.auto_scale.cpp ├── f0.auto_scale_tilde ├── CMakeLists.txt └── f0.auto_scale_tilde.cpp ├── f0.construct ├── CMakeLists.txt └── f0.construct.cpp ├── f0.distance ├── CMakeLists.txt └── f0.distance.cpp ├── f0.distance_tilde ├── CMakeLists.txt └── f0.distance_tilde.cpp ├── f0.fold ├── CMakeLists.txt └── f0.fold.cpp ├── f0.gcd ├── CMakeLists.txt └── f0.gcd.cpp ├── f0.inc_dec_split ├── CMakeLists.txt └── f0.inc_dec_split.cpp ├── f0.limit_counter ├── CMakeLists.txt └── f0.limit_counter.cpp ├── f0.noergaard ├── CMakeLists.txt └── f0.noergaard.cpp ├── f0.range ├── CMakeLists.txt └── f0.range.cpp ├── f0.range2 ├── CMakeLists.txt └── f0.range2.cpp ├── f0.range2_tilde ├── CMakeLists.txt └── f0.range2_tilde.cpp ├── f0.range_tilde ├── CMakeLists.txt └── f0.range_tilde.cpp ├── f0.slub ├── CMakeLists.txt └── f0.slub.cpp ├── f0.slub_tilde ├── CMakeLists.txt └── f0.slub_tilde.cpp ├── f0.smooth ├── CMakeLists.txt └── f0.smooth.cpp ├── f0.smooth2 ├── CMakeLists.txt └── f0.smooth2.cpp ├── f0.smooth2_tilde ├── CMakeLists.txt └── f0.smooth2_tilde.cpp ├── f0.smooth_tilde ├── CMakeLists.txt └── f0.smooth_tilde.cpp ├── f0.snap ├── CMakeLists.txt └── f0.snap.cpp ├── f0.tune ├── CMakeLists.txt └── f0.tune.cpp ├── f0.tune_tilde ├── CMakeLists.txt └── f0.tune_tilde.cpp └── f0.ultimate_counter ├── CMakeLists.txt └── f0.ultimate_counter.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/README.md -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /help/f0.auto_scale.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.auto_scale.maxhelp -------------------------------------------------------------------------------- /help/f0.auto_scale~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.auto_scale~.maxhelp -------------------------------------------------------------------------------- /help/f0.construct.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.construct.maxhelp -------------------------------------------------------------------------------- /help/f0.distance.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.distance.maxhelp -------------------------------------------------------------------------------- /help/f0.distance~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.distance~.maxhelp -------------------------------------------------------------------------------- /help/f0.fold.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.fold.maxhelp -------------------------------------------------------------------------------- /help/f0.gcd.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.gcd.maxhelp -------------------------------------------------------------------------------- /help/f0.inc_dec_split.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.inc_dec_split.maxhelp -------------------------------------------------------------------------------- /help/f0.limit_counter.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.limit_counter.maxhelp -------------------------------------------------------------------------------- /help/f0.noergaard.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.noergaard.maxhelp -------------------------------------------------------------------------------- /help/f0.range.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.range.maxhelp -------------------------------------------------------------------------------- /help/f0.range2.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.range2.maxhelp -------------------------------------------------------------------------------- /help/f0.range2~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.range2~.maxhelp -------------------------------------------------------------------------------- /help/f0.range~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.range~.maxhelp -------------------------------------------------------------------------------- /help/f0.slub.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.slub.maxhelp -------------------------------------------------------------------------------- /help/f0.slub~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.slub~.maxhelp -------------------------------------------------------------------------------- /help/f0.smooth.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.smooth.maxhelp -------------------------------------------------------------------------------- /help/f0.smooth2.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.smooth2.maxhelp -------------------------------------------------------------------------------- /help/f0.smooth2~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.smooth2~.maxhelp -------------------------------------------------------------------------------- /help/f0.smooth~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.smooth~.maxhelp -------------------------------------------------------------------------------- /help/f0.snap.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.snap.maxhelp -------------------------------------------------------------------------------- /help/f0.tune.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.tune.maxhelp -------------------------------------------------------------------------------- /help/f0.tune~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.tune~.maxhelp -------------------------------------------------------------------------------- /help/f0.ultimate_counter.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0.ultimate_counter.maxhelp -------------------------------------------------------------------------------- /help/f0logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/help/f0logo.png -------------------------------------------------------------------------------- /source/projects/f0.auto_scale/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.auto_scale/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.auto_scale/f0.auto_scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.auto_scale/f0.auto_scale.cpp -------------------------------------------------------------------------------- /source/projects/f0.auto_scale_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.auto_scale_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.auto_scale_tilde/f0.auto_scale_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.auto_scale_tilde/f0.auto_scale_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.construct/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.construct/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.construct/f0.construct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.construct/f0.construct.cpp -------------------------------------------------------------------------------- /source/projects/f0.distance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.distance/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.distance/f0.distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.distance/f0.distance.cpp -------------------------------------------------------------------------------- /source/projects/f0.distance_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.distance_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.distance_tilde/f0.distance_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.distance_tilde/f0.distance_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.fold/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.fold/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.fold/f0.fold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.fold/f0.fold.cpp -------------------------------------------------------------------------------- /source/projects/f0.gcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.gcd/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.gcd/f0.gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.gcd/f0.gcd.cpp -------------------------------------------------------------------------------- /source/projects/f0.inc_dec_split/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.inc_dec_split/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.inc_dec_split/f0.inc_dec_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.inc_dec_split/f0.inc_dec_split.cpp -------------------------------------------------------------------------------- /source/projects/f0.limit_counter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.limit_counter/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.limit_counter/f0.limit_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.limit_counter/f0.limit_counter.cpp -------------------------------------------------------------------------------- /source/projects/f0.noergaard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.noergaard/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.noergaard/f0.noergaard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.noergaard/f0.noergaard.cpp -------------------------------------------------------------------------------- /source/projects/f0.range/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.range/f0.range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range/f0.range.cpp -------------------------------------------------------------------------------- /source/projects/f0.range2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range2/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.range2/f0.range2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range2/f0.range2.cpp -------------------------------------------------------------------------------- /source/projects/f0.range2_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range2_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.range2_tilde/f0.range2_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range2_tilde/f0.range2_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.range_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.range_tilde/f0.range_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.range_tilde/f0.range_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.slub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.slub/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.slub/f0.slub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.slub/f0.slub.cpp -------------------------------------------------------------------------------- /source/projects/f0.slub_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.slub_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.slub_tilde/f0.slub_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.slub_tilde/f0.slub_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.smooth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.smooth/f0.smooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth/f0.smooth.cpp -------------------------------------------------------------------------------- /source/projects/f0.smooth2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth2/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.smooth2/f0.smooth2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth2/f0.smooth2.cpp -------------------------------------------------------------------------------- /source/projects/f0.smooth2_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth2_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.smooth2_tilde/f0.smooth2_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth2_tilde/f0.smooth2_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.smooth_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.smooth_tilde/f0.smooth_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.smooth_tilde/f0.smooth_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.snap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.snap/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.snap/f0.snap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.snap/f0.snap.cpp -------------------------------------------------------------------------------- /source/projects/f0.tune/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.tune/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.tune/f0.tune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.tune/f0.tune.cpp -------------------------------------------------------------------------------- /source/projects/f0.tune_tilde/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.tune_tilde/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.tune_tilde/f0.tune_tilde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.tune_tilde/f0.tune_tilde.cpp -------------------------------------------------------------------------------- /source/projects/f0.ultimate_counter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.ultimate_counter/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/f0.ultimate_counter/f0.ultimate_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redFrik/f0ext/HEAD/source/projects/f0.ultimate_counter/f0.ultimate_counter.cpp --------------------------------------------------------------------------------