Пример #1
0
 public boolean isReachable(Pair<? extends Area, Point2D> a, Pair<? extends Area, Point2D> b) {
   StandardMove sm = (StandardMove) moves.get(StandardMove.class.hashCode());
   return sm.isReachable(a, b, this.nodesUnion);
 }
Пример #2
0
 public boolean isReachable(Area a, Area b) {
   StandardMove sm = (StandardMove) moves.get(StandardMove.class.hashCode());
   return sm.isReachable(a, b, this.nodesUnion);
 }