public void ResetPC() { TrainingCounter = 0; CanIGoThereRunning = false; recalculationRunning = false; TurningCounter = 6; TurningState = 0; //1 right, -1 left, 0 nonturning //neurons = new Neuron[256]; coeficientsOfLine = new double[3]; so = new SoftmaxOutput(); SetWb(); }
public PC(string nick, Color col, Random rand) : base(nick, col, rand) { InitilazeNeuronsArrays(); so = new SoftmaxOutput(); SetWb(); }