feldspar-compiler-0.1: Compiler for the Feldspar languageSource codeContentsIndex
Feldspar.Fs2dot
Description
Fs2dot is to help us create a visualisation of an algorithm written in Feldspar by converting its graph into dot format -- which can be further processed by the Graphviz suite.
Synopsis
fs2dot :: Program prg => prg -> DOTSource
writeDot :: Program prg => FilePath -> prg -> IO ()
type DOTSource = String
Documentation
fs2dotSource
:: Program prg
=> prgDOT language source
-> DOTSource
fs2dot takes a Feldspar function as its argument and produces DOT language source.
writeDotSource
:: Program prg
=> FilePathFeldspar function
-> prg
-> IO ()
writeDot creates a DOT language format source file. Expected arguments are the desired filename and the Feldspar function to be output in DOT language.
type DOTSource = StringSource
This is for clarity.
Produced by Haddock version 2.6.0