Changeset 287
- Timestamp:
- 01/05/15 23:19:10 (10 years ago)
- Location:
- cpp
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/LICENSE.txt
r195 r287 1 If you use any part of Framsticks GDK fora project which is not2 a part of Framsticks software, please explicitly acknowledge GDK3 and make a link to Framsticks:www.framsticks.com1 If you use any part of Framsticks SDK in a project which is not 2 a part of Framsticks software, please explicitly acknowledge Framsticks SDK 3 and provide a link to www.framsticks.com 4 4 5 5 --- -
cpp/README.txt
r196 r287 1 _______________ _____ Building GDK test applications ____________________1 _______________ Building SDK demos and test applications ________________ 2 2 3 make -f frams/Makefile- GDK gdk_tests3 make -f frams/Makefile-SDK sdk_tests 4 4 5 5 6 6 Even if you don't use 'make', you can create a project for your favorite 7 7 development environment. The sources should compile under *nixes, macos, 8 windows (visual c++, borland ), cygwin, android, ios, tizen, and bada.8 windows (visual c++, borland/embarcadero), cygwin, android, ios, and tizen. 9 9 10 10 … … 13 13 +- common - general compatibility layer, utilities 14 14 +- frams - framsticks modules 15 +- _demos - GDK test applications16 +- config - GDK elements declarations15 +- _demos - SDK test applications 16 +- config - SDK elements declarations 17 17 +- errmgr - error manager (logging/messaging) 18 18 +- genetics - genetic operators and converters between formats -
cpp/frams/_demos/gdk_test.cpp
r286 r287 268 268 { 269 269 srand(time(0)); 270 printNiceBanner("Welcome to G DKtest application!");270 printNiceBanner("Welcome to Genotype manipulation test application!"); 271 271 272 272 findingConverters(); -
cpp/frams/genetics/f1/conv_f1.h
r286 r287 26 26 Final f0 genotype is generated by model class. 27 27 28 <b> GDK 1.0.5 NN extension: (for Framsticks 2.0)</B>28 <b>SDK 1.0.5 NN extension: (for Framsticks 2.0)</B> 29 29 30 30 Until now, only the "standard" Framsticks v1 neuron classes could be used. 31 Starting with GDK 1.0.5 you can use all neuron types.31 Starting with SDK 1.0.5 you can use all neuron types. 32 32 33 33 \b Syntax: [classname , input_or_parameter:weight , input_or_parameter:weight , ...] -
cpp/frams/genetics/f4/conv_f4.cpp
r286 r287 4 4 5 5 // Copyright (C) 1999,2000 Adam Rotaru-Varga (adam_rotaru@yahoo.com), GNU LGPL 6 // Copyright (C) since 2001 Maciej Komosinski7 6 8 7 #include "conv_f4.h" … … 140 139 141 140 142 /// updated by Macko to follow new GDK standards (no more neuroitems)141 /// updated by Macko to follow new SDK standards (no more neuroitems) 143 142 int f4_Model::buildModelRec(f4_Cell * C) 144 143 { -
cpp/frams/genetics/f4/f4_general.cpp
r286 r287 4 4 5 5 // Copyright (C) 1999,2000 Adam Rotaru-Varga (adam_rotaru@yahoo.com), GNU LGPL 6 // Copyright (C) since 2001 Maciej Komosinski7 6 8 7 #include "f4_general.h" … … 655 654 else { 656 655 zrot = Padj.curv + 657 // GDK uses 3.141 instead of PI!656 // SDK uses 3.141 instead of PI! 658 657 (anglepos * 1.0 / (dadlink->commacount + 1) - 0.5) * 3.141 * 2.0; 659 658 } -
cpp/frams/genetics/oper_fx.h
r286 r287 72 72 be returned when an operator cannot cope with its argument genotype. 73 73 74 To compile your code, you may also need some GDK files.74 To compile your code, you may also need some SDK files. 75 75 A simple example is Geno_ftest class (see \ref geno_ftest_example "C++ code" for details). 76 76 A more realistic example is Geno_f4 derived from Geno_fx: refer to
Note: See TracChangeset
for help on using the changeset viewer.