Difference between revisions of "Chart research"

From PublicWiki
Jump to: navigation, search
m (Other Topics)
Line 4: Line 4:
 
* The [[Chartrunner]] interprets charts and realizes them
 
* The [[Chartrunner]] interprets charts and realizes them
 
* [[Chart_uncertainties]] is a place for our hopes and dreams (nightmares welcome!)
 
* [[Chart_uncertainties]] is a place for our hopes and dreams (nightmares welcome!)
 +
* [[Network chart|Network charts]] represent networks of computers, each distinctly represented by a chart.  We need to find the simplest way to allow this (simple as measured in the elements needed to describe it, as distinct from other problems we have already solved).
  
 
==Overview==
 
==Overview==

Revision as of 00:28, 14 December 2005

This page is for the development of the chart notation and its computational models. Fork it as it grows. Keep an overview of each topic here. This is research so schizophrenia is ok: just make it clear that the voice is changing.

Other Topics

  • The Chartrunner interprets charts and realizes them
  • Chart_uncertainties is a place for our hopes and dreams (nightmares welcome!)
  • Network charts represent networks of computers, each distinctly represented by a chart. We need to find the simplest way to allow this (simple as measured in the elements needed to describe it, as distinct from other problems we have already solved).

Overview

A chart is an acyclic directed graph. Programs can be run on its nodes and communicate as described by its edges.

Dataflow can be represented with charts, but charts are meant to be a more general notation: they are not at all an architectural model (as dataflow tends to be). Charts are a general computational model. They are probably not equivalent to the pi calculus.

Notation

The current chart notation lists local names for a node's inputs and outputs.

(in1, in2 : out1, out2) node1

A set of nodes, placed in square brackets, represents a chart. A chart can realize a node, so the following could be used where the above is called for:

(in1, in2 : out1, out2)
[ (in1 : chan1) node_a
  (in2 : chan2) node_b
  (chan1, chan2 : out1, chan3) node_c
  (chan3 : out2) node_d
]                          

The following rules explain this:

  • All names are strictly local. The block's channels in and out are the only external names; likewise, each node has access only to the names given to it in its input/output.
  • Every pipe must be connected at both ends. Each end may be connected only once: so each pipe will connect exactly two nodes.
  • Each pipe must be first used as a node's output (or as the input to the block) and only then as a node's input (or as the output of the block).
  • Typing is not performed at chart level. The assumption is made that both ends of a pipe communicate in the same format, in the same units, and with the same mechanism. For more, see Chartrunner

External Links

Language Paradigms

Dataflow Programming at c2

FlowBased Programming at c2

Distributed systems & deadlocks

Deadlock overview

The Cilk Project