Julia package for hierarchical matrices
This package provides a flexible framework for hierarchical data types in Julia.
Create your own hierarchical matrix as simply as:
julia> using HierarchicalMatrices
julia> @hierarchical MyHierarchicalMatrix LowRankMatrix Matrix
The invocation of the @hierarchical
macro creates an abstract supertypeAbstractMyHierarchicalMatrix{T} <: AbstractMatrix{T}
and the immutable typeMyHierarchicalMatrix
, endowing it with fields of HierarchicalMatrixblocks
,LowRankMatrixblocks
, Matrixblocks
, and a matrix of integers, assigned
, to
determine which type of block is active. The package comes pre-loaded with aHierarchicalMatrix
.
See the example on speeding up the matrix-vector product with Cauchy matrices.
A straightforward implementation of hierarchical (self-referential) data types
might suffer from Russell’s paradox. In the context of types, Russell’s paradox
states that either you know the type, or you know its fields, but neither
concretely. On one side of the paradox, you end up with type-stable constructors
and type-unstable getters; on the other side, you are stuck with type-unstable
constructors and type-stable getters.
This implementation of hierarchical data types avoids Russell’s paradox at the
cost of restricting the entire list of concrete matrix types that are the fields
upon construction. This allows for fast and type-stable setters and getters.
Enjoy!