summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--lib/algorithm.rb2
-rw-r--r--opentox-ruby.gemspec2
3 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 7f20734..e6d5cb8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.1 \ No newline at end of file
+1.0.2 \ No newline at end of file
diff --git a/lib/algorithm.rb b/lib/algorithm.rb
index c8cb116..167c964 100644
--- a/lib/algorithm.rb
+++ b/lib/algorithm.rb
@@ -246,7 +246,7 @@ module OpenTox
# Gauss kernel
# @return [Float]
def self.gauss(x, sigma = 0.3)
- d = 1.0 - x
+ d = 1.0 - x.to_f
Math.exp(-(d*d)/(2*sigma*sigma))
end
diff --git a/opentox-ruby.gemspec b/opentox-ruby.gemspec
index 2f4370a..289dacd 100644
--- a/opentox-ruby.gemspec
+++ b/opentox-ruby.gemspec
@@ -5,7 +5,7 @@
Gem::Specification.new do |s|
s.name = %q{opentox-ruby}
- s.version = "1.0.1"
+ s.version = "1.0.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Christoph Helma, Martin Guetlein, Andreas Maunz, Micha Rautenberg, David Vorgrimmler"]