From d63d3145f0f2abcee1bb88457324f4aaf9b9320e Mon Sep 17 00:00:00 2001
From: Eduardo Pedroni <ep625@york.ac.uk>
Date: Sat, 8 Mar 2014 14:48:25 +0000
Subject: Slowly refactoring Parameters to fit the GUI a little better...

---
 src/jcgp/function/Arithmetic.java   | 123 -------------------------
 src/jcgp/function/BitwiseLogic.java | 178 ------------------------------------
 src/jcgp/function/BooleanLogic.java | 178 ------------------------------------
 src/jcgp/function/Function.java     |  12 ---
 src/jcgp/function/FunctionSet.java  |  39 --------
 5 files changed, 530 deletions(-)
 delete mode 100644 src/jcgp/function/Arithmetic.java
 delete mode 100644 src/jcgp/function/BitwiseLogic.java
 delete mode 100644 src/jcgp/function/BooleanLogic.java
 delete mode 100644 src/jcgp/function/Function.java
 delete mode 100644 src/jcgp/function/FunctionSet.java

(limited to 'src/jcgp/function')

diff --git a/src/jcgp/function/Arithmetic.java b/src/jcgp/function/Arithmetic.java
deleted file mode 100644
index b0bd5ca..0000000
--- a/src/jcgp/function/Arithmetic.java
+++ /dev/null
@@ -1,123 +0,0 @@
-package jcgp.function;
-
-import jcgp.Parameters;
-import jcgp.exceptions.InvalidArgumentsException;
-import jcgp.population.Connection;
-
-public class Arithmetic {
-
-	public static class Addition extends Function {
-
-		private int arity = 2;
-
-		@Override
-		public Integer run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Integer arg1 = ((Integer) connections[0].getValue());
-				Integer arg2 = ((Integer) connections[1].getValue());
-				Integer result = arg1 + arg2;
-
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " + " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Subtraction extends Function {
-
-		private int arity = 2;
-
-		@Override
-		public Integer run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Integer arg1 = ((Integer) connections[0].getValue());
-				Integer arg2 = ((Integer) connections[1].getValue());
-				Integer result = arg1 - arg2;
-
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " - " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Multiplication extends Function {
-
-		private int arity = 2;
-
-		@Override
-		public Integer run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Integer arg1 = ((Integer) connections[0].getValue());
-				Integer arg2 = ((Integer) connections[1].getValue());
-				Integer result = arg1 * arg2;
-
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " * " + arg2 + " = " + result);
-				}
-				
-
-				return result;
-			} 
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Division extends Function {
-
-		private int arity = 2;
-
-		@Override
-		public Integer run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Integer arg1 = ((Integer) connections[0].getValue());
-				Integer arg2 = ((Integer) connections[1].getValue());
-				Integer result;
-				if (arg2 == 0) {
-					result = 0;
-				} else {
-					result = arg1 / arg2;
-				}
-				
-
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " / " + arg2 + " = " + result);
-				}
-				
-
-				return result;
-			} 
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-	
-}
diff --git a/src/jcgp/function/BitwiseLogic.java b/src/jcgp/function/BitwiseLogic.java
deleted file mode 100644
index 55f5df0..0000000
--- a/src/jcgp/function/BitwiseLogic.java
+++ /dev/null
@@ -1,178 +0,0 @@
-package jcgp.function;
-
-import jcgp.Parameters;
-import jcgp.exceptions.InvalidArgumentsException;
-import jcgp.population.Connection;
-
-public class BitwiseLogic {
-
-	public static class And extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 & arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " AND " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-	
-	public static class Or extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 | arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " OR " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Not extends Function {	
-		private int arity = 1;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int result = ~arg1;
-				if (Parameters.getDebug()) {
-					System.out.println("NOT " + arg1 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Xor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 ^ arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " XOR " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Nand extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 & arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " NAND " + arg2 + " = " + ~result);
-				}
-				return ~result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Nor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 | arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " NOR " + arg2 + " = " + ~result);
-				}
-				return ~result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Xnor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Object run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				int arg1 = ((int) connections[0].getValue());
-				int arg2 = ((int) connections[1].getValue());
-				int result = arg1 ^ arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " XNOR " + arg2 + " = " + ~result);
-				}
-				return ~result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	
-	
-}
diff --git a/src/jcgp/function/BooleanLogic.java b/src/jcgp/function/BooleanLogic.java
deleted file mode 100644
index 713dcf8..0000000
--- a/src/jcgp/function/BooleanLogic.java
+++ /dev/null
@@ -1,178 +0,0 @@
-package jcgp.function;
-
-import jcgp.Parameters;
-import jcgp.exceptions.InvalidArgumentsException;
-import jcgp.population.Connection;
-
-public class BooleanLogic {
-
-	public static class And extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 && arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " AND " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-	
-	public static class Or extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 || arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " OR " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Not extends Function {	
-		private int arity = 1;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean result = !arg1;
-				if (Parameters.getDebug()) {
-					System.out.println("NOT " + arg1 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Xor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 ^ arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " XOR " + arg2 + " = " + result);
-				}
-				return result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Nand extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 && arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " NAND " + arg2 + " = " + !result);
-				}
-				return !result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Nor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 || arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " NOR " + arg2 + " = " + !result);
-				}
-				return !result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	public static class Xnor extends Function {	
-		private int arity = 2;
-
-		@Override
-		public Boolean run(Connection... connections) {
-			if (connections.length < arity) {
-				throw new InvalidArgumentsException("Not enough connections were given.");
-			} else {
-				Boolean arg1 = ((Boolean) connections[0].getValue());
-				Boolean arg2 = ((Boolean) connections[1].getValue());
-				Boolean result = arg1 ^ arg2;
-				if (Parameters.getDebug()) {
-					System.out.println(arg1 + " XNOR " + arg2 + " = " + !result);
-				}
-				return !result;
-			}
-		}
-
-		@Override
-		public int getArity() {
-			return arity;
-		}
-	}
-
-	
-	
-}
diff --git a/src/jcgp/function/Function.java b/src/jcgp/function/Function.java
deleted file mode 100644
index 584421a..0000000
--- a/src/jcgp/function/Function.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package jcgp.function;
-
-import jcgp.exceptions.InvalidArgumentsException;
-import jcgp.population.Connection;
-
-public abstract class Function {
-		
-	public abstract Object run(Connection ... connections) throws InvalidArgumentsException;
-	
-	public abstract int getArity();
-	
-}
diff --git a/src/jcgp/function/FunctionSet.java b/src/jcgp/function/FunctionSet.java
deleted file mode 100644
index cbe2f05..0000000
--- a/src/jcgp/function/FunctionSet.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package jcgp.function;
-
-/**
- * 
- * TODO: if function set flexibility is desired (i.e. add more functions as the program runs)
- * an add function method should be created
- * this would lead to concurrency problems, so tread lightly!
- * 
- * 
- * @author Eduardo Pedroni
- *
- */
-public class FunctionSet {
-		private Function[] functionList;
-		private int maxArity = 0;
-		
-		public FunctionSet(Function ... functions) {
-			functionList = functions;
-			
-			for (Function function : functionList) {
-				if (function.getArity() > maxArity) {
-					maxArity = function.getArity();
-				}
-			}
-			
-		}
-		
-		public int getFunctionCount() {
-			return functionList.length;
-		}
-		
-		public Function getFunction(int index) {
-			return functionList[index];
-		}
-		
-		public int getMaxArity(){
-			return maxArity;
-		}
-	}
\ No newline at end of file
-- 
cgit v1.2.3