Beispiel #1
0
 public static IEnumerable <Operation> new_tf_operations(Graph graph)
 {
     foreach (var c_op in tf_operations(graph))
     {
         if (graph._get_operation_by_tf_operation(c_op) == null)
         {
             yield return(c_op);
         }
     }
 }