Changeset 736 for cpp/frams/genetics
- Timestamp:
- 02/17/18 19:02:07 (7 years ago)
- Location:
- cpp/frams/genetics
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/conv_f4.cpp
r726 r736 23 23 24 24 25 SString GenoConv_f40::convert(SString &in, MultiMap * map )25 SString GenoConv_f40::convert(SString &in, MultiMap * map, bool using_checkpoints) 26 26 { 27 27 int res; … … 48 48 49 49 50 SString GenoConv_F41_TestOnly::convert(SString &in, MultiMap * map )50 SString GenoConv_F41_TestOnly::convert(SString &in, MultiMap * map, bool using_checkpoints) 51 51 { 52 52 int res; -
cpp/frams/genetics/f4/conv_f4.h
r286 r736 20 20 public: 21 21 GenoConv_f40(); 22 SString convert(SString &in, MultiMap * map );22 SString convert(SString &in, MultiMap * map, bool using_checkpoints); 23 23 }; 24 24 … … 29 29 public: 30 30 GenoConv_F41_TestOnly(); 31 SString convert(SString &in, MultiMap * map );31 SString convert(SString &in, MultiMap * map, bool using_checkpoints); 32 32 }; 33 33 -
cpp/frams/genetics/f9/conv_f9.cpp
r664 r736 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 7Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 25 25 //const char* turtle_commandsZ_f9="0000-+"; 26 26 27 SString GenoConv_f90::convert(SString &in, MultiMap *map )27 SString GenoConv_f90::convert(SString &in, MultiMap *map, bool using_checkpoints) 28 28 { 29 29 vector<XYZ_LOC> vertices; -
cpp/frams/genetics/f9/conv_f9.h
r664 r736 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 7Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 35 35 36 36 //implementation of the GenoConverter method 37 SString convert(SString &in, MultiMap *map );37 SString convert(SString &in, MultiMap *map, bool using_checkpoints); 38 38 39 39 protected: -
cpp/frams/genetics/fF/conv_fF.cpp
r667 r736 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 7Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 36 36 } 37 37 38 SString GenoConv_fF0::convert(SString &in, MultiMap *map )38 SString GenoConv_fF0::convert(SString &in, MultiMap *map, bool using_checkpoints) 39 39 { 40 40 fF_growth_params gp; -
cpp/frams/genetics/fF/conv_fF.h
r667 r736 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 7Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 40 40 ~GenoConv_fF0(); 41 41 //implementation of the GenoConverter method 42 SString convert(SString &in, MultiMap *map );42 SString convert(SString &in, MultiMap *map, bool using_checkpoints); 43 43 44 44 protected:
Note: See TracChangeset
for help on using the changeset viewer.