ziglet_primality/
lib.rs

1// Copyright (c) Jeffrey Hohenstein <jeffrey.hohenstein@gmail.com>
2//
3// All rights reserved.
4
5//! Miller Rabin Composite Test
6//!
7//! This test offers a probabilistic test for whether a (potentially) large number is composite.
8pub mod miller_rabin;