[Pybrainsim-activity] SF.net SVN: pybrainsim:[31] trunk/src/Head.py
Status: Planning
Brought to you by:
rgoj
From: <rg...@us...> - 2009-07-31 09:17:25
|
Revision: 31 http://pybrainsim.svn.sourceforge.net/pybrainsim/?rev=31&view=rev Author: rgoj Date: 2009-07-31 09:17:10 +0000 (Fri, 31 Jul 2009) Log Message: ----------- * Reformat file so that it has correct column width for documentation Modified Paths: -------------- trunk/src/Head.py Modified: trunk/src/Head.py =================================================================== --- trunk/src/Head.py 2009-07-31 09:16:05 UTC (rev 30) +++ trunk/src/Head.py 2009-07-31 09:17:10 UTC (rev 31) @@ -1,28 +1,31 @@ -# PyBrainSim -# Copyright 2009 Roman Goj +# PyBrainSim Copyright 2009 Roman Goj # # This file is part of PyBrainSim. # -# PyBrainSim is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# PyBrainSim is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# PyBrainSim is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# PyBrainSim is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with PyBrainSim. If not, see <http://www.gnu.org/licenses/>. +# You should have received a copy of the GNU General Public License along with +# PyBrainSim. If not, see <http://www.gnu.org/licenses/>. from __future__ import division __metaclass__ = type # New style classes. Is this necessary? """ -The Head class is the main class in PyBrainSim. It holds a list of generators and connections between these generators, as well as a head model that governs the propagation of the activity of the generation throughout the modeled head, to the specified registration sites. +The Head class is the main class in PyBrainSim. It holds a list of generators +and connections between these generators, as well as a head model that governs +the propagation of the activity of the generation throughout the modeled head, +to the specified registration sites. -This class is only the simplest implementation of these ideas, intended to serve as an example and a starting point for creating complex derived classes, ready for real simulation tasks. +This class is only the simplest implementation of these ideas, intended to +serve as an example and a starting point for creating complex derived classes, +ready for real simulation tasks. """ class Head: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |