Skip to content

Commit

Permalink
#521: OPTICS optimization - update file CHANGES.
Browse files Browse the repository at this point in the history
  • Loading branch information
annoviko committed Jul 16, 2019
1 parent 56bc237 commit 7538f59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ CHANGE NOTES FOR 0.9.0 (STARTED Apr 14, 2019), (RELEASED: -)
------------------------------------------------------------------------

GENERAL CHANGES:
- Optimization of K-Medians algorithm by parallel processing (pyclustering.cluster.kmedians).
- Optimization of OPTICS algorithm by reducing complexity (ccore.clst.optics).
See: https://github.com/annoviko/pyclustering/issues/521

- Optimization of K-Medians algorithm by parallel processing (ccore.clst.kmedians).
See: https://github.com/annoviko/pyclustering/issues/529

- Introduced 'predict' method for K-Medoids algorithm to find closest clusters for particular points (pyclustering.cluster.kmedoids).
Expand Down
2 changes: 1 addition & 1 deletion ccore/src/cluster/optics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class optics : public cluster_algorithm {
private:
struct neighbor_descriptor {
public:
std::size_t m_index = INVALID_INDEX;
std::size_t m_index = INVALID_INDEX;
double m_reachability_distance = 0;

public:
Expand Down

0 comments on commit 7538f59

Please sign in to comment.