Closed kolstae closed 3 years ago
Not sure how to fix CI / test (nightly). Doesn't seem to be related to my change
CI can be fixed by removing -Zpackage-features
from line 128 in ci.yml
. This was a check for consistency of feature-flags, but has now been stabilised
CI can be fixed by removing
-Zpackage-features
from line 128 inci.yml
. This was a check for consistency of feature-flags, but has now been stabilised
Should I do this in this PR though?
We can avoid the extra type by changing TripletMatBase
to have separate types for row and columns with a default type, as done with CsMatBase
. This is a ton more work with little benefit, tri matrices are only intended for construction as of now.
I'm happy with type annotations, they should be elided by type coercion in most cased as mentioned by vbarrielle
I'm sorry but I'm not able make cargo build sprs-ldl
with sprs_suitesparse_ldl
and sprs_suitesparse_camd
enabled. Could you help me?
Did nigthly break the -p
option? Seems you have to specify package now, use --features sprs-ldl/sprs_suitesparse_ldl
All right, thanks @kolstae and @mulimoen for figuring out the CI fix. Specifying features of dependencies is clearly a pain point in rust...
It would be good to convert triplet matrix to a cs with chosen
Iptr
type. There might be a way to letIptr = I
as default?