Skip to content

Commit

Permalink
depend on Distances instead of Distance
Browse files Browse the repository at this point in the history
  • Loading branch information
lindahua committed Aug 26, 2014
1 parent c72d19c commit 4e43f00
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
julia 0.3-
ArrayViews 0.3-
Distance 0.4-
Distances
StatsBase 0.3-
2 changes: 1 addition & 1 deletion src/Clustering.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Clustering
using ArrayViews
using Distance
using Distances
using StatsBase

import Base: show
Expand Down
2 changes: 1 addition & 1 deletion test/affprop.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# simple program to test affinity propagation

using Base.Test
using Distance
using Distances
using Clustering

srand(34568)
Expand Down
2 changes: 1 addition & 1 deletion test/dbscan.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Base.Test
using Clustering
using Distance
using Distances

srand(34568)

Expand Down
2 changes: 1 addition & 1 deletion test/kmedoids.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Base.Test

using Distance
using Distances
using Clustering

srand(34568)
Expand Down
2 changes: 1 addition & 1 deletion test/seeding.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Clustering
using Distance: SqEuclidean, pairwise
using Distances: SqEuclidean, pairwise
using Base.Test

srand(34568)
Expand Down

0 comments on commit 4e43f00

Please sign in to comment.