From: tkawata Date: Wed, 4 Jan 2012 15:28:17 +0000 (+0900) Subject: deleted unused files. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=fa6dea2df65f43cf923fcade5b086d2b75253efa;p=dennco%2Fdennco.git deleted unused files. --- diff --git a/dennco-jstestapp1/layer1.js b/dennco-jstestapp1/layer1.js deleted file mode 100644 index 6d5e7ff..0000000 --- a/dennco-jstestapp1/layer1.js +++ /dev/null @@ -1,12 +0,0 @@ - -function doTick(time) -{ - print(this.cell.name + " -> doTick: " + this.priorityReceptor + ":" + this.cell.receptors[this.priorityReceptor] + "\n"); - this.cell.axonValue = this.cell.receptors[this.priorityReceptor]; -} - -function doInit() -{ - print(this.cell.name + " -> doInit()\n"); - print(this.cell.name + " priotiry receptor:" + this.priorityReceptor + "\n" ); -} diff --git a/dennco-jstestapp1/layer2.js b/dennco-jstestapp1/layer2.js deleted file mode 100644 index 21fb9a9..0000000 --- a/dennco-jstestapp1/layer2.js +++ /dev/null @@ -1,11 +0,0 @@ -function doTick(time) -{ - this.cell.axonValue = this.cell.receptors[this.priorityReceptor1] * 0.6 + this.cell.receptors[this.priorityReceptor2] * 0.4; -} - -function doInit() -{ - print(this.cell.name + " -> doInit() \n"); - print(this.cell.name + " : priority1:" + this.priorityReceptor1 + "\n"); - print(this.cell.name + " : priority2:" + this.priorityReceptor2 + "\n"); -} diff --git a/dennco-jstestapp1/layer3.js b/dennco-jstestapp1/layer3.js deleted file mode 100644 index 5e9fa5f..0000000 --- a/dennco-jstestapp1/layer3.js +++ /dev/null @@ -1,27 +0,0 @@ -function doTick(time) -{ - var v = (this.cell.receptors[this.priorityReceptor1] * 0.6 + this.cell.receptors[this.priorityReceptor2] * 0.4) * global.property1; - - if (v < this.minValue) - { - print(this.cell.name + " calculated axon value is under min value. set to " + this.minValue); - v = this.minValue; - } - else if (v > this.maxValue) - { - print(this.cell.name + " calculated axon value is over max value. set to " + this.maxValue); - v = this.maxValue; - } - - this.cell.axonValue = v; -} - -function doInit() -{ - print(this.cell.name + " -> doInit()\n"); - print(this.cell.name + " : priority1:" + this.priorityReceptor1 +"\n"); - print(this.cell.name + " : priority2:" + this.priorityReceptor2 +"\n"); -} - -var maxValue = 1.0; -var minValue = 0.0;