Skip to content

Commit

Permalink
Fix correct number of clusters in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliabaldini committed Jul 23, 2024
1 parent 66dfc87 commit 3e737db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ilp.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class TestILP(unittest.TestCase):
def test_circles(self) -> None:
X = pd.read_csv("tests/datasets/circlesuneven.csv")
ilp = ExactKMeans(X=X, k=4)
ilp = ExactKMeans(X=X, k=3)
res = ilp.fit()

print("Found objective value:", res["objective"])
Expand Down

0 comments on commit 3e737db

Please sign in to comment.