Changeset 958


Ignore:
Timestamp:
06/25/20 16:36:23 (4 years ago)
Author:
Maciej Komosinski
Message:

Added the fS genetic encoding (for solids)

Location:
cpp
Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • cpp/CONTRIBUTORS.txt

    r799 r958  
    1212        Marek Kubiak - initial versions of the similarity measure,
    1313        Agnieszka Mensfelt - the similarity measure and the SVD,
    14         Grzegorz Latosinski - genetic encodings: f4, fH, fB, fL.
     14        Grzegorz Latosinski - genetic encodings: f4 update, fH, fB, fL,
     15        Jakub Sztyma - the fS genetic encoding.
    1516
  • cpp/frams/genetics/defgenoconv.cpp

    r788 r958  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2020  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    5252#include "fL/fL_conv.h"
    5353#endif
     54#ifdef USE_GENCONV_fS0
     55#include "fS/fS_conv.h" //solids
     56#endif
    5457
    5558void DefaultGenoConvManager::addDefaultConverters()
     
    100103        addConverter(new GenoConv_fL0);
    101104#endif
     105#ifdef USE_GENCONV_fS0
     106        addConverter(new GenoConv_fS0); //solids
     107#endif
    102108
    103109        param.updatetab();
  • cpp/frams/genetics/gen-config-SDK.h

    r780 r958  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2020  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    2424#define USE_GENCONV_fH0
    2525#define USE_GENCONV_fL0
     26#define USE_GENCONV_fS0 //solids
    2627
    2728//#define USE_GENMAN_f0
     
    3839#define USE_GENMAN_fH
    3940#define USE_GENMAN_fL
     41#define USE_GENMAN_fS //solids
Note: See TracChangeset for help on using the changeset viewer.