Goblint_lib.ArrayMatrix
module type ArrayMatrix = sig ... end
module type ArrayMatrixFunctor =
functor (A : RatOps.RatOps) ->
functor (V : ArrayVector.ArrayVectorFunctor) ->
sig ... end
Some functions inside have the suffix _with, which means that the function is not purely functional.
module ArrayMatrix : ArrayMatrixFunctor
Array-based matrix implementation. 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.