Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 469 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 469 Bytes

Compute factorials

This crate provides some convenient and safe methods to compute the factorial with an efficient method. More precisely it uses the prime swing algorithm to compute the factorial. See this paper for more detail.

It can compute the factorial in O(n (log n loglog n)^2) operations of multiplication. The time complexity of this algorithm depends on the time complexity of the multiplication algorithm used.