Skip to content
Snippets Groups Projects
Commit 16de3005 authored by Jan Hoenig's avatar Jan Hoenig
Browse files

Fixed minor bugs. Done testing on (un)official LLVMJitPrinter. It looks promissing after all.

parent a27a31c5
No related merge requests found
......@@ -291,7 +291,7 @@ class LoopOverCoordinate(Node):
textwrap.indent(str(self.body), '\t'))
def __repr__(self):
return 'loop {!s} from {!s} to {!s} step{!s}'.format(self.loopCounterName, self.start, self.stop, self.step)
return 'loop:{!s} in {!s}:{!s}:{!s}'.format(self.loopCounterName, self.start, self.stop, self.step)
class SympyAssignment(Node):
......
from sympy.printing.printer import Printer
from graphviz import Digraph
from graphviz import Digraph, lang
class DotPrinter(Printer):
......@@ -9,6 +9,7 @@ class DotPrinter(Printer):
def __init__(self, **kwargs):
super().__init__()
self.dot = Digraph(**kwargs)
self.dot.quote_edge = lang.quote
def _print_KernelFunction(self, function):
self.dot.node(repr(function))
......@@ -39,7 +40,7 @@ def dotprint(ast, view=False, **kwargs):
Returns a string which can be used to generate a DOT-graph
:param ast: The ast which should be generated
:param view: Boolen, if rendering of the image directly should occur.
:param kwargs: is directly passed to the DotPrinter class
:param kwargs: is directly passed to the DotPrinter class: http://graphviz.readthedocs.io/en/latest/api.html#digraph
:return: string in DOT format
"""
printer = DotPrinter(**kwargs)
......
File moved
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment