From 5d7ae639739e1b5389bc94c227aeb6661cb8eab1 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Wed, 6 Dec 2023 03:44:28 +0800 Subject: initial commit A manual implementation of the Berlekamp algorithm for finding irreducible factors of polynomials over finite fields. --- Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d1c48a3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "berlekamp" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +num = "0.4.1" \ No newline at end of file -- cgit v1.2.3-18-g5258