Last change
on this file since 732 was
732,
checked in by Maciej Komosinski, 7 years ago
|
Added support for "checkpoints" (intermediate phases of development of the Model when converting between genetic encodings). See Model.checkpoint() and conv_f1.cpp for an example.
|
-
Property svn:eol-style set to
native
|
File size:
665 bytes
|
Line | |
---|
1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
2 | // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. |
---|
3 | // See LICENSE.txt for details. |
---|
4 | |
---|
5 | #ifndef _PRINTCONVMAP_H_ |
---|
6 | #define _PRINTCONVMAP_H_ |
---|
7 | |
---|
8 | #include <frams/util/sstring.h> |
---|
9 | |
---|
10 | class MultiMap; |
---|
11 | |
---|
12 | void printConvMap(const SString& gen1, const SString& gen2, const MultiMap& map); |
---|
13 | void printModelMap(const SString& gen1, const MultiMap& map); //automaticaly combines the map with the ModelDisplayMap |
---|
14 | const MultiMap & getModelDisplayMap(); // mapping: true model -> display (so the regular map printing/debugging tools can be used for model maps, avoiding invonveniently huge numbers) |
---|
15 | |
---|
16 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.