OSDN Git Service

deleted unused files.
authortkawata <takuji.kawata@gmail.com>
Wed, 4 Jan 2012 15:28:17 +0000 (00:28 +0900)
committertkawata <takuji.kawata@gmail.com>
Wed, 4 Jan 2012 15:28:17 +0000 (00:28 +0900)
dennco-jstestapp1/layer1.js [deleted file]
dennco-jstestapp1/layer2.js [deleted file]
dennco-jstestapp1/layer3.js [deleted file]

diff --git a/dennco-jstestapp1/layer1.js b/dennco-jstestapp1/layer1.js
deleted file mode 100644 (file)
index 6d5e7ff..0000000
+++ /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 (file)
index 21fb9a9..0000000
+++ /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 (file)
index 5e9fa5f..0000000
+++ /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;