kmeans: don't include the point header as it's unneeded

This commit is contained in:
Danny Robson 2024-08-06 14:47:21 +10:00
parent 71d9a71b20
commit a856edeb2c

View File

@ -8,12 +8,13 @@
#pragma once
#include "debug/assert.hpp"
#include "iterator/zip.hpp"
#include "point.hpp"
#include <cruft/util/debug/assert.hpp>
#include <cruft/util/iterator/zip.hpp>
#include <cruft/util/view.hpp>
#include <iterator>
namespace cruft {
// a simplistic implementation of Lloyd's algorithm
//