├── .gitignore ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Catch2 └── catch.hpp ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── about_constants.md ├── about_matrix.md ├── about_numeric.md └── about_numeric_methods.md ├── source └── library │ ├── all.hpp │ └── core │ ├── common │ ├── abs.hpp │ ├── basic_bit_cast.hpp │ ├── comp_decimal_point_nums.hpp │ ├── max_min.hpp │ ├── my_concepts.hpp │ └── newton.hpp │ ├── constants.hpp │ ├── matrix.hpp │ ├── numeric.hpp │ └── numeric_methods.hpp └── tests ├── matrix_tests.cpp ├── numeric_methods_tests.cpp └── numeric_tests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | .cache -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/Catch2/catch.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/about_constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/docs/about_constants.md -------------------------------------------------------------------------------- /docs/about_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/docs/about_matrix.md -------------------------------------------------------------------------------- /docs/about_numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/docs/about_numeric.md -------------------------------------------------------------------------------- /docs/about_numeric_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/docs/about_numeric_methods.md -------------------------------------------------------------------------------- /source/library/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/all.hpp -------------------------------------------------------------------------------- /source/library/core/common/abs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/abs.hpp -------------------------------------------------------------------------------- /source/library/core/common/basic_bit_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/basic_bit_cast.hpp -------------------------------------------------------------------------------- /source/library/core/common/comp_decimal_point_nums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/comp_decimal_point_nums.hpp -------------------------------------------------------------------------------- /source/library/core/common/max_min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/max_min.hpp -------------------------------------------------------------------------------- /source/library/core/common/my_concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/my_concepts.hpp -------------------------------------------------------------------------------- /source/library/core/common/newton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/common/newton.hpp -------------------------------------------------------------------------------- /source/library/core/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/constants.hpp -------------------------------------------------------------------------------- /source/library/core/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/matrix.hpp -------------------------------------------------------------------------------- /source/library/core/numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/numeric.hpp -------------------------------------------------------------------------------- /source/library/core/numeric_methods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/source/library/core/numeric_methods.hpp -------------------------------------------------------------------------------- /tests/matrix_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/tests/matrix_tests.cpp -------------------------------------------------------------------------------- /tests/numeric_methods_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/tests/numeric_methods_tests.cpp -------------------------------------------------------------------------------- /tests/numeric_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahya-mohammed07/Kraken/HEAD/tests/numeric_tests.cpp --------------------------------------------------------------------------------