Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / extensions / middle / AddIsCyclicAttribute.py
index c2616ad..d70495d 100644 (file)
@@ -1,5 +1,5 @@
 """
- Copyright (c) 2018 Intel Corporation
+ Copyright (c) 2018-2019 Intel Corporation
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
 """
 
 import networkx as nx
+
+from mo.graph.graph import Graph
 from mo.middle.replacement import MiddleReplacementPattern
 
 
 class AddIsCyclicAttribute(MiddleReplacementPattern):
+    enabled = True
+
+    def run_after(self):
+        from extensions.middle.DeleteControlFlowEdges import DeleteControlFlowEdges
+        return [DeleteControlFlowEdges]
+
+    def run_before(self):
+        return []
+
     @staticmethod
-    def find_and_replace_pattern(graph: nx.MultiDiGraph):
+    def find_and_replace_pattern(graph: Graph):
         is_acyclic = nx.is_directed_acyclic_graph(graph)
-        graph.graph['is_cyclic'] = not is_acyclic
\ No newline at end of file
+        graph.graph['is_cyclic'] = not is_acyclic