├── .clang-tidy ├── .gcov └── make │ ├── make_gcov_01_generic.gmk │ ├── make_gcov_02_files.gmk │ └── make_gcov_03_flags.gmk ├── .github ├── toolchains │ └── gcc.cmake └── workflows │ ├── CodeQL.yml │ ├── wide_decimal.yml │ ├── wide_decimal_codecov.yml │ └── wide_decimal_sonar.yml ├── .gitignore ├── .props └── Directory.Build.props ├── .tidy └── make │ ├── make_tidy_01_generic.gmk │ ├── make_tidy_02_files.gmk │ └── make_tidy_03_flags.gmk ├── CMakeLists.txt ├── LICENSE_1_0.txt ├── README.md ├── boost └── math │ └── bindings │ └── decwide_t.hpp ├── codecov.yml ├── examples ├── CMakeLists.txt ├── example000_multiply_nines.cpp ├── example000a_multiply_pi_squared.cpp ├── example001_roots_sqrt.cpp ├── example001a_roots_seventh.cpp ├── example001b_roots_almost_integer.cpp ├── example001c_roots_sqrt_limb08.cpp ├── example001d_pow2_from_list.cpp ├── example001e_algebra_and_constexpr.cpp ├── example002_pi.cpp ├── example002a_pi_small_limb.cpp ├── example002b_pi_100k.cpp ├── example002c_pi_quintic.cpp ├── example002d_pi_limb08.cpp ├── example003_zeta.cpp ├── example004_bessel_recur.cpp ├── example005_polylog_series.cpp ├── example006_logarithm.cpp ├── example007_catalan_series.cpp ├── example008_bernoulli_tgamma.cpp ├── example009_boost_math_standalone.cpp ├── example009a_boost_math_standalone.cpp ├── example009b_boost_math_standalone.cpp ├── example010_hypergeometric_2f1.cpp ├── example010a_hypergeometric_1f1.cpp ├── example011_trig_trapezoid_integral.cpp ├── example012_rational_floor_ceil.cpp ├── example013_embeddable_sqrt.cpp ├── example013a_embeddable_agm.cpp └── example_decwide_t.h ├── math ├── constants │ └── constants_pi_control_for_decwide_t.h └── wide_decimal │ ├── decwide_t.h │ ├── decwide_t_detail.h │ ├── decwide_t_detail_fft.h │ ├── decwide_t_detail_namespace.h │ └── decwide_t_detail_ops.h ├── mcal_lcd ├── mcal_lcd_base.h ├── mcal_lcd_console.h └── mcal_lcd_generic_st7066.h ├── sonar-project.properties ├── target ├── build │ └── test_examples_emulator.gdb └── micros │ └── stm32f429 │ └── make │ ├── single │ └── crt.cpp │ └── stm32f429.ld ├── test ├── CMakeLists.txt ├── coverity.c ├── independent_algebra_test_decwide_t.h ├── independent_algebra_test_decwide_t_base.h ├── independent_algebra_test_decwide_t_boost_cpp.h ├── independent_algebra_test_decwide_t_constants.h ├── independent_algebra_test_decwide_t_wide_decimal.h ├── parallel_for.h ├── stopwatch.h ├── test.cpp ├── test_decwide_t_algebra.cpp ├── test_decwide_t_algebra.h ├── test_decwide_t_algebra_edge.cpp ├── test_decwide_t_examples.cpp ├── test_decwide_t_examples.h ├── test_high_precision_exp.cpp ├── test_high_precision_log.cpp └── test_mixed_wide_decimal_wide_integer_b2n.cpp ├── util ├── memory │ └── util_n_slot_array_allocator.h ├── stdcpp │ └── stdcpp_patch.cpp └── utility │ ├── util_baselexical_cast.h │ ├── util_dynamic_array.h │ ├── util_noncopyable.h │ └── util_pseudorandom_time_point_seed.h ├── wide_decimal.sln ├── wide_decimal.vcxproj ├── wide_decimal.vcxproj.filters ├── wide_decimal_vs2022.sln ├── wide_decimal_vs2022.vcxproj └── wide_decimal_vs2022.vcxproj.filters /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gcov/make/make_gcov_01_generic.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.gcov/make/make_gcov_01_generic.gmk -------------------------------------------------------------------------------- /.gcov/make/make_gcov_02_files.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.gcov/make/make_gcov_02_files.gmk -------------------------------------------------------------------------------- /.gcov/make/make_gcov_03_flags.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.gcov/make/make_gcov_03_flags.gmk -------------------------------------------------------------------------------- /.github/toolchains/gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.github/toolchains/gcc.cmake -------------------------------------------------------------------------------- /.github/workflows/CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.github/workflows/CodeQL.yml -------------------------------------------------------------------------------- /.github/workflows/wide_decimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.github/workflows/wide_decimal.yml -------------------------------------------------------------------------------- /.github/workflows/wide_decimal_codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.github/workflows/wide_decimal_codecov.yml -------------------------------------------------------------------------------- /.github/workflows/wide_decimal_sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.github/workflows/wide_decimal_sonar.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.gitignore -------------------------------------------------------------------------------- /.props/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.props/Directory.Build.props -------------------------------------------------------------------------------- /.tidy/make/make_tidy_01_generic.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.tidy/make/make_tidy_01_generic.gmk -------------------------------------------------------------------------------- /.tidy/make/make_tidy_02_files.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.tidy/make/make_tidy_02_files.gmk -------------------------------------------------------------------------------- /.tidy/make/make_tidy_03_flags.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/.tidy/make/make_tidy_03_flags.gmk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/README.md -------------------------------------------------------------------------------- /boost/math/bindings/decwide_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/boost/math/bindings/decwide_t.hpp -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/codecov.yml -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/example000_multiply_nines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example000_multiply_nines.cpp -------------------------------------------------------------------------------- /examples/example000a_multiply_pi_squared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example000a_multiply_pi_squared.cpp -------------------------------------------------------------------------------- /examples/example001_roots_sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001_roots_sqrt.cpp -------------------------------------------------------------------------------- /examples/example001a_roots_seventh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001a_roots_seventh.cpp -------------------------------------------------------------------------------- /examples/example001b_roots_almost_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001b_roots_almost_integer.cpp -------------------------------------------------------------------------------- /examples/example001c_roots_sqrt_limb08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001c_roots_sqrt_limb08.cpp -------------------------------------------------------------------------------- /examples/example001d_pow2_from_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001d_pow2_from_list.cpp -------------------------------------------------------------------------------- /examples/example001e_algebra_and_constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example001e_algebra_and_constexpr.cpp -------------------------------------------------------------------------------- /examples/example002_pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example002_pi.cpp -------------------------------------------------------------------------------- /examples/example002a_pi_small_limb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example002a_pi_small_limb.cpp -------------------------------------------------------------------------------- /examples/example002b_pi_100k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example002b_pi_100k.cpp -------------------------------------------------------------------------------- /examples/example002c_pi_quintic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example002c_pi_quintic.cpp -------------------------------------------------------------------------------- /examples/example002d_pi_limb08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example002d_pi_limb08.cpp -------------------------------------------------------------------------------- /examples/example003_zeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example003_zeta.cpp -------------------------------------------------------------------------------- /examples/example004_bessel_recur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example004_bessel_recur.cpp -------------------------------------------------------------------------------- /examples/example005_polylog_series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example005_polylog_series.cpp -------------------------------------------------------------------------------- /examples/example006_logarithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example006_logarithm.cpp -------------------------------------------------------------------------------- /examples/example007_catalan_series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example007_catalan_series.cpp -------------------------------------------------------------------------------- /examples/example008_bernoulli_tgamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example008_bernoulli_tgamma.cpp -------------------------------------------------------------------------------- /examples/example009_boost_math_standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example009_boost_math_standalone.cpp -------------------------------------------------------------------------------- /examples/example009a_boost_math_standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example009a_boost_math_standalone.cpp -------------------------------------------------------------------------------- /examples/example009b_boost_math_standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example009b_boost_math_standalone.cpp -------------------------------------------------------------------------------- /examples/example010_hypergeometric_2f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example010_hypergeometric_2f1.cpp -------------------------------------------------------------------------------- /examples/example010a_hypergeometric_1f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example010a_hypergeometric_1f1.cpp -------------------------------------------------------------------------------- /examples/example011_trig_trapezoid_integral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example011_trig_trapezoid_integral.cpp -------------------------------------------------------------------------------- /examples/example012_rational_floor_ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example012_rational_floor_ceil.cpp -------------------------------------------------------------------------------- /examples/example013_embeddable_sqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example013_embeddable_sqrt.cpp -------------------------------------------------------------------------------- /examples/example013a_embeddable_agm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example013a_embeddable_agm.cpp -------------------------------------------------------------------------------- /examples/example_decwide_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/examples/example_decwide_t.h -------------------------------------------------------------------------------- /math/constants/constants_pi_control_for_decwide_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/constants/constants_pi_control_for_decwide_t.h -------------------------------------------------------------------------------- /math/wide_decimal/decwide_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/wide_decimal/decwide_t.h -------------------------------------------------------------------------------- /math/wide_decimal/decwide_t_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/wide_decimal/decwide_t_detail.h -------------------------------------------------------------------------------- /math/wide_decimal/decwide_t_detail_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/wide_decimal/decwide_t_detail_fft.h -------------------------------------------------------------------------------- /math/wide_decimal/decwide_t_detail_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/wide_decimal/decwide_t_detail_namespace.h -------------------------------------------------------------------------------- /math/wide_decimal/decwide_t_detail_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/math/wide_decimal/decwide_t_detail_ops.h -------------------------------------------------------------------------------- /mcal_lcd/mcal_lcd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/mcal_lcd/mcal_lcd_base.h -------------------------------------------------------------------------------- /mcal_lcd/mcal_lcd_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/mcal_lcd/mcal_lcd_console.h -------------------------------------------------------------------------------- /mcal_lcd/mcal_lcd_generic_st7066.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/mcal_lcd/mcal_lcd_generic_st7066.h -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /target/build/test_examples_emulator.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/target/build/test_examples_emulator.gdb -------------------------------------------------------------------------------- /target/micros/stm32f429/make/single/crt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/target/micros/stm32f429/make/single/crt.cpp -------------------------------------------------------------------------------- /target/micros/stm32f429/make/stm32f429.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/target/micros/stm32f429/make/stm32f429.ld -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/coverity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/coverity.c -------------------------------------------------------------------------------- /test/independent_algebra_test_decwide_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/independent_algebra_test_decwide_t.h -------------------------------------------------------------------------------- /test/independent_algebra_test_decwide_t_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/independent_algebra_test_decwide_t_base.h -------------------------------------------------------------------------------- /test/independent_algebra_test_decwide_t_boost_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/independent_algebra_test_decwide_t_boost_cpp.h -------------------------------------------------------------------------------- /test/independent_algebra_test_decwide_t_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/independent_algebra_test_decwide_t_constants.h -------------------------------------------------------------------------------- /test/independent_algebra_test_decwide_t_wide_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/independent_algebra_test_decwide_t_wide_decimal.h -------------------------------------------------------------------------------- /test/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/parallel_for.h -------------------------------------------------------------------------------- /test/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/stopwatch.h -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test_decwide_t_algebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_decwide_t_algebra.cpp -------------------------------------------------------------------------------- /test/test_decwide_t_algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_decwide_t_algebra.h -------------------------------------------------------------------------------- /test/test_decwide_t_algebra_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_decwide_t_algebra_edge.cpp -------------------------------------------------------------------------------- /test/test_decwide_t_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_decwide_t_examples.cpp -------------------------------------------------------------------------------- /test/test_decwide_t_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_decwide_t_examples.h -------------------------------------------------------------------------------- /test/test_high_precision_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_high_precision_exp.cpp -------------------------------------------------------------------------------- /test/test_high_precision_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_high_precision_log.cpp -------------------------------------------------------------------------------- /test/test_mixed_wide_decimal_wide_integer_b2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/test/test_mixed_wide_decimal_wide_integer_b2n.cpp -------------------------------------------------------------------------------- /util/memory/util_n_slot_array_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/memory/util_n_slot_array_allocator.h -------------------------------------------------------------------------------- /util/stdcpp/stdcpp_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/stdcpp/stdcpp_patch.cpp -------------------------------------------------------------------------------- /util/utility/util_baselexical_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/utility/util_baselexical_cast.h -------------------------------------------------------------------------------- /util/utility/util_dynamic_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/utility/util_dynamic_array.h -------------------------------------------------------------------------------- /util/utility/util_noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/utility/util_noncopyable.h -------------------------------------------------------------------------------- /util/utility/util_pseudorandom_time_point_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/util/utility/util_pseudorandom_time_point_seed.h -------------------------------------------------------------------------------- /wide_decimal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal.sln -------------------------------------------------------------------------------- /wide_decimal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal.vcxproj -------------------------------------------------------------------------------- /wide_decimal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal.vcxproj.filters -------------------------------------------------------------------------------- /wide_decimal_vs2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal_vs2022.sln -------------------------------------------------------------------------------- /wide_decimal_vs2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal_vs2022.vcxproj -------------------------------------------------------------------------------- /wide_decimal_vs2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckormanyos/wide-decimal/HEAD/wide_decimal_vs2022.vcxproj.filters --------------------------------------------------------------------------------