当前位置: 首页>>代码示例>>Python>>正文


Python FORA.splitControlFlowGraph方法代码示例

本文整理汇总了Python中ufora.native.FORA.splitControlFlowGraph方法的典型用法代码示例。如果您正苦于以下问题:Python FORA.splitControlFlowGraph方法的具体用法?Python FORA.splitControlFlowGraph怎么用?Python FORA.splitControlFlowGraph使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ufora.native.FORA的用法示例。


在下文中一共展示了FORA.splitControlFlowGraph方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_cfgSplitting_7

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_7(self):
        funString = "fun(f) { f(1) + f(2) }"
        cfg = self.parseStringToFunction(funString).toCFG(1)

        splits = ForaNative.splitControlFlowGraph(cfg, "block_0Let")

        self.assertTrue(splits is not None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:9,代码来源:ControlFlowGraphSplitter_test.py

示例2: test_cfgSplitting_5

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_5(self):
        funString = "fun(f) { (f(1) + f(2)) + f(3) }"
        cfg = self.parseStringToFunction(funString).toCFG(1)

        steps = ForaNative.extractApplyStepsFromControlFlowGraph(cfg, None)
        splits = ForaNative.splitControlFlowGraph(cfg, "block_0Let")
        self.assertTrue(splits is not None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:9,代码来源:ControlFlowGraphSplitter_test.py

示例3: test_cfgSplitting_1

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_1(self):
        cfg1 = self.parseStringToFunction("fun(f) { f(1) + f(1+3) }").toCFG(1)

        steps = ForaNative.extractApplyStepsFromControlFlowGraph(cfg1, "block_0Let")
        self.assertEqual(len(steps), 4)

        splits = ForaNative.splitControlFlowGraph(cfg1, "block_0Let")

        self.assertTrue(splits is not None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:11,代码来源:ControlFlowGraphSplitter_test.py

示例4: test_cfgSplitting_14

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_14(self):
        funString = "fun((f,g,h,k)) { k(f(1), g(2), h(3)) }"
        cfg = self.parseStringToFunction(funString).toCFG(1)
        splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")

        self.assertTrue(splits is not None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:8,代码来源:ControlFlowGraphSplitter_test.py

示例5: test_cfgSplitting_12

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_12(self):
        funString = "fun((f,g,h)) { f(g(h(1),2),3) }"
        cfg = self.parseStringToFunction(funString).toCFG(1)
        splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")

        self.assertTrue(splits is None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:8,代码来源:ControlFlowGraphSplitter_test.py

示例6: test_cfgSplitting_9

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_9(self):
        funString = "fun((f,g)) { 1 + (f() + g()) }"
        cfg = self.parseStringToFunction(funString).toCFG(1)
        splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")

        self.assertTrue(splits is not None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:8,代码来源:ControlFlowGraphSplitter_test.py

示例7: test_cfgSplitting_3

# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
    def test_cfgSplitting_3(self):
        cfg1 = self.parseStringToFunction("fun(f) { 1 }").toCFG(1)

        splits = ForaNative.splitControlFlowGraph(cfg1, None)

        self.assertTrue(splits is None)
开发者ID:Sandy4321,项目名称:ufora,代码行数:8,代码来源:ControlFlowGraphSplitter_test.py


注:本文中的ufora.native.FORA.splitControlFlowGraph方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。