From 7831fb69acc1c971f684ad411113548040c88f92 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Wed, 2 Dec 2009 03:55:08 +0000 Subject: [PATCH] Reverting last commit (bad refactoring). git-svn-id: svn://svn.syncleus.com/dANN/tags/java_dann-1.3@496 6ae8b97b-f314-0410-8212-aecf10b92ded --- src/com/syncleus/dann/Brain.java | 10 +++++----- src/com/syncleus/dann/DannException.java | 10 +++++----- src/com/syncleus/dann/InputNeuron.java | 10 +++++----- .../dann/InvalidConnectionTypeDannException.java | 10 +++++----- src/com/syncleus/dann/Neuron.java | 10 +++++----- src/com/syncleus/dann/NeuronGroup.java | 10 +++++----- src/com/syncleus/dann/NeuronImpl.java | 10 +++++----- src/com/syncleus/dann/OutputNeuron.java | 10 +++++----- src/com/syncleus/dann/Synapse.java | 10 +++++----- .../syncleus/dann/SynapseDoesNotExistException.java | 10 +++++----- .../syncleus/dann/SynapseNotConnectedException.java | 10 +++++----- .../syncleus/dann/activation/ActivationFunction.java | 10 +++++----- .../dann/activation/GausianActivationFunction.java | 10 +++++----- .../activation/HyperbolicSecantActivationFunction.java | 10 +++++----- .../HyperbolicTangentActivationFunction.java | 10 +++++----- .../dann/activation/SineActivationFunction.java | 10 +++++----- src/com/syncleus/dann/backprop/BackpropNeuron.java | 10 +++++----- .../syncleus/dann/backprop/BackpropNeuronGroup.java | 10 +++++----- .../syncleus/dann/backprop/InputBackpropNeuron.java | 10 +++++----- .../syncleus/dann/backprop/OutputBackpropNeuron.java | 10 +++++----- .../hyperassociativemap/BrainHyperassociativeMap.java | 10 +++++----- .../dann/hyperassociativemap/HyperassociativeMap.java | 10 +++++----- .../dann/hyperassociativemap/HyperassociativeNode.java | 8 ++++---- .../syncleus/dann/hyperassociativemap/Hyperpoint.java | 10 +++++----- .../hyperassociativemap/NeighborNotFoundException.java | 10 +++++----- .../NeuronHyperassociativeNode.java | 10 +++++----- .../dann/visualization/HyperassociativeMapCanvas.java | 10 +++++----- .../HyperassociativeMapVisualization.java | 10 +++++----- src/com/syncleus/tests/dann/TestDannException.java | 8 ++++---- .../dann/TestInvalidConnectionTypeDannException.java | 8 ++++---- src/com/syncleus/tests/dann/TestNeuronGroup.java | 8 ++++---- src/com/syncleus/tests/dann/TestSynapse.java | 8 ++++---- .../tests/dann/TestSynapseDoesNotExistException.java | 8 ++++---- .../tests/dann/TestSynapseNotConnectedException.java | 8 ++++---- src/com/syncleus/tests/dann/TestXor.java | 10 +++++----- .../tests/dann/activation/TestActivationValues.java | 8 ++++---- .../tests/dann/backprop/TestBackpropNeuronGroup.java | 8 ++++---- .../LayeredHyperassociativeMap.java | 8 ++++---- .../TestBrainHyperassociativeMap.java | 8 ++++---- .../hyperassociativemap/TestHyperassociativeNode.java | 8 ++++---- .../tests/dann/hyperassociativemap/TestHyperpoint.java | 8 ++++---- .../dann/hyperassociativemap/TestLayeredLoopMap.java | 8 ++++---- .../TestNeighborNotFoundException.java | 8 ++++---- 43 files changed, 200 insertions(+), 200 deletions(-) diff --git a/src/com/syncleus/dann/Brain.java b/src/com/syncleus/dann/Brain.java index 14a8aa26..da5ccc01 100644 --- a/src/com/syncleus/dann/Brain.java +++ b/src/com/syncleus/dann/Brain.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -28,7 +28,7 @@ import java.util.*; * <br/> * This class is abstract and must be extended in order to be used. * - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/DannException.java b/src/com/syncleus/dann/DannException.java index d58bba73..87e13567 100644 --- a/src/com/syncleus/dann/DannException.java +++ b/src/com/syncleus/dann/DannException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * or inherit from it. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/InputNeuron.java b/src/com/syncleus/dann/InputNeuron.java index f8cb719a..c892f99c 100644 --- a/src/com/syncleus/dann/InputNeuron.java +++ b/src/com/syncleus/dann/InputNeuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * you to input data into the brain for processing. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @param <SN> The type of Neuron allowed to connect to this Neuron. * @param <DN> The type of Neuron this Neuron is allowed to connect to. * @since 1.0 diff --git a/src/com/syncleus/dann/InvalidConnectionTypeDannException.java b/src/com/syncleus/dann/InvalidConnectionTypeDannException.java index f1b3da45..09be474c 100644 --- a/src/com/syncleus/dann/InvalidConnectionTypeDannException.java +++ b/src/com/syncleus/dann/InvalidConnectionTypeDannException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * invalid. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/Neuron.java b/src/com/syncleus/dann/Neuron.java index 0ca46acc..4a06442a 100644 --- a/src/com/syncleus/dann/Neuron.java +++ b/src/com/syncleus/dann/Neuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -27,7 +27,7 @@ import java.util.Set; * All neurons will connect to other neurons as well as be able to disconnect. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @param <SN> Source Neurons allowed to connect to this Neuron. * @param <DN> Destination Neurons this Neuron is allowed to connect to. * @since 1.0 diff --git a/src/com/syncleus/dann/NeuronGroup.java b/src/com/syncleus/dann/NeuronGroup.java index 1b6ba719..17ee1d19 100644 --- a/src/com/syncleus/dann/NeuronGroup.java +++ b/src/com/syncleus/dann/NeuronGroup.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -28,7 +28,7 @@ import java.util.Set; * A special NetworkNode which can contain other NetworkNodes as children. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 */ public class NeuronGroup<N extends NeuronImpl> implements java.io.Serializable diff --git a/src/com/syncleus/dann/NeuronImpl.java b/src/com/syncleus/dann/NeuronImpl.java index 70ec3680..69754ff6 100644 --- a/src/com/syncleus/dann/NeuronImpl.java +++ b/src/com/syncleus/dann/NeuronImpl.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -29,7 +29,7 @@ import java.util.*; * function handling. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @param <SN> Source Neurons allowed to connect to this Neuron. * @param <DN> Destination Neurons this Neuron is allowed to connect to. * @since 1.0 diff --git a/src/com/syncleus/dann/OutputNeuron.java b/src/com/syncleus/dann/OutputNeuron.java index c5f198ea..b7594235 100644 --- a/src/com/syncleus/dann/OutputNeuron.java +++ b/src/com/syncleus/dann/OutputNeuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * output data from the brain after processing. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @param <SN> The type of Neuron allowed to connect to this Neuron. * @param <DN> The type of Neuron this Neuron is allowed to connect to. * @since 1.0 diff --git a/src/com/syncleus/dann/Synapse.java b/src/com/syncleus/dann/Synapse.java index b08c8f81..655c6c69 100644 --- a/src/com/syncleus/dann/Synapse.java +++ b/src/com/syncleus/dann/Synapse.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * connection weights are stores and manipulated. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 * @see com.syncleus.dann.Neuron diff --git a/src/com/syncleus/dann/SynapseDoesNotExistException.java b/src/com/syncleus/dann/SynapseDoesNotExistException.java index d62c731a..e7f46bb8 100644 --- a/src/com/syncleus/dann/SynapseDoesNotExistException.java +++ b/src/com/syncleus/dann/SynapseDoesNotExistException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann; * This indicates that a required synapse does not exist. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/SynapseNotConnectedException.java b/src/com/syncleus/dann/SynapseNotConnectedException.java index 96795ad2..e03bb065 100644 --- a/src/com/syncleus/dann/SynapseNotConnectedException.java +++ b/src/com/syncleus/dann/SynapseNotConnectedException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -22,7 +22,7 @@ package com.syncleus.dann; * This means a synapse is not a connected synpase. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/activation/ActivationFunction.java b/src/com/syncleus/dann/activation/ActivationFunction.java index 8f1bc251..5b6d8103 100644 --- a/src/com/syncleus/dann/activation/ActivationFunction.java +++ b/src/com/syncleus/dann/activation/ActivationFunction.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann.activation; * derivative. This is used in propogating as well as backpropogating activity. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/activation/GausianActivationFunction.java b/src/com/syncleus/dann/activation/GausianActivationFunction.java index a1551c65..c510b5d8 100644 --- a/src/com/syncleus/dann/activation/GausianActivationFunction.java +++ b/src/com/syncleus/dann/activation/GausianActivationFunction.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -22,7 +22,7 @@ package com.syncleus.dann.activation; * An implementation of an activation function using a gausian function. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/activation/HyperbolicSecantActivationFunction.java b/src/com/syncleus/dann/activation/HyperbolicSecantActivationFunction.java index 08e8f571..4f884f25 100644 --- a/src/com/syncleus/dann/activation/HyperbolicSecantActivationFunction.java +++ b/src/com/syncleus/dann/activation/HyperbolicSecantActivationFunction.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann.activation; * function. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/activation/HyperbolicTangentActivationFunction.java b/src/com/syncleus/dann/activation/HyperbolicTangentActivationFunction.java index 32308fc4..5a3d288d 100644 --- a/src/com/syncleus/dann/activation/HyperbolicTangentActivationFunction.java +++ b/src/com/syncleus/dann/activation/HyperbolicTangentActivationFunction.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -23,7 +23,7 @@ package com.syncleus.dann.activation; * function. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/activation/SineActivationFunction.java b/src/com/syncleus/dann/activation/SineActivationFunction.java index f0451d92..495e1ac5 100644 --- a/src/com/syncleus/dann/activation/SineActivationFunction.java +++ b/src/com/syncleus/dann/activation/SineActivationFunction.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -22,7 +22,7 @@ package com.syncleus.dann.activation; * An implementation of an activation function using a sine function. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/backprop/BackpropNeuron.java b/src/com/syncleus/dann/backprop/BackpropNeuron.java index f490b485..0e760140 100644 --- a/src/com/syncleus/dann/backprop/BackpropNeuron.java +++ b/src/com/syncleus/dann/backprop/BackpropNeuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -30,7 +30,7 @@ import java.util.Hashtable; * Neurons in the same way. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 * @see com.syncleus.dann.Synapse diff --git a/src/com/syncleus/dann/backprop/BackpropNeuronGroup.java b/src/com/syncleus/dann/backprop/BackpropNeuronGroup.java index ded0d0ff..cffd8a26 100644 --- a/src/com/syncleus/dann/backprop/BackpropNeuronGroup.java +++ b/src/com/syncleus/dann/backprop/BackpropNeuronGroup.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -25,7 +25,7 @@ import java.util.*; * A NeuronGroup which contains only BackpropNeurons. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/backprop/InputBackpropNeuron.java b/src/com/syncleus/dann/backprop/InputBackpropNeuron.java index a525b9d1..8dd33ad2 100644 --- a/src/com/syncleus/dann/backprop/InputBackpropNeuron.java +++ b/src/com/syncleus/dann/backprop/InputBackpropNeuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -27,7 +27,7 @@ import com.syncleus.dann.activation.*; * This is a special type of BackpropNeuron that receives input. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/backprop/OutputBackpropNeuron.java b/src/com/syncleus/dann/backprop/OutputBackpropNeuron.java index 17aa9678..6accd679 100644 --- a/src/com/syncleus/dann/backprop/OutputBackpropNeuron.java +++ b/src/com/syncleus/dann/backprop/OutputBackpropNeuron.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -25,7 +25,7 @@ import com.syncleus.dann.activation.*; * This is a special type of neuron that provides the output. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @see com.syncleus.dann.backprop.InputBackpropNeuron */ diff --git a/src/com/syncleus/dann/hyperassociativemap/BrainHyperassociativeMap.java b/src/com/syncleus/dann/hyperassociativemap/BrainHyperassociativeMap.java index 79c8b503..678040d0 100644 --- a/src/com/syncleus/dann/hyperassociativemap/BrainHyperassociativeMap.java +++ b/src/com/syncleus/dann/hyperassociativemap/BrainHyperassociativeMap.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -26,7 +26,7 @@ import java.util.*; * An hyperassociative map used to represent a Brain. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @version 1.0 * @since 1.0 */ diff --git a/src/com/syncleus/dann/hyperassociativemap/HyperassociativeMap.java b/src/com/syncleus/dann/hyperassociativemap/HyperassociativeMap.java index ff5b3ca4..4ef136f8 100644 --- a/src/com/syncleus/dann/hyperassociativemap/HyperassociativeMap.java +++ b/src/com/syncleus/dann/hyperassociativemap/HyperassociativeMap.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -25,7 +25,7 @@ import java.util.*; * Represents a collection of interconnected hyperassociative map nodes. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/hyperassociativemap/HyperassociativeNode.java b/src/com/syncleus/dann/hyperassociativemap/HyperassociativeNode.java index 88799437..80456612 100644 --- a/src/com/syncleus/dann/hyperassociativemap/HyperassociativeNode.java +++ b/src/com/syncleus/dann/hyperassociativemap/HyperassociativeNode.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/dann/hyperassociativemap/Hyperpoint.java b/src/com/syncleus/dann/hyperassociativemap/Hyperpoint.java index c2aff976..f78f51a3 100644 --- a/src/com/syncleus/dann/hyperassociativemap/Hyperpoint.java +++ b/src/com/syncleus/dann/hyperassociativemap/Hyperpoint.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -26,7 +26,7 @@ import java.util.List; * coordinate systems and hyperspherical coordinate systems. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/hyperassociativemap/NeighborNotFoundException.java b/src/com/syncleus/dann/hyperassociativemap/NeighborNotFoundException.java index 3ef7cf90..7b660313 100644 --- a/src/com/syncleus/dann/hyperassociativemap/NeighborNotFoundException.java +++ b/src/com/syncleus/dann/hyperassociativemap/NeighborNotFoundException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -24,7 +24,7 @@ import com.syncleus.dann.*; * An exception thrown to indicate that no neighbor nodes currently exist. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/hyperassociativemap/NeuronHyperassociativeNode.java b/src/com/syncleus/dann/hyperassociativemap/NeuronHyperassociativeNode.java index e373354c..cfa1b4b6 100644 --- a/src/com/syncleus/dann/hyperassociativemap/NeuronHyperassociativeNode.java +++ b/src/com/syncleus/dann/hyperassociativemap/NeuronHyperassociativeNode.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -26,7 +26,7 @@ import java.util.HashSet; * A HyperassociativeNode that is representing a Neuron. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @version 1.0 * @since 1.0 */ diff --git a/src/com/syncleus/dann/visualization/HyperassociativeMapCanvas.java b/src/com/syncleus/dann/visualization/HyperassociativeMapCanvas.java index ceb9e1ea..607e391e 100644 --- a/src/com/syncleus/dann/visualization/HyperassociativeMapCanvas.java +++ b/src/com/syncleus/dann/visualization/HyperassociativeMapCanvas.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -31,7 +31,7 @@ import javax.vecmath.*; * A Canvas3D specifically for displaying a HyperassociativeMap. * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/dann/visualization/HyperassociativeMapVisualization.java b/src/com/syncleus/dann/visualization/HyperassociativeMapVisualization.java index 4e4bc98d..daff288f 100644 --- a/src/com/syncleus/dann/visualization/HyperassociativeMapVisualization.java +++ b/src/com/syncleus/dann/visualization/HyperassociativeMapVisualization.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -36,7 +36,7 @@ import java.util.Hashtable; * A BranchGroup representing a HyperAssociativeMap * * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. * @since 1.0 * @version 1.0 */ diff --git a/src/com/syncleus/tests/dann/TestDannException.java b/src/com/syncleus/tests/dann/TestDannException.java index 399faad4..fccb171f 100644 --- a/src/com/syncleus/tests/dann/TestDannException.java +++ b/src/com/syncleus/tests/dann/TestDannException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestInvalidConnectionTypeDannException.java b/src/com/syncleus/tests/dann/TestInvalidConnectionTypeDannException.java index 7c0a5850..1aa7e8a7 100644 --- a/src/com/syncleus/tests/dann/TestInvalidConnectionTypeDannException.java +++ b/src/com/syncleus/tests/dann/TestInvalidConnectionTypeDannException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestNeuronGroup.java b/src/com/syncleus/tests/dann/TestNeuronGroup.java index 98dd7211..b19ed512 100644 --- a/src/com/syncleus/tests/dann/TestNeuronGroup.java +++ b/src/com/syncleus/tests/dann/TestNeuronGroup.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestSynapse.java b/src/com/syncleus/tests/dann/TestSynapse.java index 85db2450..fef7f3c7 100644 --- a/src/com/syncleus/tests/dann/TestSynapse.java +++ b/src/com/syncleus/tests/dann/TestSynapse.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestSynapseDoesNotExistException.java b/src/com/syncleus/tests/dann/TestSynapseDoesNotExistException.java index aa4d7691..4f928cef 100644 --- a/src/com/syncleus/tests/dann/TestSynapseDoesNotExistException.java +++ b/src/com/syncleus/tests/dann/TestSynapseDoesNotExistException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestSynapseNotConnectedException.java b/src/com/syncleus/tests/dann/TestSynapseNotConnectedException.java index a96e74bc..92b5af86 100644 --- a/src/com/syncleus/tests/dann/TestSynapseNotConnectedException.java +++ b/src/com/syncleus/tests/dann/TestSynapseNotConnectedException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/TestXor.java b/src/com/syncleus/tests/dann/TestXor.java index 7092904d..e24aa307 100644 --- a/src/com/syncleus/tests/dann/TestXor.java +++ b/src/com/syncleus/tests/dann/TestXor.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * @@ -29,7 +29,7 @@ import org.junit.*; * returns false (-1) if none all of its inputs are false or if more then one * of its inputs are true. * <!-- Author: Jeffrey Phillips Freeman --> - * @author Jeffrey Phillips Freeman + * @author Syncleus, Inc. */ public class TestXor { diff --git a/src/com/syncleus/tests/dann/activation/TestActivationValues.java b/src/com/syncleus/tests/dann/activation/TestActivationValues.java index 35362472..4bec96db 100644 --- a/src/com/syncleus/tests/dann/activation/TestActivationValues.java +++ b/src/com/syncleus/tests/dann/activation/TestActivationValues.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/backprop/TestBackpropNeuronGroup.java b/src/com/syncleus/tests/dann/backprop/TestBackpropNeuronGroup.java index e6f69b85..39a55417 100644 --- a/src/com/syncleus/tests/dann/backprop/TestBackpropNeuronGroup.java +++ b/src/com/syncleus/tests/dann/backprop/TestBackpropNeuronGroup.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/LayeredHyperassociativeMap.java b/src/com/syncleus/tests/dann/hyperassociativemap/LayeredHyperassociativeMap.java index d7228e39..d58fa48f 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/LayeredHyperassociativeMap.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/LayeredHyperassociativeMap.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/TestBrainHyperassociativeMap.java b/src/com/syncleus/tests/dann/hyperassociativemap/TestBrainHyperassociativeMap.java index 5370ac2d..67155670 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/TestBrainHyperassociativeMap.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/TestBrainHyperassociativeMap.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperassociativeNode.java b/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperassociativeNode.java index b5cb4dae..bcaf3e21 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperassociativeNode.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperassociativeNode.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperpoint.java b/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperpoint.java index a72e25b2..147529f8 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperpoint.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/TestHyperpoint.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/TestLayeredLoopMap.java b/src/com/syncleus/tests/dann/hyperassociativemap/TestLayeredLoopMap.java index bb7768c9..d3929098 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/TestLayeredLoopMap.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/TestLayeredLoopMap.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * diff --git a/src/com/syncleus/tests/dann/hyperassociativemap/TestNeighborNotFoundException.java b/src/com/syncleus/tests/dann/hyperassociativemap/TestNeighborNotFoundException.java index cb9f013f..98375c63 100644 --- a/src/com/syncleus/tests/dann/hyperassociativemap/TestNeighborNotFoundException.java +++ b/src/com/syncleus/tests/dann/hyperassociativemap/TestNeighborNotFoundException.java @@ -1,17 +1,17 @@ /****************************************************************************** * * - * Copyright: (c) Jeffrey Phillips Freeman * + * Copyright: (c) Syncleus, Inc. * * * * You may redistribute and modify this source code under the terms and * * conditions of the Open Source Community License - Type C version 1.0 * - * or any later version as published by Jeffrey Phillips Freeman at www.syncleus.com. * + * or any later version as published by Syncleus, Inc. at www.syncleus.com. * * There should be a copy of the license included with this file. If a copy * * of the license is not included you are granted no right to distribute or * * otherwise use this file except through a legal and valid license. You * - * should also contact Jeffrey Phillips Freeman at the information below if you cannot * + * should also contact Syncleus, Inc. at the information below if you cannot * * find a license: * * * - * Jeffrey Phillips Freeman * + * Syncleus, Inc. * * 2604 South 12th Street * * Philadelphia, PA 19148 * * * -- GitLab