Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 415 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 415 Bytes

Kratsuba Algorithm

Kratsuba algorithm implementation using C++17 for large multiplications.

How to run the example?

You can use bazel:

 bazel run :kratsuba_example

or g++:

 g++ kratsuba_example.cc -o ./a.out && ./a.out

How to run tests?

You can use bazel:

 bazel test test:test_kratsuba