Assert.assertEquals("Cavity matching answer is wrong", 13,
matcher.minCostCavityMatching(7, 5), 0.001);
TIntArrayList[] matching = matcher.getCavityMatching(7, 5);
IntPairComparator comp = new IntPairComparator();
ArrayList<IntPair> ans = new ArrayList<IntPair>();
ArrayList<IntPair> exp = new ArrayList<IntPair>();
ans.add(new IntPair(6, 3));