Searched defs:BFSItem (Results 1 - 2 of 2) sorted by relevance

/ec/ECSpooler/backends/junit/junit_libs/
H A DGraphOriginal.java48 protected class BFSItem { class in class:GraphOriginal
52 public BFSItem(int c, int d, int p) { method in class:GraphOriginal.BFSItem
127 BFSItem[] table = new BFSItem[labels.size()];
131 table[i] = new BFSItem(WHITE, Integer.MAX_VALUE, -1);
H A DGraphOriginal2.java31 protected class BFSItem { class in class:GraphOriginal2
34 public BFSItem(int c, int d, int p) { method in class:GraphOriginal2.BFSItem
85 BFSItem[] table = new BFSItem[labels.size()];
89 table[i] = new BFSItem(WHITE, Integer.MAX_VALUE, -1);

Completed in 575 milliseconds