Goblint_lib.ListMatrix
module type SparseMatrix = sig ... end
module type SparseMatrixFunctor =
functor (A : RatOps.RatOps) ->
functor (V : SparseVector.SparseVectorFunctor) ->
sig ... end
module ListMatrix : SparseMatrixFunctor
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.