visual-systems / philosophy

Overall philosophical documentation of what this system will aim to achieve and how it will be constructed.
6 stars 1 forks source link

Bidirectional Serialised Data-Format for Graph #19

Open sordina opened 5 years ago

sordina commented 5 years ago

Read and write serialised format for graph. Possibly in Dhall.

Represent the graph in a serialised format.

Potential Example:

---
    types:
        number: Integer
    nodes:
        x: number
        y: number
    processes:
        add:
            type: number -> number -> number
            implementation: (+)
    edges:
        - (x, add)
        - (y, add)