/*
* File name: NeuroScheduler.java (package eas.simulation.brain.neural.neuroSimulation)
* Author(s): lko
* Java version: 7.0
* Generation date: 20.04.2013 (09:50:09)
*
* (c) This file and the EAS (Easy Agent Simulation) framework containing it
* is protected by Creative Commons by-nc-sa license. Any altered or
* further developed versions of this file have to meet the agreements
* stated by the license conditions.
*
* In a nutshell
* -------------
* You are free:
* - to Share -- to copy, distribute and transmit the work
* - to Remix -- to adapt the work
*
* Under the following conditions:
* - Attribution -- You must attribute the work in the manner specified by the
* author or licensor (but not in any way that suggests that they endorse
* you or your use of the work).
* - Noncommercial -- You may not use this work for commercial purposes.
* - Share Alike -- If you alter, transform, or build upon this work, you may
* distribute the resulting work only under the same or a similar license to
* this one.
*
* + Detailed license conditions (Germany):
* http://creativecommons.org/licenses/by-nc-sa/3.0/de/
* + Detailed license conditions (unported):
* http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en
*
* This header must be placed in the beginning of any version of this file.
*/
package eas.simulation.brain.neural.neuroSimulation;
import java.util.Random;
import eas.plugins.masterScheduler.AbstractDefaultMaster;
import eas.simulation.ConstantsSimulation;
import eas.simulation.brain.neural.NeuralLinkDummyDouble;
import eas.simulation.brain.neural.OldNeuroTranslator;
import eas.startSetup.ParCollection;
/**
* @author lko
*/
public class NeuroScheduler extends AbstractDefaultMaster<NeuroEnvironment> {
/**
*
*/
private static final long serialVersionUID = 924178232313048968L;
private NeuroEnvironment env;
@Override
public NeuroEnvironment[] generateRunnables(ParCollection params) {
env = new NeuroEnvironment(0, params, null);
Random rand2 = new Random(0);
OldNeuroTranslator trans2 = new OldNeuroTranslator();
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
// if (i != j) {
NeuralLinkDummyDouble d = new NeuralLinkDummyDouble(i, j, rand2.nextDouble() - 0.5, Integer.MAX_VALUE);
trans2.applyNeuralLinkSoft(d);
// }
}
}
env.setNetwork(trans2);
return new NeuroEnvironment[] { env };
}
@Override
public String id() {
return ConstantsSimulation.DEFAULT_MASTER_SCHEDULER_ID + "-neuroViz";
}
@Override
public synchronized void runDuringSimulation(NeuroEnvironment env, eas.simulation.Wink simZyk, ParCollection params) {
// if (simZyk.getLastTick() == 100) {
// throw new RuntimeException("Test");
// }
}
}