コード例 #1
0
ファイル: test_dispatch.py プロジェクト: c-mori/blaze-core
def test_match1():
    expr = parse('Add(1,2)')
    fn, cost = lookup(expr)
コード例 #2
0
ファイル: test_dispatch.py プロジェクト: renjiec/blaze-core
def test_match1():
    expr = parse('Add(1,2)')
    fn, cost = lookup(expr)
コード例 #3
0
ファイル: test_dispatch.py プロジェクト: c-mori/blaze-core
def test_match2():
    expr = parse('Mul(1,2)')
    fn, cost = lookup(expr)
コード例 #4
0
ファイル: test_dispatch.py プロジェクト: renjiec/blaze-core
def test_match2():
    expr = parse('Mul(1,2)')
    fn, cost = lookup(expr)