source: cpp/frams/neuro/geneticneuroparam.cpp @ 138

Last change on this file since 138 was 138, checked in by sz, 10 years ago

genetic operator example - frams/_demos/genooper_test.cpp

  • Property svn:eol-style set to native
File size: 636 bytes
Line 
1// This file is a part of the Framsticks GDK.
2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#include "geneticneuroparam.h"
6#include <frams/neuro/neurolibrary.h>
7
8GeneticNeuroParam::GeneticNeuroParam(const char* groupname,const char* myname,
9                                   const char* prefix,const char* typ)
10        :NeuroLibParam(groupname,myname,prefix),types(typ)
11{}
12
13long GeneticNeuroParam::getInt(int i)
14{return Neuro::getClass(i)->genactive;}
15
16int GeneticNeuroParam::setInt(int i,long v)
17{Neuro::getClass(i)->genactive=v;return PSET_CHANGED;}
18
Note: See TracBrowser for help on using the repository browser.