summaryrefslogtreecommitdiff
path: root/lib/algorithm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/algorithm.rb')
-rw-r--r--lib/algorithm.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/algorithm.rb b/lib/algorithm.rb
index 9918110..c5d162a 100644
--- a/lib/algorithm.rb
+++ b/lib/algorithm.rb
@@ -45,7 +45,6 @@ module OpenTox
end
class Similarity
-
def self.weighted_tanimoto(fp_a,fp_b,p)
common_features = fp_a & fp_b
all_features = fp_a + fp_b
@@ -59,7 +58,6 @@ module OpenTox
0.0
end
end
-
end
end