[Pybrainsim-activity] SF.net SVN: pybrainsim:[54] trunk/src/GeneratorNumberIncrementing.py
Status: Planning
Brought to you by:
rgoj
From: <rg...@us...> - 2009-08-03 10:56:23
|
Revision: 54 http://pybrainsim.svn.sourceforge.net/pybrainsim/?rev=54&view=rev Author: rgoj Date: 2009-08-03 10:56:16 +0000 (Mon, 03 Aug 2009) Log Message: ----------- * Prepared a better documentation comment * Corrected column width of comments Modified Paths: -------------- trunk/src/GeneratorNumberIncrementing.py Modified: trunk/src/GeneratorNumberIncrementing.py =================================================================== --- trunk/src/GeneratorNumberIncrementing.py 2009-08-03 10:46:29 UTC (rev 53) +++ trunk/src/GeneratorNumberIncrementing.py 2009-08-03 10:56:16 UTC (rev 54) @@ -1,25 +1,25 @@ -# 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/>. __metaclass__ = type # New style classes. Is this necessary? """ -The GeneratorNumberIncrementing class serves as a starting point for creating complex classes simulation populations of neurons. Although currently all it does is adding integers. +The GeneratorNumberIncrementing class is a reimplementation of the Generator +class. It provides an elementary example of how the methods could be used to do +integer addition. """ class GeneratorNumberIncrementing: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |