UNPKG

reqack

Version:

elastic logic circuit tools

22 lines (19 loc) 657 B
'use strict'; const fhyper = require('./fhyper'); const fhyperVerilog = require('./fhyper-verilog'); const fhyperDot = require('./fhyper-dot'); const fhyperDagre = require('./fhyper-dagre'); const fhyperManifest = require('./fhyper-manifest'); const nodeForkCtrl = require('./node-fork-ctrl'); const nodeMacros = require('./node-macros'); const hls = require('./hls'); const dagre = require('dagre'); exports.circuit = fhyper; exports.verilog = fhyperVerilog; exports.dot = fhyperDot; exports.svg = fhyperDagre; exports.manifest = fhyperManifest; exports.macros = nodeMacros; exports.ctrl = {fork: nodeForkCtrl}; exports.hls = hls; exports.dagre = dagre;