Changeset 958
- Timestamp:
- 06/25/20 16:36:23 (4 years ago)
- Location:
- cpp
- Files:
-
- 7 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/CONTRIBUTORS.txt
r799 r958 12 12 Marek Kubiak - initial versions of the similarity measure, 13 13 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. 15 16 -
cpp/frams/genetics/defgenoconv.cpp
r788 r958 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 52 52 #include "fL/fL_conv.h" 53 53 #endif 54 #ifdef USE_GENCONV_fS0 55 #include "fS/fS_conv.h" //solids 56 #endif 54 57 55 58 void DefaultGenoConvManager::addDefaultConverters() … … 100 103 addConverter(new GenoConv_fL0); 101 104 #endif 105 #ifdef USE_GENCONV_fS0 106 addConverter(new GenoConv_fS0); //solids 107 #endif 102 108 103 109 param.updatetab(); -
cpp/frams/genetics/gen-config-SDK.h
r780 r958 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 24 24 #define USE_GENCONV_fH0 25 25 #define USE_GENCONV_fL0 26 #define USE_GENCONV_fS0 //solids 26 27 27 28 //#define USE_GENMAN_f0 … … 38 39 #define USE_GENMAN_fH 39 40 #define USE_GENMAN_fL 41 #define USE_GENMAN_fS //solids
Note: See TracChangeset
for help on using the changeset viewer.