tower120
tower120
I am aware of `overflowing_shl` behavior in Rust. I personally need behavior, where shifting left too far results in zero (like in old x86 `shl` instructions). And the thing is,...
I'll take a look at it. Sorry for delay.
The reason for that, is that max range for 128bit container is actually `127^3`, not `128^3`. At each level one block occupied for "empty" pointers (for performance reasons - to...
On main branch and in release now.
PR https://github.com/Lokathor/wide/pull/229
So... Does something missing or wrong with this PR?
Thank you.
As an error you return `Cycle` with "problem" node index (I guess any one of them): ``` if let Some(cycle_index) = degree.iter().position(|&x| x > 0) { Err(Cycle(g.from_index(degree[cycle_index]))) ``` How can...
Looks like all errors are "cosmetic". Your CI `indexmap` errors https://github.com/petgraph/petgraph/actions/runs/19783792277/job/56693261323?pr=921#step:6:52 - is the thing that actually causing the tests to fail. When you fix them, and if you chose...