(TransactionContext tcx, final String node)
| 76 | } |
| 77 | |
| 78 | public static ArrayList<String> getInNeighbors(TransactionContext tcx, final String node){ |
| 79 | return getNeighbors(tcx, node, inverse); |
| 80 | } |
| 81 | |
| 82 | private static ArrayList<String> getNeighbors(TransactionContext tcx, final String node, final Subspace domain){ |
| 83 | return tcx.run(new Function<Transaction,ArrayList<String> >(){ |