Module Goblint_lib.ListMatrix

val timing_wrap : 'a -> ('b -> 'c) -> 'b -> 'c
module type SparseMatrix = sig ... end
module type SparseMatrixFunctor = functor (A : RatOps.RatOps) -> functor (V : SparseVector.SparseVectorFunctor) -> sig ... end

Matrix implementation that uses a list of (ideally sparse) vectors representing its rows. It provides a normalization function to reduce a matrix into reduced row echelon form. Operations exploit that the input matrix/matrices are in reduced row echelon form already.