summaryrefslogtreecommitdiff
path: root/lib/algorithm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/algorithm.rb')
-rw-r--r--lib/algorithm.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/algorithm.rb b/lib/algorithm.rb
deleted file mode 100644
index f70ac1a..0000000
--- a/lib/algorithm.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module OpenTox
-
- module Algorithm
-
- # Execute an algorithm with parameters
- def self.run algorithm, parameters=nil
- klass,method = algorithm.split('.')
- Object.const_get(klass).send(method,parameters)
- end
-
- end
-end
-