Treeviz

From HaskellWiki
Revision as of 03:39, 8 December 2013 by Dbanas (talk | contribs) (Added two additional categories.)
Jump to navigation Jump to search

A set of types, classes, and functions for visualizing computation decomposition trees.

Introduction

This library can assist you in visualizing how computation is broken down, or decomposed, by certain Divide-And-Conquer type algorithms. Such algorithms are often capable of significantly reducing the order of complexity of an operation, by taking advantage of recursions, which occur when the original input is broken into halves, thirds, etc. Such repeated recursive breakdown often produces tree structures from an initially linear data input. And being able to visualize how the elements of these trees are recombined, when the operation is evaluated, can help us make smarter choices about how to apply a particular type of massively parallel computational resource to the computational problem.