Esempio n. 1
0
  @Override
  public EdgeIteratorState getEdgeProps(int edgeId, int adjNode) {
    if (lg.isShortcut(edgeId))
      throw new IllegalStateException(
          "Do not fetch shortcuts from BaseGraph use the LevelGraph instead");

    return lg.getEdgeProps(edgeId, adjNode);
  }