Open
Description
Would like to have a less programatic way of performing moa dnf reductions and onf.
Current implementation is as follows.
reduction_rules = {
((ast.NodeSymbol.PSI,), (None, ((ast.NodeSymbol.ASSIGN,),),)): _reduce_psi_assign,
....
}
def _reduce_psi_assign(context):
"""<i j> psi ... assign ... => <i j> psi ... assign <i j> psi ..."""
return ast.create_context(
ast=ast.Node((ast.NodeSymbol.ASSIGN,), context.ast.shape, (), (
ast.Node((ast.NodeSymbol.PSI,), context.ast.shape, (), (ast.select_node(context, (0,)).ast, ast.select_node(context, (1, 0)).ast)),
ast.Node((ast.NodeSymbol.PSI,), context.ast.shape, (), (ast.select_node(context, (0,)).ast, ast.select_node(context, (1, 1)).ast)))),
symbol_table=context.symbol_table)
rule: list of operations transforming ast
How far can this take me?
cc @saulshanabrook would like to talk about approach
Metadata
Metadata
Assignees
Labels
No labels