source: cpp/frams/_demos/genooper_test.cpp @ 372

Last change on this file since 372 was 372, checked in by sz, 9 years ago

Renamed some classes and functions to make their purpose more obvious:

All MessageHandlers? must now be given the explicit "Enable" argument if you want them to automatically become active. This makes side effects clearly visible.

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#include <frams/mhandlers/stdouthandler.h>
6#include <frams/genetics/preconfigured.h>
7
8void printGen(Geno &g)
9{
10        printf("Genotype: %s\nFormat: %c\nValid: %s\nComment: %s\n",
11                g.getGene().c_str(), g.getFormat(), g.isValid() ? "yes" : "no", g.getComment().len() == 0 ? "(empty)" : g.getComment().c_str());
12}
13
14void printGenAndTitle(Geno &g, const char* title)
15{
16        printf("\n--------------------- %s: ---------------------\n", title);
17        printGen(g);
18}
19
20/* Demonstrates various genetic operators applied to a sample genotype. See also oper_fx.cpp. */
21int main(int argc, char *argv[])
22{
23        MessageHandlerToStdout messages_to_stdout(MessageHandlerBase::Enable);
24        PreconfiguredGenetics genetics;
25
26        rndGetInstance().randomize();
27        genetics.genman.p_report(NULL, NULL);
28
29        const char* src = (argc > 1) ? argv[1] : "/*9*/UUU";
30        Geno gsrc(src, -1, "First");
31        printGenAndTitle(gsrc, "source genotype (gsrc)");
32        char format = gsrc.getFormat();
33
34        Geno gmut = genetics.genman.Mutate(gsrc);
35        printGenAndTitle(gmut, "mutated (gmut)");
36
37        Geno gxover = genetics.genman.CrossOver(gsrc, gmut);
38        printGenAndTitle(gxover, "crossed over (gsrc and gmut)");
39
40        Geno gsimplest = genetics.genman.GetSimplest(format);
41        printGenAndTitle(gsimplest, "simplest");
42
43        Geno ginvalid("IT'S REALLY WRONG", format);
44        printGenAndTitle(ginvalid, "invalid");
45
46        Geno gvalidated = genetics.genman.Validate(ginvalid);
47        printGenAndTitle(gvalidated, "validated");
48
49        printf("\nHTMLized: %s\n", genetics.genman.HTMLize(gvalidated.getGene().c_str()).c_str());
50
51        return 0;
52}
Note: See TracBrowser for help on using the repository browser.