aboutsummaryrefslogtreecommitdiff
path: root/Week6/src/Configuration.java
diff options
context:
space:
mode:
Diffstat (limited to 'Week6/src/Configuration.java')
-rw-r--r--Week6/src/Configuration.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/Week6/src/Configuration.java b/Week6/src/Configuration.java
deleted file mode 100644
index 7264c5f..0000000
--- a/Week6/src/Configuration.java
+++ /dev/null
@@ -1,21 +0,0 @@
-import java.util.Collection;
-
-
-/**
- * An interface for representing nodes in a state space.
- *
- * @author Sjaak Smetsers
- * @version 1.2
- * @date 28-02-2015
- */
-public interface Configuration extends Comparable<Configuration> {
- /*
- * To obtain the successors for a specific configuration
- * @return a collection of configurations containing the successors
- */
- public Collection<Configuration> successors ();
- /*
- * For marking final / solution configurations.
- */
- public boolean isSolution ();
-}