code
stringlengths
3
1.18M
language
stringclasses
1 value
package de.anjaro.feature.impl; import java.io.IOException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import java.util.logging.Logger; import de.anjaro.controller.IAnjaroController; import de.anjaro.feature.ITwoMotorFeature; import de.anj...
Java
package de.anjaro.feature.impl; import java.io.IOException; import java.util.logging.Logger; import de.anjaro.controller.IAnjaroController; import de.anjaro.feature.IFeature; import de.anjaro.gpio.GpioFileWriter; import de.anjaro.gpio.GpioPin; public class RaspberryLedLightFeature implements IFeature { ...
Java
package de.anjaro.template; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.controller.impl.DefaultControllerImpl; import de.anjar...
Java
package de.anjaro.template; import java.util.ArrayList; import java.util.List; import java.util.Map; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.controller.impl.DefaultControllerImpl; import de.anjaro.dispatcher.impl.ObjectSerializeCommandDispatcher; import ...
Java
package de.anjaro.template; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.controller.i...
Java
package de.anjaro.template; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anja...
Java
package de.anjaro.gpio; /** * See http://www.raspberrypi.org/archives/1929#comment-31646 * @author pippo * */ public enum Revision { code2(1), code3(1), code4(2), code5(2), code6(2); private int revision; private Revision(final int revision) { this.revision = revision; } public int getRevision() { re...
Java
package de.anjaro.gpio; import static de.anjaro.util.AnjaroConstants.ARG_TEST_MODE; import java.io.ByteArrayOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.logging.Logger; import de.anjaro.feature.impl.RaspberryServoMotorFeature; imp...
Java
package de.anjaro.gpio; /** * See http://elinux.org/RPi_Low-level_peripherals#GPIO_Driving_Example_.28Bash_shell_script.29 * * @author pippo * */ public enum GpioPin { p3("0","2"), p5("1","3"), p7("4","4"), p11("17","17"), p13("21","27"), p15("22","22"), p19("10","10"), p21("9","9"), p23("11","11"), p8("14","...
Java
package de.anjaro.dispatcher.impl; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.logging.Logger; import de.anjaro.dispatcher.ICommandDispatcher; import de.anjaro.exception.Di...
Java
package de.anjaro.dispatcher.impl; import java.io.Serializable; import java.util.logging.Logger; import de.anjaro.dispatcher.ICommandDispatcher; import de.anjaro.exception.DispatcherException; import de.anjaro.model.Command; import de.anjaro.model.CommandResult; public class SimpleStringCommandDispatcher i...
Java
package de.anjaro.dispatcher.impl; import de.anjaro.exception.DispatcherException; import de.anjaro.model.CommandResult; import de.anjaro.util.DefaultAnjaroError; public class NetioCommandDispatcher extends SimpleStringCommandDispatcher { /** * * Not supported */ @Override public CommandResult getCommandRe...
Java
package de.anjaro.remote.impl; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.net.Socket; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.dispatcher.ICommandDispatcher; import de.anjaro.dispatcher.impl.ObjectSerializeCommandDispatcher; ...
Java
package de.anjaro.remote.impl; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.logging.Level; import java.util.logging.Logger; import javax.bluetooth.BluetoothStateException; import javax.bluetooth.DiscoveryAgent; i...
Java
package de.anjaro.remote.impl; import java.io.ByteArrayOutputStream; public class TEST { public static void main(final String[] args) { final ByteArrayOutputStream s = new ByteArrayOutputStream(); s.write(126); System.out.println(new String(s.toByteArray())); } }
Java
package de.anjaro.remote.impl; //import java.awt.Robot; //import java.awt.event.KeyEvent; //import java.io.InputStream; public class ProcessConnectionThread implements Runnable { // private final StreamConnection mConnection; // Constant that indicate command from devices private static final int EXIT...
Java
package de.anjaro.remote.impl; //import javax.bluetooth.BluetoothStateException; //import javax.bluetooth.DiscoveryAgent; //import javax.bluetooth.LocalDevice; //import javax.bluetooth.UUID; //import javax.microedition.io.Connector; //import javax.microedition.io.StreamConnection; //import javax.microedition.io....
Java
package de.anjaro.remote.impl; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java.net.Socket; import java.util.logging.Level; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.dispatcher.ICommandDispatc...
Java
package de.anjaro.remote.impl; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.dispatcher.ICommandDispatcher; import de.anjaro...
Java
package de.anjaro.controller.impl; import java.io.Serializable; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; ...
Java
package de.anjaro.bootstrap; //Tue Nov 2 18:33:43 EST 2004 // //Written by Sean R. Owens, sean at guild dot net, released to the //public domain. Share and enjoy. Since some people argue that it is //impossible to release software to the public domain, you are also free //to use this code under any version of the...
Java
package de.anjaro.bootstrap; import java.io.File; import java.util.logging.ConsoleHandler; import java.util.logging.Logger; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.util.AnjaroConstants; import de.anjaro.util.AnjaroFormatter; import de.anjaro.util.IShutdo...
Java
package de.anjaro.test.sensor; import de.anjaro.controller.IAnjaroController; import de.anjaro.event.IEvent; import de.anjaro.event.IEventListener; import de.anjaro.event.SimpleEvent; import de.anjaro.feature.IFeature; public class SensorTestFeature implements IFeature, IEventListener { private final SensorTest tes...
Java
package de.anjaro.test.sensor; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.feature.IFeature; import de.anjaro.feature.module.ISensor; import de.anjaro.remote.I...
Java
package de.anjaro.test.adapter; import java.util.List; import java.util.Map; import java.util.Properties; import de.anjaro.config.IConfigService; import de.anjaro.controller.IAnjaroController; import de.anjaro.feature.IFeature; import de.anjaro.feature.module.ISensor; import de.anjaro.remote.IInboundAdapter...
Java
package de.anjaro.config; import java.util.List; import java.util.Map; import de.anjaro.controller.IAnjaroController; import de.anjaro.feature.IFeature; import de.anjaro.feature.module.ISensor; import de.anjaro.remote.IInboundAdapter; import de.anjaro.remote.IOutboundAdapter; import de.anjaro.util.AnjaroCon...
Java
package de.anjaro.dispatcher; import de.anjaro.exception.DispatcherException; import de.anjaro.model.Command; import de.anjaro.model.CommandResult; import de.anjaro.remote.IAdapter; /** * The Interface ICommandDispatcher, dispatches incoming values to {@link Command} objects * and again back converts the {@link Com...
Java
package de.anjaro.exception; import de.anjaro.util.IAnjaroError; /** * The Class AnjaroException. * * @author Joachim Pasquali */ public class AnjaroException extends Exception { /** The Constant serialVersionUID. */ private static final long serialVersionUID = -2191700774781244017L; /** The e...
Java
package de.anjaro.exception; import de.anjaro.util.IAnjaroError; /** * The Class DispatcherException. * * @author Joachim Pasquali */ public class DispatcherException extends AnjaroException { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 469467849760593656...
Java
package de.anjaro.remote; import de.anjaro.model.Command; import de.anjaro.model.CommandResult; /** * The Interface IOutboundAdapter. * * @param <C> the generic type */ public interface IOutboundAdapter<C> extends IAdapter<C> { /** * Send command. * * @param pCommand the command * @return the command re...
Java
package de.anjaro.remote; import de.anjaro.config.IConfigService; import de.anjaro.dispatcher.ICommandDispatcher; /** * The Interface IAdapter. * * @param <C> the generic type */ public interface IAdapter<C> { /** * Gets the name. * * @return the name */ String getName(); void init(IConfigService pCo...
Java
package de.anjaro.remote; /** * The Interface IInboundAdapter. * * @param <C> the generic type */ public interface IInboundAdapter<C> extends IAdapter<C>, Runnable { }
Java
package de.anjaro.feature; import de.anjaro.model.Direction; import de.anjaro.model.MotorStatus; import de.anjaro.model.Speed; /** * The Interface ITwoMotorFeature for handling 2 motors. * * @author Joachim Pasquali */ public interface ITwoMotorFeature extends IFeature { /** * Start the right and left motors....
Java
package de.anjaro.feature; import de.anjaro.controller.IAnjaroController; /** * A feature is a behavior of the robot. * Features can be defined in the configuration and will than be * started by the system during startup. * This enables the developer, to run the robot in an autonomous mode. * A feature normally...
Java
package de.anjaro.feature; public interface ISimpleTwoMotorFeature extends IFeature { static final String NAME = "twoMotorFeature"; enum COMMANDS { stop, forward, backward, right, left, getSpeed, setSpeed}; void stop(); void forward(); void backward(); void right(); void left(); int getSpeed(); void...
Java
package de.anjaro.feature.module; import java.util.Properties; import de.anjaro.controller.IAnjaroController; public abstract class AbstractSensor implements ISensor { private final String id; protected IAnjaroController controller; public AbstractSensor(final String pId) { super(); this.id = pId; } @Ov...
Java
package de.anjaro.feature.module; import de.anjaro.controller.IAnjaroController; /** * The Interface IModule. A module can be a sensor or an actor. * * @see IActor * @see ISensor * * @author Joachim Pasquali */ public interface IModule extends Runnable { /** * Inits the module * * @param pController ...
Java
package de.anjaro.feature.module; import java.util.Properties; /** * The Interface ISensor. A sensor is everything, which receives information from the outside world, * which could change the behaviour of the robot. * This can be light sensors, ultra sonic sensors (e.g. distance measurement), etc. * * @author J...
Java
package de.anjaro.feature.module; /** * The Interface IActor. Actors are modules, which can do something. E.g. a motor can be an actor. * A robotic arm, etc. * * @author Joachim Pasquali */ public interface IActor extends IModule { }
Java
package de.anjaro.controller; import java.util.Properties; import de.anjaro.config.IConfigService; import de.anjaro.event.IEvent; import de.anjaro.event.IEventListener; import de.anjaro.model.Command; import de.anjaro.model.CommandResult; import de.anjaro.util.IShutdownListener; /** * The controller handles all the ...
Java
package de.anjaro.event; public interface IEvent<T> { String getSensorId(); String getName(); T getValue(); }
Java
package de.anjaro.event; public interface IEventListener { public void onEvent(IEvent<?> pEvent); }
Java
package de.anjaro.event; public class SimpleEvent implements IEvent<String> { private final String value; private final String sensorId; public final static String EVENT_NAME = "SIMPLE_EVENT"; public SimpleEvent(final String pSensorId, final String pValue) { super(); this.value = pValue; this.sensorId = p...
Java
package de.anjaro.util; import java.text.MessageFormat; /** * The Enum DefaultAnjaroError. Central enum for all error messages, which are send back to * sender (e.g. remote call from client) */ public enum DefaultAnjaroError implements IAnjaroError { /** The invalid json command. */ success(0, "successful"), ...
Java
package de.anjaro.util; /** * The Class AnjaroConstants. */ public class AnjaroConstants { /** The Constant ARG_TEST_MODE => anjaro.test. */ public static final String ARG_TEST_MODE = "anjaro.test"; /** The Constant ARG_CONFIG_CLASS => anjaro.config.class. */ public static final String ARG_CONFIG_CLASS = "anj...
Java
package de.anjaro.util; import java.io.PrintWriter; import java.io.StringWriter; import java.text.MessageFormat; import java.util.Date; import java.util.logging.Formatter; import java.util.logging.LogRecord; import java.util.logging.SimpleFormatter; /** * Simple formatter, which is logging the following i...
Java
package de.anjaro.util; /** * The Interface IAnjaroError. */ public interface IAnjaroError { /** * Gets the error code. * * @return the error code */ int getErrorCode(); /** * Gets the error message. * * @return the error message */ String getErrorMessage(); /** * ...
Java
package de.anjaro.util; import java.util.concurrent.Executors; import java.util.concurrent.ThreadFactory; import java.util.concurrent.atomic.AtomicInteger; /** * Simple ThreadFactory, which enables to set the thread group name. * * Name of the Thread will be set to: pool-[poolnumber]-thread-[threadNumber...
Java
package de.anjaro.util; /** * The listener interface for receiving IShutdown events. * The class that is interested in processing a IShutdown * event implements this interface, and the object created * with that class is registered with a component using the * component's <code>addIShutdownListener<code> m...
Java
package de.anjaro.util; import java.text.MessageFormat; import java.util.Date; import de.anjaro.model.CommandResult; /** * The Class CommandResultHelper. */ public class CommandResultHelper { /** * Creates the result. * * @param pError the error * @param pErrorParams the error params * @return the comm...
Java
package de.anjaro.model; import java.io.Serializable; import java.util.Arrays; /** * The Class Command. * * @author Joachim Pasquali */ public class Command implements Serializable { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 567595956434734947L; /** The feature name...
Java
package de.anjaro.model; /** * The Enum Direction. */ public enum Direction { /** The forward. */ forward, /** The backward. */ backward; }
Java
package de.anjaro.model; /** * The Enum Speed. */ public enum Speed { /** The speed0. */ speed0(0), /** The speed1. */ speed1(1), /** The speed2. */ speed2(2), /** The speed3. */ speed3(3), /** The speed4. */ speed4(4), /** The speed5. */ speed5(5), /** The speed6. */ speed6(6), /** The speed7. */ speed7(...
Java
package de.anjaro.model; import java.io.Serializable; import java.util.Date; /** * The Class CommandResult. */ public class CommandResult implements Serializable{ /** The Constant serialVersionUID. */ private static final long serialVersionUID = 5772483425559829364L; /** The error message. */ private String ...
Java
package de.anjaro.model; import java.io.Serializable; /** * The Class MotorStatus. */ public class MotorStatus implements Serializable { /** The Constant serialVersionUID. */ private static final long serialVersionUID = -2066685690254514667L; /** The direction. */ private Direction direction; /** The spee...
Java
package de.anjaro.btexample; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } ...
Java
/** Automatically generated file. DO NOT MODIFY */ package de.anjaro.btexample; public final class BuildConfig { public final static boolean DEBUG = true; }
Java
package com.animatedalgorithms; import java.io.IOException; import javax.servlet.http.*; @SuppressWarnings("serial") public class Animated_algorithmsServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/plain"); resp.getWri...
Java
package com.futonredemption.nokeyguard.activities; import org.beryl.app.AndroidVersion; import com.futonredemption.nokeyguard.Intents; import com.futonredemption.nokeyguard.R; import android.app.ActionBar; import android.content.Intent; import android.os.Bundle; import android.preference.PreferenceActivity...
Java
package com.futonredemption.nokeyguard.activities; import org.beryl.intents.IntentHelper; import com.futonredemption.nokeyguard.Constants; import com.futonredemption.nokeyguard.Intents; import com.futonredemption.nokeyguard.Preferences; import com.futonredemption.nokeyguard.R; import android.app.Activity; ...
Java
package com.futonredemption.nokeyguard; public class LockScreenState { public int Mode = Constants.MODE_Enabled; public boolean IsLockActive = false; }
Java
package com.futonredemption.nokeyguard; public class Preferences { public static class General { public static final String HideNotification = "PrefHideNotification"; } public static class Internal { public static final String ToggleState = "Preference_KeyguardToggleState"; } }
Java
package com.futonredemption.nokeyguard; import org.beryl.app.AndroidVersion; import android.app.Service; import android.content.Context; import android.media.AudioManager; public class HeadsetStateGetter { private final IHeadsetStateGetter _headsetStateGetter; static interface IHeadsetStateGetter { ...
Java
package com.futonredemption.nokeyguard; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.BatteryManager; import android.preference.PreferenceManager; public class LockScreenStateManager { private final Context context; private Sha...
Java
package com.futonredemption.nokeyguard.appwidgets; import com.futonredemption.nokeyguard.Constants; import com.futonredemption.nokeyguard.Intents; import com.futonredemption.nokeyguard.LockScreenState; import com.futonredemption.nokeyguard.R; import android.app.PendingIntent; import android.appwidget.AppWidge...
Java
package com.futonredemption.nokeyguard; import android.app.KeyguardManager; import android.app.KeyguardManager.KeyguardLock; import android.content.Context; public class KeyguardLockWrapper { // FIXME: Should we have synchronize locks on the method calls? private KeyguardManager _guard; private Keyguard...
Java
package com.futonredemption.nokeyguard.receivers; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; public class RelayRefreshWidgetReceiver extends BroadcastReceiver { @Override public void onReceive(Context conte...
Java
package com.futonredemption.nokeyguard.receivers; import com.futonredemption.nokeyguard.Intents; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class PowerStateChangedReceiver extends BroadcastReceiver { @Override public void onReceive(Co...
Java
package com.futonredemption.nokeyguard; import com.futonredemption.nokeyguard.activities.NoKeyguardPreferenceActivity; import com.futonredemption.nokeyguard.services.DisableKeyguardService; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.content....
Java
package com.futonredemption.nokeyguard; public class Constants { public static final int MODE_Enabled = 0; public static final int MODE_Disabled = 1; public static final int MODE_ConditionalToggle = 2; public static final int NOTIFICATION_ForegroundService = 1; public static final int INTERVAL_Foregr...
Java
package com.futonredemption.nokeyguard; import java.util.Timer; import java.util.TimerTask; import org.beryl.app.ServiceForegrounder; import org.beryl.diagnostics.Logger; import android.app.PendingIntent; import android.app.Service; public class AutoCancelingForegrounder { private final Service servi...
Java
package com.futonredemption.nokeyguard.services; import org.beryl.app.ComponentEnabler; import org.beryl.app.ServiceBase; import com.futonredemption.nokeyguard.AutoCancelingForegrounder; import com.futonredemption.nokeyguard.Constants; import com.futonredemption.nokeyguard.Intents; import com.futonredemption....
Java
package pl.polidea.sectionedlist; /** * Item definition including the section. */ public class SectionListItem { public Object item; public String section; public SectionListItem(final Object item, final String section) { super(); this.item = item; this.section = section; } ...
Java
/** * Provides simple implementation of section list. */ package pl.polidea.sectionedlist;
Java
package pl.polidea.sectionedlist; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android....
Java
package pl.polidea.sectionedlist; import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.view.ViewParent; import android.widget.AbsListView; import android.widget.AbsListView.OnScrollListener; import android.widget.FrameLayout; import android.widget.ListAdapter; impo...
Java
package pl.polidea.sectionedlist; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; import java.util.Map.Entry; import android.database.DataSetObserver; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java
/* * Copyright (C) 2004 Derek James and Philip Tucker * * This file is part of ANJI (Another NEAT Java Implementation). * * ANJI is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; either version 2 of the *...
Java