bluss

Results 912 comments of bluss

I suggest copying this snippet from matrixmultiply and testing it like that. Just using stable, don't need any older version. (The "ensure_no_std/Cargo.toml" in this link also needs to be changed...

MSRV changed to 1.64 on master. Maybe that can solve some problems (but it wasn't changed because of this PR).

Best would be if you could squash together the changes into one commit. The merge queue preserves commits, but here we don't want to save the history. (The merge queue...

Great, I'm working on the release #1401 which is overdue (to say the least)

[toposort](https://docs.rs/petgraph/0.6.5/petgraph/algo/fn.toposort.html) uses the graph traits, so it supports various inputs, including adapted graphs. For example if [NodeFiltered](https://docs.rs/petgraph/0.6.5/petgraph/visit/struct.NodeFiltered.html) is used to induce a subgraph, that should work - something like `toposort(NodeFiltered::from_fn(&g,...

Previous discussion about ndarray 0.16, rust-numpy and ndarray-linalg: https://github.com/rust-ndarray/ndarray/discussions/1374

Ok, that comment was maybe not super helpful - ndarray 0.16 got a few more changes since that happened. But I think it points out that ndarray-linalg doesn't need to...

Some more deprecated methods were removed in ndarray post adamreichold's test. I would suggest maybe restricting to ndarray 0.15 and 0.16 if possible (this is not my project -- just...

thanks everyone for working on this :100:

#1647 is similar, but I wasn't sure if it was the same.