Systemstrukturen

//*****************************************************
// sstr.sce
// AUTHOR: Gerd Doeben-Henisch
// First: Dec-9, 2013
// Last: Dec-11, 2013
//******************************************************
// IDEA
//
// This file describes all data around the structures of 
// learning semiotic systems which will be used in the experiments.
//
// There is also a file sdyn.sce including a behavior function operating
// with the above mentioned structures:
//
// phi: SSTR ---> SSTR
//
// SSTR of a random system 
//
// A SSTR  is an array of lists of components which represent important Data
// about the system structures. The following is a minimal structure for random systems:
//
// ENERGY (starts with a certain amount)
// ENERGYNEW (after eating some food)
// ENERGYCONSUMPTION (every cycle)
// ACTION (movement or eating)

// ENERGY = 100
// ENERGYNEW = 0
// ENERGYCONSUMPTION = 2
// MOVEMENT = 0
// EATING = 0

SSTR1=[[100, 0, 2, 0,0];[100, 0, 2, 0,0];[100, 0, 2, 0,0];[100, 0, 2, 0,0]]



Gerd Doeben-Henisch 2014-01-14