- Timestamp:
- 01/05/15 23:19:10 (10 years ago)
- Location:
- cpp/frams
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
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.