tensorflow_gnn/graph/schema_validation.py [305:311]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  with tf.name_scope("constraints_edge_indices_range"):
    checks = []
    for set_name, edge_set in graph.edge_sets.items():
      adjacency = edge_set.adjacency
      if not issubclass(type(adjacency), adj.HyperAdjacency):
        raise ValueError(f"Adjacency type for constraints assertions must be "
                         f"HyperAdjacency: {adjacency}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tensorflow_gnn/graph/schema_validation.py [341:347]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  with tf.name_scope("constraints_edge_indices_range"):
    checks = []
    for set_name, edge_set in graph.edge_sets.items():
      adjacency = edge_set.adjacency
      if not issubclass(type(adjacency), adj.HyperAdjacency):
        raise ValueError(f"Adjacency type for constraints assertions must be "
                         f"HyperAdjacency: {adjacency}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



