Closed DanielVandH closed 4 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 90.53%. Comparing base (
d315ce3
) to head (33a160e
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I'll deal with LTS later
Need this to support multiplication between infinite matrices, as found in https://github.com/DanielVandH/InfiniteRandomArrays.jl/issues/5.
To make sure the methods are being tested properly, I extended the minimal InfiniteArrays.jl module in the tests to include a (hopefully minimal) definition of an infinite vector and an infinite matrix, and the resulting named matrices to mimic those from InfiniteRandomMatrices.jl.
InfVec
andInfMat
were initially just matrices which returned the indices, e.g.InfVec()[i] = i
, but I wanted to be sure the methods were properly copying the data and accessing the correct entries, so I convert it into a random vector.