MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / RNode

Method RNode

JSAT/src/jsat/linear/vectorcollection/RTree.java:148–153  ·  view source on GitHub ↗

Creating a new leaf node @param points

(List<V> points)

Source from the content-addressed store, hash-verified

146 * @param points
147 */
148 public RNode(List<V> points)
149 {
150 this.points = points;
151 children = new ArrayList<RNode<V>>();
152 bound = Rectangle.contains(points);
153 }
154
155 public RNode()
156 {

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected