Ejemplo n.º 1
0
        public Experiment1(int variant)
        {
            points = FileService.readPoints();
            kmeans = new KMeansAlgorithm();
            this.RandClusters(variant);

            iteration = kmeans.StartAlgorithm(ref points, ref clusters);
        }