chiark
/
gitweb
/
~ian
/
nimber.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51bc9e5
)
Compute one more polynomial
author
Simon Tatham
<anakin@pobox.com>
Sat, 12 Apr 2025 09:28:27 +0000
(10:28 +0100)
committer
Simon Tatham
<anakin@pobox.com>
Sat, 12 Apr 2025 09:28:52 +0000
(10:28 +0100)
This is the one I computed originally, and checked was primitive, but
was not able to include in the
A382121
text file because of a line
length limit.
examples/a382121.rs
patch
|
blob
|
history
diff --git
a/examples/a382121.rs
b/examples/a382121.rs
index cad2a15a1e8949f20cdb0f30dd67e37e4ac5ff2a..c5149474f159b2bc1f222f2e9a844e0b1a3b6c3f 100644
(file)
--- a/
examples/a382121.rs
+++ b/
examples/a382121.rs
@@
-114,7
+114,7
@@
fn largest_nimber_in_subfield(level: usize) -> FiniteNimber {
}
fn main() {
- for level in 0..1
2
{
+ for level in 0..1
3
{
let n = largest_nimber_in_subfield(level);
println!("{} -> {} -> {}", level, &n, minimal_polynomial(&n));
}