An open API service indexing awesome lists of open source software.

https://github.com/rappdw/redblackgraph.jl

Red Black Graph - A DAG of Interleaved Binary Trees
https://github.com/rappdw/redblackgraph.jl

graph julia

Last synced: 12 months ago
JSON representation

Red Black Graph - A DAG of Interleaved Binary Trees

Awesome Lists containing this project

README

          

# RedBlackGraph.jl - A DAG of Multiple, Interleaved Binary Trees

[![Documentation](https://github.com/rappdw/RedBlackGraph.jl/actions/workflows/Documentation.yml/badge.svg)](https://github.com/rappdw/RedBlackGraph.jl/actions/workflows/Documentation.yml)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://rappdw.github.io/RedBlackGraph.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://rappdw.github.io/RedBlackGraph.jl/dev)
[![Build Status](https://ci.appveyor.com/api/projects/status/7f3nqx8oq02pdewy/branch/main?svg=true)](https://ci.appveyor.com/project/rappdw/redblackgraph-jl/branch/main)
[![Coverage](https://codecov.io/gh/rappdw/RedBlackGraph.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/rappdw/RedBlackGraph.jl)

## Introduction
Red-Black Graphs are a specific type of graph, a directed acyclic graph of interleaved binary trees. This data
structure resulted from exploration of efficient representations for family history. This package presents and
implements the underlying linear algebra as well as discusses some interesting applications.

This Julia module is a port/rewrite of the [python implementation](https://github.com/rappdw/redblackgraph)