summaryrefslogtreecommitdiff
path: root/src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java
diff options
context:
space:
mode:
authorErich Schubert <erich@debian.org>2012-06-30 00:55:33 +0200
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 22:30:34 +0000
commit4343785ebed9d4145f417d86d581f18a0d31e4ac (patch)
tree546b0aa227d50caf4246be12f89ffcbae924f8e0 /src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java
parent593eae6c91717eb9f4ff5088ba460dd4210509c0 (diff)
parentace5fa7f57d49756c0e1b111a30f3b6a9436c1cb (diff)
Import Debian changes 0.5.0-1
elki (0.5.0-1) unstable; urgency=low * New upstream release: 0.5.0 final.
Diffstat (limited to 'src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java')
-rw-r--r--src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java b/src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java
index 7c6f0dc5..ae221ca7 100644
--- a/src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java
+++ b/src/de/lmu/ifi/dbs/elki/algorithm/Algorithm.java
@@ -53,11 +53,8 @@ public interface Algorithm extends Parameterizable {
*
* @param database the database to run the algorithm on
* @return the Result computed by this algorithm
- * @throws IllegalStateException if the algorithm has not been initialized
- * properly (e.g. the setParameters(String[]) method has been failed
- * to be called).
*/
- Result run(Database database) throws IllegalStateException;
+ Result run(Database database);
/**
* Get the input type restriction used for negotiating the data query.