Changeset 287 for cpp


Ignore:
Timestamp:
01/05/15 23:19:10 (9 years ago)
Author:
Maciej Komosinski
Message:

GDK->SDK

Location:
cpp
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • cpp/LICENSE.txt

    r195 r287  
    1 If you use any part of Framsticks GDK for a project which is not
    2 a part of Framsticks software, please explicitly acknowledge GDK
    3 and make a link to Framsticks: www.framsticks.com
     1If you use any part of Framsticks SDK in a project which is not
     2a part of Framsticks software, please explicitly acknowledge Framsticks SDK
     3and provide a link to www.framsticks.com
    44
    55---
  • cpp/README.txt

    r196 r287  
    1 ____________________ Building GDK test applications ____________________
     1_______________ Building SDK demos and test applications ________________
    22
    3 make -f frams/Makefile-GDK gdk_tests
     3make -f frams/Makefile-SDK sdk_tests
    44
    55
    66Even if you don't use 'make', you can create a project for your favorite
    77development environment. The sources should compile under *nixes, macos,
    8 windows (visual c++, borland), cygwin, android, ios, tizen, and bada.
     8windows (visual c++, borland/embarcadero), cygwin, android, ios, and tizen.
    99
    1010
     
    1313   +- common         - general compatibility layer, utilities
    1414   +- frams          - framsticks modules
    15       +- _demos      - GDK test applications
    16       +- config      - GDK elements declarations
     15      +- _demos      - SDK test applications
     16      +- config      - SDK elements declarations
    1717      +- errmgr      - error manager (logging/messaging)
    1818      +- genetics    - genetic operators and converters between formats
  • cpp/frams/_demos/gdk_test.cpp

    r286 r287  
    268268{
    269269srand(time(0));
    270 printNiceBanner("Welcome to GDK test application!");
     270printNiceBanner("Welcome to Genotype manipulation test application!");
    271271
    272272findingConverters();
  • cpp/frams/genetics/f1/conv_f1.h

    r286 r287  
    2626 Final f0 genotype is generated by model class.
    2727
    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>
    2929
    3030 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.
    3232
    3333 \b Syntax: [classname , input_or_parameter:weight , input_or_parameter:weight , ...]
  • cpp/frams/genetics/f4/conv_f4.cpp

    r286 r287  
    44
    55// Copyright (C) 1999,2000  Adam Rotaru-Varga (adam_rotaru@yahoo.com), GNU LGPL
    6 // Copyright (C) since 2001 Maciej Komosinski
    76
    87#include "conv_f4.h"
     
    140139
    141140
    142 /// updated by Macko to follow new GDK standards (no more neuroitems)
     141/// updated by Macko to follow new SDK standards (no more neuroitems)
    143142int f4_Model::buildModelRec(f4_Cell * C)
    144143{
  • cpp/frams/genetics/f4/f4_general.cpp

    r286 r287  
    44
    55// Copyright (C) 1999,2000  Adam Rotaru-Varga (adam_rotaru@yahoo.com), GNU LGPL
    6 // Copyright (C) since 2001 Maciej Komosinski
    76
    87#include "f4_general.h"
     
    655654                        else {
    656655                                zrot = Padj.curv +
    657                                         // GDK uses 3.141 instead of PI!
     656                                        // SDK uses 3.141 instead of PI!
    658657                                        (anglepos * 1.0 / (dadlink->commacount + 1) - 0.5) * 3.141 * 2.0;
    659658                        }
  • cpp/frams/genetics/oper_fx.h

    r286 r287  
    7272be returned when an operator cannot cope with its argument genotype.
    7373
    74 To compile your code, you may also need some GDK files.
     74To compile your code, you may also need some SDK files.
    7575A simple example is Geno_ftest class (see \ref geno_ftest_example "C++ code" for details).
    7676A more realistic example is Geno_f4 derived from Geno_fx: refer to
Note: See TracChangeset for help on using the changeset viewer.