- Timestamp:
- 05/11/18 23:42:04 (7 years ago)
- Location:
- cpp/frams
- Files:
-
- 8 edited
- 22 moved
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/Makefile-SDK-files
r759 r779 4 4 ALL_DIRS={common,frams,frams/canvas,frams/config,common/loggers,frams/genetics,frams/genetics/f0,frams/genetics/f1,frams/genetics/f2,frams/genetics/f3,frams/genetics/f4,frams/genetics/f5,frams/genetics/f6,frams/genetics/f7,frams/genetics/f8,frams/genetics/f9,frams/genetics/fn,frams/genetics/fF,frams/genetics/fT,frams/model,frams/neuro,frams/neuro/impl,frams/param,frams/test,frams/util,frams/vm/classes,common/virtfile,frams/_demos,frams/model/geometry,frams/_demos/geometry,frams/model/similarity,frams/model/similarity/SVD} 5 5 6 GENMANF4=frams/genetics/f4/ oper_f4.o7 GENMANF9=frams/genetics/f9/ oper_f9.o8 GENMANFF=frams/genetics/fF/ oper_fF.o9 GENMANFT=frams/genetics/fT/ oper_fTest.o10 GENMANFN=frams/genetics/fn/ oper_fn.o6 GENMANF4=frams/genetics/f4/f4_oper.o 7 GENMANF9=frams/genetics/f9/f9_oper.o 8 GENMANFF=frams/genetics/fF/fF_oper.o 9 GENMANFT=frams/genetics/fT/fTest_oper.o 10 GENMANFN=frams/genetics/fn/fn_oper.o 11 11 12 CONVF1=frams/genetics/f1/ conv_f1.o frams/genetics/geneprops.o13 CONVF4=frams/genetics/f4/ conv_f4.o frams/genetics/f4/f4_general.o frams/genetics/geneprops.o14 CONVF9=frams/genetics/f9/ conv_f9.o15 CONVFF=frams/genetics/fF/ conv_fF.o frams/genetics/fF/fF_genotype.o frams/genetics/fF/fF_chamber3d.o16 CONVFN=frams/genetics/fn/ conv_fn.o12 CONVF1=frams/genetics/f1/f1_conv.o frams/genetics/geneprops.o 13 CONVF4=frams/genetics/f4/f4_conv.o frams/genetics/f4/f4_general.o frams/genetics/geneprops.o 14 CONVF9=frams/genetics/f9/f9_conv.o 15 CONVFF=frams/genetics/fF/fF_conv.o frams/genetics/fF/fF_genotype.o frams/genetics/fF/fF_chamber3d.o 16 CONVFN=frams/genetics/fn/fn_conv.o 17 17 18 18 # $(sort - remove duplicates … … 22 22 GENMAN_COMMON_OBJS=frams/genetics/genman.o frams/param/mutableparam.o frams/param/mutparamlist.o frams/neuro/geneticneuroparam.o frams/neuro/neurolibparam.o 23 23 24 SDK_OBJS=frams/util/list.o frams/util/advlist.o frams/param/param.o frams/util/sstring.o frams/util/sstringutils.o frams/util/3d.o frams/vm/classes/3dobject.o frams/model/model.o frams/model/modelparts.o frams/neuro/neurolibrary.o frams/genetics/geno.o frams/genetics/genoconv.o frams/util/extvalue.o frams/vm/classes/collectionobj.o frams/util/hashtable.o common/log.o common/stl-util.o common/nonstd_stdio.o frams/util/callbacks.o frams/param/syntparam.o frams/util/multirange.o frams/util/multimap.o frams/param/paramtabobj.o common/loggers/loggers.o frams/param/paramobj.o frams/genetics/ oper_fx.o common/nonstd_math.o frams/util/validitychecks.o common/Convert.o frams/util/rndutil.o common/virtfile/stringfile.o24 SDK_OBJS=frams/util/list.o frams/util/advlist.o frams/param/param.o frams/util/sstring.o frams/util/sstringutils.o frams/util/3d.o frams/vm/classes/3dobject.o frams/model/model.o frams/model/modelparts.o frams/neuro/neurolibrary.o frams/genetics/geno.o frams/genetics/genoconv.o frams/util/extvalue.o frams/vm/classes/collectionobj.o frams/util/hashtable.o common/log.o common/stl-util.o common/nonstd_stdio.o frams/util/callbacks.o frams/param/syntparam.o frams/util/multirange.o frams/util/multimap.o frams/param/paramtabobj.o common/loggers/loggers.o frams/param/paramobj.o frams/genetics/genooperators.o common/nonstd_math.o frams/util/validitychecks.o common/Convert.o frams/util/rndutil.o common/virtfile/stringfile.o 25 25 26 26 GEOMETRY_OBJS=frams/model/geometry/meshbuilder.o frams/model/geometry/modelgeometryinfo.o frams/model/geometry/geometryutils.o -
cpp/frams/_demos/genooper_test_fTest.cpp
r319 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include <frams/genetics/fT/ oper_fTest.h>5 #include <frams/genetics/fT/fTest_oper.h> 6 6 7 7 GenoOper_fTest gft; -
cpp/frams/genetics/defgenoconv.cpp
r748 r779 8 8 9 9 #ifdef USE_GENCONV_f10 10 #include "f1/ conv_f1.h"10 #include "f1/f1_conv.h" 11 11 #endif 12 12 #ifdef USE_GENCONV_f20 13 #include "f2/ conv_f2.h"13 #include "f2/f2_conv.h" 14 14 #endif 15 15 #ifdef USE_GENCONV_f32 16 #include "f3/ conv_f3.h"16 #include "f3/f3_conv.h" 17 17 #endif 18 18 #ifdef USE_GENCONV_f40 19 #include "f4/ conv_f4.h"19 #include "f4/f4_conv.h" 20 20 #endif 21 21 #ifdef USE_GENCONV_f41_TEST 22 #include "f4/ conv_f4.h"22 #include "f4/f4_conv.h" 23 23 #endif 24 24 #ifdef USE_GENCONV_f50 25 #include "f5/ conv_f5.h"25 #include "f5/f5_conv.h" 26 26 #endif 27 27 #ifdef USE_GENCONV_f60 28 #include "f6/ geno_f6.h"28 #include "f6/f6_geno.h" 29 29 #endif 30 30 #ifdef USE_GENCONV_f70 31 #include "f7/ conv_f7.h"31 #include "f7/f7_conv.h" 32 32 #endif 33 33 #ifdef USE_GENCONV_f81 34 #include "f8/ conv_f8tof1.h"34 #include "f8/f8_convtof1.h" 35 35 #endif 36 36 #ifdef USE_GENCONV_f90 37 #include "f9/ conv_f9.h"37 #include "f9/f9_conv.h" 38 38 #endif 39 39 #ifdef USE_GENCONV_fF0 40 #include "fF/ conv_fF.h"40 #include "fF/fF_conv.h" 41 41 #endif 42 42 #ifdef USE_GENCONV_fn0 43 #include "fn/ conv_fn.h"43 #include "fn/fn_conv.h" 44 44 #endif 45 45 -
cpp/frams/genetics/f1/f1_conv.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " conv_f1.h"5 #include "f1_conv.h" 6 6 #include <common/nonstd_stl.h> 7 7 #include <common/log.h> -
cpp/frams/genetics/f1/f1_conv.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ CONV_F1_H6 #define _ CONV_F1_H5 #ifndef _F1_CONV_H_ 6 #define _F1_CONV_H_ 7 7 8 8 #include <frams/genetics/genoconv.h> -
cpp/frams/genetics/f4/f4_conv.cpp
r778 r779 7 7 // 2018, Grzegorz Latosinski, added support for new API for neuron types and their properties 8 8 9 #include " conv_f4.h"9 #include "f4_conv.h" 10 10 #include <common/log.h> 11 #include "../ oper_fx.h" //for GENOPER_OK constant11 #include "../genooperators.h" //for GENOPER_OK constant 12 12 13 13 #ifdef DMALLOC -
cpp/frams/genetics/f4/f4_conv.h
r778 r779 7 7 // 2018, Grzegorz Latosinski, added support for new API for neuron types and their properties 8 8 9 #ifndef _ CONV_F4_H_10 #define _ CONV_F4_H_9 #ifndef _F4_CONV_H_ 10 #define _F4_CONV_H_ 11 11 12 12 #include <frams/model/model.h> -
cpp/frams/genetics/f4/f4_general.cpp
r774 r779 7 7 8 8 #include "f4_general.h" 9 #include "../ oper_fx.h" //for GENOPER_ constants9 #include "../genooperators.h" //for GENOPER_ constants 10 10 #include <common/nonstd_stl.h> 11 11 #include <common/log.h> -
cpp/frams/genetics/f4/f4_oper.cpp
r778 r779 7 7 // 2018, Grzegorz Latosinski, added support for new API for neuron types and their properties 8 8 9 #include " oper_f4.h"9 #include "f4_oper.h" 10 10 #include <frams/util/sstring.h> 11 11 #include <common/log.h> -
cpp/frams/genetics/f4/f4_oper.h
r778 r779 6 6 // Copyright (C) since 2001 Maciej Komosinski 7 7 8 #ifndef _ GENO_F4_H_9 #define _ GENO_F4_H_8 #ifndef _F4_OPER_H_ 9 #define _F4_OPER_H_ 10 10 11 11 #include <stdio.h> 12 12 #include "f4_general.h" 13 13 #include "common/nonstd.h" 14 #include "../ oper_fx.h"14 #include "../genooperators.h" 15 15 #include <frams/param/param.h> 16 16 -
cpp/frams/genetics/f9/f9_conv.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " conv_f9.h"5 #include "f9_conv.h" 6 6 #include <frams/model/model.h> 7 7 #include <string.h> -
cpp/frams/genetics/f9/f9_conv.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ CONV_F9_H_6 #define _ CONV_F9_H_5 #ifndef _F9_CONV_H_ 6 #define _F9_CONV_H_ 7 7 8 8 #include <ctype.h> -
cpp/frams/genetics/f9/f9_oper.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " oper_f9.h"6 #include " conv_f9.h"5 #include "f9_oper.h" 6 #include "f9_conv.h" 7 7 #include <common/nonstd.h> //randomN, rnd01 8 8 -
cpp/frams/genetics/f9/f9_oper.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ GENOOPER_F9_H_6 #define _ GENOOPER_F9_H_5 #ifndef _F9_OPER_H_ 6 #define _F9_OPER_H_ 7 7 8 #include "../ oper_fx.h"8 #include "../genooperators.h" 9 9 10 10 -
cpp/frams/genetics/fF/fF_chamber3d.cpp
r667 r779 4 4 5 5 #include "fF_chamber3d.h" 6 #include " conv_fF.h"6 #include "fF_conv.h" 7 7 #include <iostream> 8 8 -
cpp/frams/genetics/fF/fF_chamber3d.h
r667 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef CHAMBER3D_H6 #define CHAMBER3D_H5 #ifndef _FF_CHAMBER3D_H_ 6 #define _FF_CHAMBER3D_H_ 7 7 8 8 struct fF_point; -
cpp/frams/genetics/fF/fF_conv.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " conv_fF.h"5 #include "fF_conv.h" 6 6 #include "fF_genotype.h" 7 7 #include <common/nonstd_stl.h> -
cpp/frams/genetics/fF/fF_conv.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _CONV_FF_H_ 6 #define _CONV_FF_H_ 5 #ifndef _FF_CONV_H_ 6 #define _FF_CONV_H_ 7 8 7 9 8 10 #define fF_TOO_MUCH 0.75 … … 56 58 }; 57 59 60 58 61 #endif -
cpp/frams/genetics/fF/fF_oper.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " oper_fF.h"5 #include "fF_oper.h" 6 6 #include "fF_genotype.h" 7 7 #include <common/nonstd.h> //randomN, rnd01 -
cpp/frams/genetics/fF/fF_oper.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ GENOOPER_FF_H_6 #define _ GENOOPER_FF_H_5 #ifndef _FF_OPER_H_ 6 #define _FF_OPER_H_ 7 7 8 #include "../ oper_fx.h"8 #include "../genooperators.h" 9 9 10 10 -
cpp/frams/genetics/fT/fTest_oper.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " oper_fTest.h"5 #include "fTest_oper.h" 6 6 #include <common/nonstd.h> //randomN, rnd01 7 7 -
cpp/frams/genetics/fT/fTest_oper.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ GENOOPER_FTEST_H_6 #define _ GENOOPER_FTEST_H_5 #ifndef _FTEST_OPER_H_ 6 #define _FTEST_OPER_H_ 7 7 8 #include "../ oper_fx.h"8 #include "../genooperators.h" 9 9 10 10 /** \file */ -
cpp/frams/genetics/fn/fn_conv.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " conv_fn.h"5 #include "fn_conv.h" 6 6 #include <frams/vm/classes/collectionobj.h> 7 7 -
cpp/frams/genetics/fn/fn_conv.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ CONV_Fn_H_6 #define _ CONV_Fn_H_5 #ifndef _Fn_CONV_H_ 6 #define _Fn_CONV_H_ 7 7 8 8 #include <frams/genetics/genoconv.h> -
cpp/frams/genetics/fn/fn_oper.cpp
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #include " oper_fn.h"6 #include " conv_fn.h"5 #include "fn_oper.h" 6 #include "fn_conv.h" 7 7 #include <common/nonstd.h> //randomN, rnd01 8 8 -
cpp/frams/genetics/fn/fn_oper.h
r778 r779 3 3 // See LICENSE.txt for details. 4 4 5 #ifndef _ GENOOPER_Fn_H_6 #define _ GENOOPER_Fn_H_5 #ifndef _Fn_OPER_H_ 6 #define _Fn_OPER_H_ 7 7 8 #include "../ oper_fx.h"8 #include "../genooperators.h" 9 9 10 10 -
cpp/frams/genetics/genman.cpp
r768 r779 19 19 20 20 #ifdef USE_GENMAN_f0 21 #include "f0/ oper_f0.h"21 #include "f0/f0_oper.h" 22 22 #endif 23 23 #ifdef USE_GENMAN_f0FUZZY 24 #include "f0/ oper_f0Fuzzy.h"24 #include "f0/f0Fuzzy_oper.h" 25 25 #endif 26 26 #ifdef USE_GENMAN_f1 27 #include "f1/ oper_f1.h"27 #include "f1/f1_oper.h" 28 28 #endif 29 29 #ifdef USE_GENMAN_f2 30 #include "f2/ oper_f2.h"30 #include "f2/f2_oper.h" 31 31 #endif 32 32 #ifdef USE_GENMAN_f2 33 #include "f3/ oper_f3.h"33 #include "f3/f3_oper.h" 34 34 #endif 35 35 #ifdef USE_GENMAN_f4 36 #include "f4/ oper_f4.h"36 #include "f4/f4_oper.h" 37 37 #endif 38 38 #ifdef USE_GENMAN_f5 39 #include "f5/ oper_f5.h"39 #include "f5/f5_oper.h" 40 40 #endif 41 41 #ifdef USE_GENMAN_f6 42 #include "f6/ oper_f6.h"42 #include "f6/f6_oper.h" 43 43 #endif 44 44 #ifdef USE_GENMAN_f7 45 #include "f7/ oper_f7.h"45 #include "f7/f7_oper.h" 46 46 #endif 47 47 #ifdef USE_GENMAN_f8 48 #include "f8/ oper_f8.h"48 #include "f8/f8_oper.h" 49 49 #endif 50 50 #ifdef USE_GENMAN_f9 51 #include "f9/ oper_f9.h"51 #include "f9/f9_oper.h" 52 52 #endif 53 53 #ifdef USE_GENMAN_fF 54 #include "fF/ oper_fF.h"54 #include "fF/fF_oper.h" 55 55 #endif 56 56 #ifdef USE_GENMAN_fn 57 #include "fn/ oper_fn.h"57 #include "fn/fn_oper.h" 58 58 #endif 59 59 #ifdef USE_GENMAN_fT 60 #include "fT/ oper_fTest.h"60 #include "fT/fTest_oper.h" 61 61 #endif 62 62 -
cpp/frams/genetics/genman.h
r532 r779 12 12 #include <frams/neuro/geneticneuroparam.h> 13 13 #include "geno.h" 14 #include " oper_fx.h"14 #include "genooperators.h" 15 15 16 16 #define GENSTYLE_COMMENT GENSTYLE_RGBS(0,150,0,GENSTYLE_BOLD) -
cpp/frams/genetics/genooperators.cpp
r778 r779 4 4 5 5 #include <ctype.h> //isupper() 6 #include " oper_fx.h"6 #include "genooperators.h" 7 7 #include <common/log.h> 8 8 #include <common/nonstd_math.h>
Note: See TracChangeset
for help on using the changeset viewer.