Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Scalar type for finite fields #9

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,14 @@ pub trait Field: EuclideanDomain + MultiplicativeAbelianGroup {}
/// # Properties
/// - The number of elements is always a prime power p^n
pub trait FiniteField: Field {
///allos for an arbitrary size representation without specificing type
type ScalarType: Clone + PartialOrd + Zero + One + Debug;

/// Returns the characteristic of the field.
fn characteristic() -> u64;
fn characteristic() -> Self::ScalarType;

/// Returns the number of elements in the field.
fn order() -> u64;
fn order() -> Self::ScalarType;
}

/// Represents an Ordered Field, a field with a total order compatible with its operations.
Expand Down
Loading