diff --git a/src/com/syncleus/dann/Brain.java b/src/com/syncleus/dann/Brain.java index 14a8aa2639e947ad4a0725716d32f4691097a6be..da5ccc01f4d4a63ee63e1cbbf01168ac26325f3f 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 d58bba73d6513803a5b7539863d9d9a3bdb2adab..87e135674774355e50910c767d13c7e1355104ad 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 f8cb719aa95b68a99b481c63e910e6b64c6aa9d3..c892f99c748aa3dcfe446994602fa5a2a28691b3 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 f1b3da4571f2f540ba0a86268a4c00dbf6fd8e84..09be474c3fd70c3410663b55e842c4209ef91820 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 71c2c83470f930e91ce21f6a02a8efb2590ec2fc..9a7254687aa79079a42534c5755856012f3793bb 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 1b6ba719f25431a3226a0abe3cfe0b26a07fb04d..17ee1d19f6ca7f6a5ca2f95d335f3385bd18463f 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 95acf0a09f0ab6b30645c5a73aa541ca56ef9f08..63aa30990ea145e602c6b14d0ed361f66a013f64 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 c5f198ea599d08541152c5d6439855b0663b9833..b7594235516de1e9d259f065e1a81afe31dfcb91 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 b08c8f819c1ebb144eedbac839d00914e8918e4f..655c6c691e5a54ab5495cc590d75457b34a4d550 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 d62c731aed7ea567944852a49b8c70969b457f25..e7f46bb81d5b7a5dfeb9a3c9bd79cf43db0f2cc4 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 96795ad22aa6af815bcf7da7ab5e85818bbf6f83..e03bb0657f5f521113881727ffc0b25c5d656c42 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 8f1bc2512609ba7bd903b53a3ef3b313351f41fc..5b6d81039c35d2b910335826dccbbeeff2dd19a0 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 a1551c6561d721b90714ddee2853feb6bea51aab..c510b5d8cc841d33eafb4d36edc456d623ea518e 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 08e8f5716c243ba9c9c24bbbf00e220f57d9d253..4f884f25a7b357c524c10ed3ac15fb5bc55fcdf7 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 32308fc4a2654578da42344b28d15b9ae1e4c21e..5a3d288dc93c32f013ee352a750c85d8e31020c1 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 f0451d9240f0d129ced52dd32ef157b86068401d..495e1ac543c44161fc1142cf28d001dee862cc54 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 a5273f45b48d9aebe8f708b27a2638fba55e7593..bbe7ba94225a68c274dc2e433e0d6152402a9b31 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 ded0d0ff067fa88feed4a86d636f51afbc30412b..cffd8a264fca3190af3835dceccca07fc7312efd 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 a525b9d1f44958afddd91cb3caa28d68c7c688ec..8dd33ad2d3523188ea4b1c48c6bd513b6acf9f50 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 17aa9678cac87b143dd4a54b5895a7cd03a9cc89..6accd679324a22c5746ed7541c942311ca0e15f8 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 79c8b503d25429a6e05fefca2897fee685b15406..678040d04d33f225d871dedea660a87fdd838ca8 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 ff5b3ca4129bddb0bb726b8773e01850e5322a6a..4ef136f8c4a51158a36e4146e4369d0ddfd07c30 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 8879943781b276f94f92c1339a7ceba7f6b2ce25..80456612f5c3329e2363db8ceca17f39204c902a 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 c2aff9766d6bbc689c6f3cc653897d84a0b44a5b..f78f51a378cb717363dd11529604c80abafb1e4c 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 3ef7cf9073975c312b37301fca2cc22af808074c..7b660313ef04e8a21315afc6cb3d9dd6f00f92e5 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 e373354cb367a339c3c07555eba4735b0700edd0..cfa1b4b615fc63e8b4fbada196fe78453308cb49 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 ceb9e1eaba85bab8d3de46d2d1beca573d15f00c..607e391ee7f9b6a01adcc4492073243f044de3a5 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 4e4bc98d2d46c60771053053136ea75f0c95c873..daff288f7e83205f94c519066f8603c145f5899a 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 399faad4dafbf4bc88e94060bb0b1b09c22c572e..fccb171f04be438d20a6762fc202d7d8ed0e12d6 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 7c0a5850b5f343f6f99968e4d45118ed0280bf85..1aa7e8a7fbf5b2a19964986666344114c47bf3e3 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 98dd7211b7851a48e51254c90466c29888fb69e7..b19ed5129d0bf673c9a2a1ef116d6ba4b9cfda4e 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 85db24500d713d0ce54d8b29368ca8ad0a244455..fef7f3c7a3097f1083b21bc0b61afdf717d5f7fa 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 aa4d76914a5d798e13a79386d6d192c2aa65b50b..4f928cef09c817ac97d4ca68a24480d7cfced161 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 a96e74bc4c39ff7851eda5bf4db951fd66025947..92b5af86773031b8862b9eefa2c257d8426a68c6 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 7092904dd2cf7bac9674e360a3bb70372a6fcb0d..e24aa307d75f912af9275e1ab7f65573cfd6e639 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 353624723edaa8b41353ad1970a097ca9c31a349..4bec96db6e27bbecd0ae100b3592cda2c59981a9 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 e6f69b850e88efb4e6b853124f63f4697c6ee138..39a5541705a9b7ae3b391f154bb797244364ba9e 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 d7228e3922c10576df655393f4ccd4009085282d..d58fa48f9baa36f13e0ad72cc13cdfffa2e1740f 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 5370ac2df6ac38fa95d27e6f1074b64f21d2401a..671556702b971ab5f9715fa678995a7cd06b8a3c 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 b5cb4daeb5f51fb19de9a54d511fc8ea073a3d90..bcaf3e217027a251a2f4a084457c36dc8c2d0a75 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 a72e25b23c1705d5859c95a739ed6d9301df224a..147529f862c0cc485057acf3ba451a923e05deb8 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 bb7768c967c04a5a708e332d3c2556b61abdbab0..d39290988d6836f97fa61ee8ff109c4aba4da74d 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 cb9f013f44853f0e7fbb2eae9749c49065af2795..98375c63841e0a128de8fd21a77f129972c2cd47 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 * * *