GithubHelp home page GithubHelp logo

hyperast's Introduction

HyperAST

A (currently experimental) frontend to open-hypergraphs which lets you define open hypergraphs in a pointful (i.e., not point-free ) style. Here's a 1-bit adder circuit:

@hypergraph
def adder(x0, x1):
    y0 = x0 + x1 # sum
    y1 = x0 * x1 # carry
    return [y0, y1]

This builds an open hypergraph representing a string diagram like this:

adder diagram

Unlike python code, hypergraphs are fully combinatorial: there is no implicit assumption of 'causal' control flow. For example, we can define a hypergraphs with feedback, such as a ring oscillator:

@hypergraph
def ring_oscillator():
    x0 = node()
    x1 = ~x0 # we use x0 before declaring it - this is OK!
    unify(x0, ~x1) # connect x0 and x1
    return [x0]

This defines a string diagram like the one below:

ring oscillator diagram

Alternative interface

There is also a WIP alternative interface which inspects python syntax to define a hypergraph. Variables serve as hypernodes while functions and python operators are (labeled) hyperedges. The first example looks the same:

@hypergraph
def adder(x0, x1):
    y0 = x0 + x1 # sum
    y1 = x0 * x1 # carry
    return [y0, y1]

... but there is less overhead when writing hypergraphs with more unusual structure:

@hypergraph
def ring_oscillator():
    x1 = ~x0 # we use x0 before declaring it - this is OK
    x0 = ~x1
    return [x0]

Unlike the normal interface, this style does not execute the python code; it only inspects it.

hyperast's People

Contributors

cobord avatar statusfailed avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.