<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/tkneuron/home/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 03 Jan 2012 14:40:07 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/tkneuron/home/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -1,5 +1,7 @@
+
 [[project_admins]]
-[[download_button]]
+
+##This project is moved to  https://sourceforge.jp/projects/dennco/##
 
 ##Overview:##
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Tue, 03 Jan 2012 14:40:07 -0000</pubDate><guid>https://sourceforge.netc055758cf7f5b6b95d1032b06b8aad8881e3bc73</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -12,41 +12,62 @@
 Compose neuron cell network model on the system.
 In this model, there are multiple cells (objects) are instantiated. 
 They are connected each other. How many cells and how the cells are connected each others are all configurable.
-Each cells receive signals (serialized data) from other through the connections and react based on the signals it receives. Through the connections, the cell send signals to the others based on the reaction it makes. How to react and what kind of signals it sends are all configurable.
-
-
+Each cells receive signals (a value) from other through the connections and react based on the signals it receives. Through the connections, the cell send signals to the others based on the reaction it makes. How to react and what kind of signals it sends are all configurable.
+
+
 ####2. Use HTML based document and its hyperlink mechanism for describing the configuration of the neuron system####
 The configuration of the neuron system is described by HTML format files. 
 In this, instance of a cell is expressed by a named anchor tag. It’s described by &amp;lt;a name="cell name" class="nss"&gt;definition of the cell &amp;lt;/a&gt;.
 
 A Cell-to-Cell network is expressed by a hyperlink tag. It's expressed by &amp;lt;a href="file#cell name" class="nss"&gt;name of the connection &amp;lt;/a&gt;.
 
 The behavior of a cell instance is expressed inside the named anchor tag. Its described by  JavaScript. Simulator ignores any html tags except &amp;lt;a href&gt; tag with class="nss". If you want to pass "&amp;lt;" as a parameter value of a cell, it has to be escaped. 
 
 Single file can describe multiple instances of cells by having multiple named anchor tags. Here, class="nss" expresses that the tag is for the neuron system. Simulator only parse the tags which have this class name, the tags which doesn't have the class are all ignored for the simulator. Though non class="nss" tags are all ignored for the simulator, there may be the value to have them to the file. By adding tags for formatting human friendly way, user can easily understand and analysis the configuration through HTML browser.
 
 #####A example#####
 ----
 (TODO: JavaScript example)
 &amp;lt;HTML&gt;
 &amp;lt;BODY&gt;
 …
 &amp;lt;A NAME=”cell1” class=”nss”&gt;
-type=”BasicCell”
-parameter1=”abc”
-parameter2=”123”
+type=”BasicJSCell”
+
+		function init() 
+		{	
+		}
+	
+		function doSleep()
+		{
+		}
+	
+		function doWakeup()
+	
+		function doTick(time)
+		{
+			var receptors = this.getReceptors();
+			var val = 0;
+			for (var i = 0; i &lt; receptors.length ; i++)
+			{
+				val += receptors[i].value;
+			}
+			val = val / receptors.length;
+	
+			this.setAxsonValue(val);
+		}
+	
+		function doSerialize()
+		{
+		}
+	
+		function doDeserialize(data)
+		{
+
+		}
+	
 &amp;lt;A HREF=”#cell2” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;/A&gt;
-&amp;lt;A NAME=”cell2” class=”nss”&gt;
-type=”AdvancedCell”
-parameter1=”123”
-&amp;lt;A HREF=”#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;A HREF=”#cell3” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;A HREF=”#cell4” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;A HREF=”sheet2.html#cell2” class=”nss”&gt;connection2&amp;lt;/a&gt;&amp;lt;br&gt;
-&amp;lt;A HREF=”sheet2.html#cell3” class=”nss”&gt;connection3&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;/A&gt;
 ...
 &amp;lt;/BODY&gt;
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Mon, 12 Dec 2011 23:58:43 -0000</pubDate><guid>https://sourceforge.net258fcc16b073130a81c1b503249bc055274f743a</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -21,37 +21,37 @@
 
 A Cell-to-Cell network is expressed by a hyperlink tag. It's expressed by &amp;lt;a href="file#cell name" class="nss"&gt;name of the connection &amp;lt;/a&gt;.
 
-The behavior of a cell instance is expressed inside the named anchor tag. Its described by name="value" format. Its described by JavaScript. Simulator ignores any html tags except &amp;lt;a href&gt; tag with class="nss". If you want to pass "&amp;lt;" as a parameter value of a cell, it has to be escaped. 
-"type" parameter is mandatory for cell definition. It describes which type of cell is instantiated. Other parameters are dependent on cell type. Cell types may be related to C++ , Java or other object oriented language's class type. 
+The behavior of a cell instance is expressed inside the named anchor tag. Its described by  JavaScript. Simulator ignores any html tags except &amp;lt;a href&gt; tag with class="nss". If you want to pass "&amp;lt;" as a parameter value of a cell, it has to be escaped. 
+
 Single file can describe multiple instances of cells by having multiple named anchor tags. Here, class="nss" expresses that the tag is for the neuron system. Simulator only parse the tags which have this class name, the tags which doesn't have the class are all ignored for the simulator. Though non class="nss" tags are all ignored for the simulator, there may be the value to have them to the file. By adding tags for formatting human friendly way, user can easily understand and analysis the configuration through HTML browser.
-A example
-
-
+
+#####A example#####
+----
 (TODO: JavaScript example)
 &amp;lt;HTML&gt;
 &amp;lt;BODY&gt;
 …
 &amp;lt;A NAME=”cell1” class=”nss”&gt;
 type=”BasicCell”
 parameter1=”abc”
 parameter2=”123”
 &amp;lt;A HREF=”#cell2” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;/A&gt;
 &amp;lt;A NAME=”cell2” class=”nss”&gt;
 type=”AdvancedCell”
 parameter1=”123”
 &amp;lt;A HREF=”#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”#cell3” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”#cell4” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell2” class=”nss”&gt;connection2&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell3” class=”nss”&gt;connection3&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;/A&gt;
 ...
 &amp;lt;/BODY&gt;
 &amp;lt;/HTML&gt;
-
+----
 
 ####3. The neuron simulator may run on HTML server####
 Not only HTML files are used by describing the configuration of the neuron system,
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Sun, 11 Dec 2011 15:19:26 -0000</pubDate><guid>https://sourceforge.net87f46a16f34174cd43d9ec5e64a3d0142af5a6cf</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -5,7 +5,8 @@
 
 ###Purpose:###
 Simulate human neuron system for studying artificial intelligence system.
-Main concept:
+
+###Main concept:###
 
 ####1. Simulate neuron system by simulating cell to cell network system####
 Compose neuron cell network model on the system.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Sun, 11 Dec 2011 15:16:28 -0000</pubDate><guid>https://sourceforge.net503734b17c41870049d801f0b4e6dd4d90e8cfd4</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,52 +1,56 @@
 [[project_admins]]
 [[download_button]]
 
-Overview:
-Purpose:
+##Overview:##
+
+###Purpose:###
 Simulate human neuron system for studying artificial intelligence system.
 Main concept:
-1. Simulate neuron system by simulating cell to cell network system
+
+####1. Simulate neuron system by simulating cell to cell network system####
 Compose neuron cell network model on the system.
 In this model, there are multiple cells (objects) are instantiated. 
 They are connected each other. How many cells and how the cells are connected each others are all configurable.
 Each cells receive signals (serialized data) from other through the connections and react based on the signals it receives. Through the connections, the cell send signals to the others based on the reaction it makes. How to react and what kind of signals it sends are all configurable.
-2. Use HTML based document and its hyperlink mechanism for describing the configuration of the neuron system
+
+
+####2. Use HTML based document and its hyperlink mechanism for describing the configuration of the neuron system####
 The configuration of the neuron system is described by HTML format files. 
 In this, instance of a cell is expressed by a named anchor tag. It’s described by &amp;lt;a name="cell name" class="nss"&gt;definition of the cell &amp;lt;/a&gt;.
 
 A Cell-to-Cell network is expressed by a hyperlink tag. It's expressed by &amp;lt;a href="file#cell name" class="nss"&gt;name of the connection &amp;lt;/a&gt;.
 
 The behavior of a cell instance is expressed inside the named anchor tag. Its described by name="value" format. Its described by JavaScript. Simulator ignores any html tags except &amp;lt;a href&gt; tag with class="nss". If you want to pass "&amp;lt;" as a parameter value of a cell, it has to be escaped. 
 "type" parameter is mandatory for cell definition. It describes which type of cell is instantiated. Other parameters are dependent on cell type. Cell types may be related to C++ , Java or other object oriented language's class type. 
 Single file can describe multiple instances of cells by having multiple named anchor tags. Here, class="nss" expresses that the tag is for the neuron system. Simulator only parse the tags which have this class name, the tags which doesn't have the class are all ignored for the simulator. Though non class="nss" tags are all ignored for the simulator, there may be the value to have them to the file. By adding tags for formatting human friendly way, user can easily understand and analysis the configuration through HTML browser.
 A example
 
 
 (TODO: JavaScript example)
 &amp;lt;HTML&gt;
 &amp;lt;BODY&gt;
 …
 &amp;lt;A NAME=”cell1” class=”nss”&gt;
 type=”BasicCell”
 parameter1=”abc”
 parameter2=”123”
 &amp;lt;A HREF=”#cell2” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;/A&gt;
 &amp;lt;A NAME=”cell2” class=”nss”&gt;
 type=”AdvancedCell”
 parameter1=”123”
 &amp;lt;A HREF=”#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”#cell3” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”#cell4” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell2” class=”nss”&gt;connection2&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;A HREF=”sheet2.html#cell3” class=”nss”&gt;connection3&amp;lt;/a&gt;&amp;lt;br&gt;
 &amp;lt;/A&gt;
 ...
 &amp;lt;/BODY&gt;
 &amp;lt;/HTML&gt;
 
 
-3. The neuron simulator may run on HTML server
+####3. The neuron simulator may run on HTML server####
 Not only HTML files are used by describing the configuration of the neuron system,
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Sun, 11 Dec 2011 15:10:04 -0000</pubDate><guid>https://sourceforge.net4827cab813b288216a0de92370f227b056b80fbe</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,52 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/tkneuron/home/markdown_syntax/) syntax.
+[[project_admins]]
+[[download_button]]
+
+Overview:
+Purpose:
+Simulate human neuron system for studying artificial intelligence system.
+Main concept:
+1. Simulate neuron system by simulating cell to cell network system
+Compose neuron cell network model on the system.
+In this model, there are multiple cells (objects) are instantiated. 
+They are connected each other. How many cells and how the cells are connected each others are all configurable.
+Each cells receive signals (serialized data) from other through the connections and react based on the signals it receives. Through the connections, the cell send signals to the others based on the reaction it makes. How to react and what kind of signals it sends are all configurable.
+2. Use HTML based document and its hyperlink mechanism for describing the configuration of the neuron system
+The configuration of the neuron system is described by HTML format files. 
+In this, instance of a cell is expressed by a named anchor tag. It’s described by &amp;lt;a name="cell name" class="nss"&gt;definition of the cell &amp;lt;/a&gt;.
+
+A Cell-to-Cell network is expressed by a hyperlink tag. It's expressed by &amp;lt;a href="file#cell name" class="nss"&gt;name of the connection &amp;lt;/a&gt;.
+
+The behavior of a cell instance is expressed inside the named anchor tag. Its described by name="value" format. Its described by JavaScript. Simulator ignores any html tags except &amp;lt;a href&gt; tag with class="nss". If you want to pass "&amp;lt;" as a parameter value of a cell, it has to be escaped. 
+"type" parameter is mandatory for cell definition. It describes which type of cell is instantiated. Other parameters are dependent on cell type. Cell types may be related to C++ , Java or other object oriented language's class type. 
+Single file can describe multiple instances of cells by having multiple named anchor tags. Here, class="nss" expresses that the tag is for the neuron system. Simulator only parse the tags which have this class name, the tags which doesn't have the class are all ignored for the simulator. Though non class="nss" tags are all ignored for the simulator, there may be the value to have them to the file. By adding tags for formatting human friendly way, user can easily understand and analysis the configuration through HTML browser.
+A example
+
+
+(TODO: JavaScript example)
+&amp;lt;HTML&gt;
+&amp;lt;BODY&gt;
+…
+&amp;lt;A NAME=”cell1” class=”nss”&gt;
+type=”BasicCell”
+parameter1=”abc”
+parameter2=”123”
+&amp;lt;A HREF=”#cell2” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;/A&gt;
+&amp;lt;A NAME=”cell2” class=”nss”&gt;
+type=”AdvancedCell”
+parameter1=”123”
+&amp;lt;A HREF=”#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”#cell3” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”#cell4” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”sheet2.html#cell1” class=”nss”&gt;connection1&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”sheet2.html#cell2” class=”nss”&gt;connection2&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;A HREF=”sheet2.html#cell3” class=”nss”&gt;connection3&amp;lt;/a&gt;&amp;lt;br&gt;
+&amp;lt;/A&gt;
+...
+&amp;lt;/BODY&gt;
+&amp;lt;/HTML&gt;
+
+
+3. The neuron simulator may run on HTML server
+Not only HTML files are used by describing the configuration of the neuron system,
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Sun, 11 Dec 2011 15:08:36 -0000</pubDate><guid>https://sourceforge.net5224beb9f5fa4e5a1cc9e107fbd7777baf1cb8f5</guid></item><item><title>WikiPage Home modified by Takuji Kawata</title><link>https://sourceforge.net/p/tkneuron/home/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/tkneuron/home/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Takuji Kawata</dc:creator><pubDate>Sun, 11 Dec 2011 15:04:01 -0000</pubDate><guid>https://sourceforge.netf024b714cc2bf0308f83d0d26aacb40da847b5e7</guid></item></channel></rss>