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

Last change on this file since 197 was 197, checked in by Maciej Komosinski, 10 years ago

GDK used by developers since 1999, distributed on the web since 2002

  • Property svn:eol-style set to native
File size: 1.8 KB
RevLine 
[138]1// This file is a part of the Framsticks GDK.
[197]2// Copyright (C) 1999-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
[138]3// Refer to http://www.framsticks.com/ for further information.
4
5#include <frams/errmgr/stdouterr.h>
[145]6#include <frams/genetics/preconfigured.h>
[138]7
8void printGen(Geno &g)
9{
10        printf("Genotype: %s\nFormat: %c\nValid: %s\nComment: %s\n",
11                (const char*)g.getGene(), g.getFormat(), g.isValid() ? "yes" : "no", g.getComment().len() == 0 ? "(empty)" : (const char*)g.getComment());
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{
[145]23        StdoutErrorHandler err;//the default ErrorHandler constructor automatically registers this object to receive framsg messages (and in this case, redirect them to standard output)
24        PreconfiguredGenetics genetics;
[138]25
[145]26        rndGetInstance().randomize();
27        genetics.genman.p_report(NULL, NULL);
28
[139]29        const char* src = (argc > 1) ? argv[1] : "/*9*/UUU";
[138]30        Geno gsrc(src, -1, "First");
31        printGenAndTitle(gsrc, "source genotype (gsrc)");
[145]32        char format = gsrc.getFormat();
[138]33
[145]34        Geno gmut = genetics.genman.Mutate(gsrc);
[138]35        printGenAndTitle(gmut, "mutated (gmut)");
36
[145]37        Geno gxover = genetics.genman.CrossOver(gsrc, gmut);
[138]38        printGenAndTitle(gxover, "crossed over (gsrc and gmut)");
39
[145]40        Geno gsimplest = genetics.genman.GetSimplest(format);
[138]41        printGenAndTitle(gsimplest, "simplest");
42
[145]43        Geno ginvalid("IT'S REALLY WRONG", format);
[138]44        printGenAndTitle(ginvalid, "invalid");
45
[145]46        Geno gvalidated = genetics.genman.Validate(ginvalid);
[139]47        printGenAndTitle(gvalidated, "validated");
[138]48
[145]49        printf("\nHTMLized: %s\n", (const char*)genetics.genman.HTMLize((const char*)gvalidated.getGene()));
[138]50
51        return 0;
52}
Note: See TracBrowser for help on using the repository browser.