forked from Empact/hierclust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
66 lines (47 loc) · 1.77 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
== 0.3.0 2010-11-05
* 1 api change
* Clusterer.cluster takes a hash of options, rather than positional arguments for resolution & separation
* 2 minor enhancements
* Pass the :nils option to Cluster.cluster to provide a stand-in for nil values
* Allow Clusterer.cluster to apply resolution without separation
== 0.2.2 2010-11-01
* 1 minor enhancement
* Flatten incoming Point coordinates so that we can pass them as an array as well
* Make Clusterer resolution and separation arguments hash-based
== 0.2.1 2010-11-01
* 1 minor enhancement
* Add Point#data, which is set to the options hash from the initializer
== 0.2.0 2010-11-01
* 1 major enhancement:
* Clustering & Points now support N dimensions (up from 2)
* 1 minor enhancement:
* Switch to jeweler
== 0.1.5 2008-03-21
* 1 minor enhancement:
* added cluster radius
* 1 new example script:
* demonstrates SVG rendering of points and clusters
== 0.1.4 2008-02-13
* 1 minor enhancement:
* gave linear-time preclustering an independent "resolution" parameter
* 1 bugfix:
* corrected cluster coordinate calculation
== 0.1.3 2008-02-10
* 1 performance improvement
* added linear-time preclustering based on minimum separation distance
* 1 major change:
* when minimum separation is given, the clusterer will no longer calculate
and return clusters smaller than "separation / 2.0"
== 0.1.2 2008-02-07
* 1 performance improvement
* refactored Distances to be more intelligent about precalculated values
* 1 bugfix:
* correct degenerate case of Hierclust::Point.points
== 0.1.1 2008-02-04
* 1 minor enhancement:
* add method for returning flattened list of points in a cluster
* 1 bugfix:
* correct intermittent failure of Clusterer spec
== 0.1.0 2008-02-01
* 1 major enhancement:
* Initial release