项目作者: JuliaMatrices

项目描述 :
Julia package for hierarchical matrices
高级语言: Julia
项目地址: git://github.com/JuliaMatrices/HierarchicalMatrices.jl.git
创建时间: 2017-01-16T23:04:55Z
项目社区:https://github.com/JuliaMatrices/HierarchicalMatrices.jl

开源协议:Other

下载


HierarchicalMatrices.jl

Build Status AppVeyor

This package provides a flexible framework for hierarchical data types in Julia.

Create your own hierarchical matrix as simply as:

  1. julia> using HierarchicalMatrices
  2. julia> @hierarchical MyHierarchicalMatrix LowRankMatrix Matrix

The invocation of the @hierarchical macro creates an abstract supertype
AbstractMyHierarchicalMatrix{T} <: AbstractMatrix{T} and the immutable type
MyHierarchicalMatrix, 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 a
HierarchicalMatrix.

See the example on speeding up the matrix-vector product with Cauchy matrices.

Implementation

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!