示例#1
0
 def view(self):
     """
     Generate a representation of the Iteration/Expression tree rooted in ``self``.
     """
     from devito.ir.iet.visitors import printAST
     return printAST(self)
示例#2
0
文件: nodes.py 项目: speglich/devito
 def view(self):
     """A representation of the IET rooted in ``self``."""
     from devito.ir.iet.visitors import printAST
     return printAST(self)