Hi all!
I'm working on an assignment for uni, where it's suggested to use a performant language, as Python just won't cut it. No points for guess which language I want to use.. We're implementing simple evolutionary algorithms, and are free to use any libraries. I searched around and found eviolite that seems to be what I need. However, I'm unable to even get the example code running..
I get an error message:
error[E0599]: no function or associated item named `random_using` found for struct `ArrayBase` in the current scope
--> src/main.rs:24:28
|
24 | Polynomial(Array1::random_using(
| ^^^^^^^^^^^^ function or associated item not found in `ArrayBase<OwnedRepr<_>, Dim<[usize; 1]>>`
...which takes me to a closed Github issue with the ndarray crate (oh, the rabbit holes...) but it's really old, and from what I can gather, shouldn't be a problem any more...?
I could be missing something obvious...?
Are there any other similar crates that are known to work better?
Thanks in advance for all your help!
Thomas