int[] expected2 = new int[] { 3, 4, 5, 6 };
Assert.assertArrayEquals("Found the wrong clique", expected2, arr2);
TIntArrayList ans3 = maximalWeightedClique.findMaximumWeightedClique(
weights, new TIntArrayList(new int[] { 6, 3 }));
ans3.sort();
int[] arr3 = ans3.toArray();
int[] expected3 = new int[] { 1, 2, 3 };
Assert.assertArrayEquals(
"Found the wrong clique " + Arrays.toString(arr3), expected3,
arr3);