Skip to content

Commit

Permalink
Rename IDGCA to IGDCA
Browse files Browse the repository at this point in the history
It's incremental grid density clustering algorithm (IGDCA)
  • Loading branch information
jagandecapri committed May 29, 2018
1 parent 5dfd60e commit 8df0354
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions tree/IDGCA_benchmark_test.go → tree/IGDCA_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ func BenchmarkIGDCAVaryPoints(b *testing.B){
min := int(math.Pow(10.0, float64(j)))
max := int(math.Pow(10.0, float64(j+1)))
b.Run(fmt.Sprintf("%v/min-max=%d-%d/num_grids=%d", test.name, min, max, num_grids), func(b *testing.B){
b.StopTimer()
grids, min_dense_points, min_cluster_points := setupGrids(min, max, 8)
b.StartTimer()
for n := 0; n < b.N; n++{
b.StopTimer()
grids, min_dense_points, min_cluster_points := setupGrids(min, max, 8)
b.StartTimer()
test.fun(b, grids, min_dense_points, min_cluster_points)
}
})
Expand All @@ -83,10 +83,10 @@ func BenchmarkIGDCAVarySubspaces(b *testing.B){
min := 10
max := 100
b.Run(fmt.Sprintf("%v/min-max=%d-%d/num_grids=%d", test.name, min, max, num_grids), func(b *testing.B){
b.StopTimer()
grids, min_dense_points, min_cluster_points := setupGrids(10, 100, num_grids)
b.StartTimer()
for n := 0; n < b.N; n++{
b.StopTimer()
grids, min_dense_points, min_cluster_points := setupGrids(10, 100, num_grids)
b.StartTimer()
test.fun(b, grids, min_dense_points, min_cluster_points)
}
})
Expand Down
File renamed without changes.

0 comments on commit 8df0354

Please sign in to comment.