Assert.assertArrayEquals("Found the wrong clique", expected, arr);
TIntArrayList ans2 = maximalWeightedClique.findMaximumWeightedClique(
weights, new TIntArrayList(new int[] { 6 }));
ans2.sort();
int[] arr2 = ans2.toArray();
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 }));