source: cpp/frams/genetics/genman.cpp @ 830

Last change on this file since 830 was 780, checked in by Maciej Komosinski, 6 years ago

Added sources for genetic encodings fB, fH, fL

  • Property svn:eol-style set to native
File size: 22.5 KB
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#include "genman.h"
6#include <frams/vm/classes/genoobj.h>
7#include GEN_CONFIG_FILE //configuration of active genetic operators
8#include "common/log.h"
9#include "common/nonstd_math.h"
10#include "common/stl-util.h"
11#include <common/loggers/loggers.h>
12
13
14#define GENMAN_REPEAT_FAILED 100 //how many times GenMan tries to repeat a mutation or crossover when the operator does not return acceptable genotype
15#define STRINGIFY_1(x) #x
16#define STRINGIFY(x) STRINGIFY_1(x) //this second-level macro allows the parameter to be a macro itself and to stringify its value, not its name
17#define GENMAN_REPEAT_FAILED_STR STRINGIFY(GENMAN_REPEAT_FAILED)
18
19
20#ifdef USE_GENMAN_f0
21#include "f0/f0_oper.h"
22#endif
23#ifdef USE_GENMAN_f0FUZZY
24#include "f0/f0Fuzzy_oper.h"
25#endif
26#ifdef USE_GENMAN_f1
27#include "f1/f1_oper.h"
28#endif
29#ifdef USE_GENMAN_f2
30#include "f2/f2_oper.h"
31#endif
32#ifdef USE_GENMAN_f2
33#include "f3/f3_oper.h"
34#endif
35#ifdef USE_GENMAN_f4
36#include "f4/f4_oper.h"
37#endif
38#ifdef USE_GENMAN_f5
39#include "f5/f5_oper.h"
40#endif
41#ifdef USE_GENMAN_f6
42#include "f6/f6_oper.h"
43#endif
44#ifdef USE_GENMAN_f7
45#include "f7/f7_oper.h"
46#endif
47#ifdef USE_GENMAN_f8
48#include "f8/f8_oper.h"
49#endif
50#ifdef USE_GENMAN_f9
51#include "f9/f9_oper.h"
52#endif
53#ifdef USE_GENMAN_fF
54#include "fF/fF_oper.h"
55#endif
56#ifdef USE_GENMAN_fn
57#include "fn/fn_oper.h"
58#endif
59#ifdef USE_GENMAN_fT
60#include "fT/fTest_oper.h"
61#endif
62#ifdef USE_GENMAN_fB
63#include "fB/fB_oper.h"
64#endif
65#ifdef USE_GENMAN_fH
66#include "fH/fH_oper.h"
67#endif
68#ifdef USE_GENMAN_fL
69#include "fL/fL_oper.h"
70#endif
71
72using namespace std; //string, vector
73
74//old code needs update:
75//#include "gengroups.h"
76//extern GenGroup *listaGen;
77//   GENGROUP(0)->l_del.add(sim->GM.onDelGen,&sim->GM); //before delete
78//   GENGROUP(0)->l_del.remove(sim->GM.onDelGen,&sim->GM); //before delete
79
80
81#define FIELDSTRUCT GenMan
82
83static ParamEntry GMparam_tab[] =
84{
85        { "Genetics", 1, 10, "GenMan", },
86        { "gen_hist", 0, PARAM_DONTSAVE, "Remember history of genetic operations", "d 0 1 0", FIELD(history), "Required for phylogenetic analysis", },
87        { "gen_hilite", 0, 0, "Use syntax highlighting", "d 0 1 1", FIELD(hilite), "Use colors for genes?\n(slows down viewing/editing of huge genotypes)", },
88        { "gen_extmutinfo", 0, 0, "Extended mutation info", "d 0 2 0 ~Off~Method ID~Method description", FIELD(extmutinfo), "If active, information about employed mutation method will be stored in the 'info' field of each mutated genotype.", },
89        { "operReport", 0, PARAM_DONTSAVE, "Operators report", "p()", PROCEDURE(p_report), "Show available genetic operators", },
90        { "toHTML", 0, PARAM_DONTSAVE, "HTMLize a genotype", "p s(s)", PROCEDURE(p_htmlize), "returns genotype expressed as colored HTML", },
91        { "toHTMLshort", 0, PARAM_DONTSAVE, "HTMLize a genotype, shorten if needed", "p s(s)", PROCEDURE(p_htmlizeshort), "returns genotype (abbreviated if needed) expressed as colored HTML", },
92        { "validate", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "Validate", "p oGeno(oGeno)", PROCEDURE(p_validate), "returns validated (if possible) Geno object from supplied Geno", },
93        { "mutate", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "Mutate", "p oGeno(oGeno)", PROCEDURE(p_mutate), "returns mutated Geno object from supplied Geno", },
94        { "crossOver", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "Crossover", "p oGeno(oGeno,oGeno)", PROCEDURE(p_crossover), "returns crossed over genotype", },
95        { "getSimplest", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "Get simplest genotype", "p oGeno(s format)", PROCEDURE(p_getsimplest), "returns the simplest genotype for a given encoding (format). \"0\" means f0, \"4\" means f4, etc.", },
96        { 0, },
97};
98
99static ParamEntry GMstats_tab[] =
100{
101        { "Genetics", 1, 12, "GenManStats", "Statistics for genetic operations." },
102        { "gen_count", 0, PARAM_READONLY, "Number of genetic operations so far", "d", FIELD(count), "", },
103        { "gen_mvalid", 0, PARAM_READONLY, "Mutations valid", "d", FIELD(valid_m), "", },
104        { "gen_mvalidated", 0, PARAM_READONLY, "Mutations validated", "d", FIELD(validated_m), "", },
105        { "gen_minvalid", 0, PARAM_READONLY, "Mutations invalid", "d", FIELD(invalid_m), "couldn't be repaired", },
106        { "gen_mfailed", 0, PARAM_READONLY, "Mutations failed", "d", FIELD(failed_m), "couldn't be performed", },
107        { "gen_xovalid", 0, PARAM_READONLY, "Crossovers valid", "d", FIELD(valid_xo), "", },
108        { "gen_xovalidated", 0, PARAM_READONLY, "Crossovers validated", "d", FIELD(validated_xo), "", },
109        { "gen_xoinvalid", 0, PARAM_READONLY, "Crossovers invalid", "d", FIELD(invalid_xo), "couldn't be repaired", },
110        { "gen_xofailed", 0, PARAM_READONLY, "Crossovers failed", "d", FIELD(failed_xo), "couldn't be performed", },
111        { "gen_mutimpr", 0, PARAM_READONLY, "Mutations total effect", "f", FIELD(mutchg), "total cumulative mutation change", },
112        { "gen_xoimpr", 0, PARAM_READONLY, "Crossovers total effect", "f", FIELD(xochg), "total cumulative crossover change", },
113        { "clrstats", 0, PARAM_DONTSAVE, "Clear stats and history", "p()", PROCEDURE(p_clearStats), "", },
114        { 0, },
115};
116
117#undef FIELDSTRUCT
118
119GenMan::GenMan() : localpar(GMparam_tab, this), localstats(GMstats_tab, this),
120seloperpar("GenOperators", "Genetics: Active operators"),
121neuronsparam("Genetics: Neurons to add", "neuronsAdd", "neuadd_"),
122par("GenMan", "Manages various genetic operations, using appropriate operators for the argument genotype format.")
123{
124        history = 0;
125        hilite = 1;
126        clearStats();
127
128#ifdef USE_GENMAN_f0
129        oper_fx_list.push_back(new Geno_f0);
130#endif
131#ifdef USE_GENMAN_f0FUZZY
132        oper_fx_list.push_back(new Geno_f0Fuzzy);
133#endif
134#ifdef USE_GENMAN_f1
135        oper_fx_list.push_back(new Geno_f1);
136#endif
137#ifdef USE_GENMAN_f2
138        oper_fx_list.push_back(new Geno_f2);
139#endif
140#ifdef USE_GENMAN_f3
141        oper_fx_list.push_back(new Geno_f3);
142#endif
143#ifdef USE_GENMAN_f4
144        oper_fx_list.push_back(new Geno_f4);
145#endif
146#ifdef USE_GENMAN_f5
147        oper_fx_list.push_back(new Geno_f5);
148#endif
149#ifdef USE_GENMAN_f6
150        oper_fx_list.push_back(new Geno_f6);
151#endif
152#ifdef USE_GENMAN_f7
153        oper_fx_list.push_back(new Geno_f7);
154#endif
155#ifdef USE_GENMAN_f8
156        oper_fx_list.push_back(new Geno_f8);
157#endif
158#ifdef USE_GENMAN_f9
159        oper_fx_list.push_back(new GenoOper_f9);
160#endif
161#ifdef USE_GENMAN_fF
162        oper_fx_list.push_back(new GenoOper_fF);
163#endif
164#ifdef USE_GENMAN_fn
165        oper_fx_list.push_back(new GenoOper_fn);
166#endif
167#ifdef USE_GENMAN_fT
168        oper_fx_list.push_back(new GenoOper_fTest);
169#endif
170#ifdef USE_GENMAN_fB
171        oper_fx_list.push_back(new Geno_fB);
172#endif
173#ifdef USE_GENMAN_fH
174        oper_fx_list.push_back(new Geno_fH);
175#endif
176#ifdef USE_GENMAN_fL
177        oper_fx_list.push_back(new Geno_fL);
178#endif
179
180        seloper = new int[oper_fx_list.size()]; //may result in a little overhead if some of the operators on the oper_fx_list concern the same genetic format
181        int selopercount = 0;
182        for (unsigned int i = 0; i < oper_fx_list.size(); i++)
183        {
184                if (operformats.find(oper_fx_list[i]->supported_format) != -1) continue;
185                string type = string("~") + oper_fx_list[i]->name;
186                int dup = 0;
187                for (unsigned int j = i + 1; j < oper_fx_list.size(); j++)
188                        if (oper_fx_list[i]->supported_format == oper_fx_list[j]->supported_format)
189                        {
190                        type += "~";
191                        type += oper_fx_list[j]->name;
192                        dup++;
193                        }
194                type = ssprintf("d 0 %d ", dup) + type;
195                string id = ssprintf("genoper_f%c", oper_fx_list[i]->supported_format);
196                string name = ssprintf("Operators for f%c", oper_fx_list[i]->supported_format);
197                seloper[selopercount] = 0;
198                operformats += oper_fx_list[i]->supported_format;
199                //printf("%x %s %s %s\n",&seloper[selopercount],(const char*)id,(const char*)type,(const char*)name);
200                seloperpar.addProperty(&seloper[selopercount++], id.c_str(), type.c_str(), name.c_str(), "", PARAM_READONLY*(dup == 0));
201        }
202
203        par += &localpar;
204        par += &seloperpar;
205        par += &neuronsparam;
206        for (unsigned int i = 0; i < oper_fx_list.size(); i++)
207                if (oper_fx_list[i]->par.getParamTab()) par += &oper_fx_list[i]->par;
208
209        setDefaults(); //use Param to initialize all values of fields in the paramtab of this object and genetic operators on oper_fx_list
210}
211
212GenMan::~GenMan()
213{
214        for (unsigned int i = 0; i < oper_fx_list.size(); i++) delete oper_fx_list[i];
215        delete[] seloper;
216}
217
218void GenMan::setDefaults()
219{
220        for (unsigned int i = 0; i < oper_fx_list.size(); i++)
221        {
222                oper_fx_list[i]->par.setDefault();
223                oper_fx_list[i]->setDefaults();
224        }
225        localpar.setDefault();
226        //...and we do not reset others that are linked to 'par',
227        //because there quite a few of them, and not every of them defines defaults for each of its parameters.
228}
229
230int GenMan::testValidity(Geno &g, bool &canvalidate)
231{
232        SString ggs = g.getGenes();
233        const char *gg = ggs.c_str();
234        GenoOperators *gf = getOper_f(g.getFormat());
235        int check1;
236        if (!gf) { canvalidate = false; return GENOPER_NOOPER; }
237        else check1 = gf->checkValidity(gg, g.getName().c_str());
238        if (!canvalidate) return check1; //just checking
239        if (check1 == GENOPER_OK) { canvalidate = false; return check1; }
240        char *g2 = strdup(gg);
241        if (gf->validate(g2, g.getName().c_str()) == GENOPER_NOOPER) { free(g2); canvalidate = false; return check1; }
242        if (check1 == GENOPER_NOOPER) //disaster: cannot check because there is no check operator
243        {
244                g.setGenesAssumingSameFormat(g2); free(g2); canvalidate = false; return GENOPER_NOOPER;
245        }
246        int check2 = gf->checkValidity(g2, "validated");
247        if (check2 == GENOPER_OK) g.setGenesAssumingSameFormat(g2);
248        free(g2);
249        if (check2 == GENOPER_OK) return check1;
250        canvalidate = false;
251        return check1; //could not validate.
252}
253
254int GenMan::testGenoValidity(Geno& g)
255{
256        bool fix = false;
257        switch (testValidity(g, fix))
258        {
259        case GENOPER_OK: return 1;
260        case GENOPER_NOOPER: return -1;
261        default: return 0;
262        }
263}
264
265Geno GenMan::validate(const Geno& geny)
266{
267        char format = geny.getFormat();
268        GenoOperators *gf = getOper_f(format);
269        if (gf == NULL)
270                return Geno(SString::empty(), -1, SString::empty(), SString::sprintf("GENOPER_NOOPER: Validate(): don't know how to handle genetic format %c", format));
271        char *g2 = strdup(geny.getGenes().c_str()); //copy for validation
272        int res = gf->validate(g2, geny.getName().c_str());
273        SString sg2 = g2;
274        free(g2);
275        if (res == GENOPER_OK)
276                return Geno(sg2, format, geny.getName(), geny.getComment());
277        else
278                return Geno(SString::empty(), -1, SString::empty(), SString::sprintf("GENOPER_NOOPER: validate() for format %c returned invalid value", format));
279}
280
281Geno GenMan::mutate(const Geno& g)
282{
283        float chg; //how many changes
284        int method; //mutation method
285        char format = g.getFormat();
286        GenoOperators *gf = getOper_f(format);
287        if (gf == NULL)
288                return Geno(SString::empty(), -1, SString::empty(), SString::sprintf("GENOPER_NOOPER: Mutate(): don't know how to handle genetic format %c", format));
289        Geno gv = g;
290        bool canvalidate = true;
291        if (testValidity(gv, canvalidate) > 0 && canvalidate == false)
292                return Geno("", -1, "", "GENOPER_OPFAIL: Mutate(): cannot validate invalid source genotype");
293        bool ok = false;
294        int pcount = count;
295        while (!ok)
296        {
297                char *gn = strdup(gv.getGenes().c_str()); //copy for mutation
298                chg = 0;
299                if (gf->mutate(gn, chg, method) == GENOPER_OK)
300                {
301                        LoggerToMemory eh(LoggerBase::Enable | LoggerToMemory::StoreFirstMessage); //mute testValidity()
302                        Geno G(gn, gv.getFormat(), "", "");
303                        canvalidate = true;
304                        int res = testValidity(G, canvalidate);
305                        if (res == GENOPER_OK && canvalidate == false) { valid_m++; ok = true; }
306                        else
307                                if (res > 0 && canvalidate == false) invalid_m++; else
308                                {
309                                validated_m++; ok = true;
310                                }
311                        if (ok) gv = G;
312                }
313                else failed_m++;
314                free(gn);
315                count++;
316                if (!ok && (count - pcount > GENMAN_REPEAT_FAILED))
317                {
318                        logPrintf("GenMan", "Mutate", 2, "Tried " GENMAN_REPEAT_FAILED_STR "x and failed: %s", g.getGenes().c_str());
319                        return Geno("", -1, "", "GENOPER_OPFAIL: Mutate() tried " GENMAN_REPEAT_FAILED_STR "x and failed");
320                }
321        }
322        mutchg += chg;
323        if (history) saveLink(g.getGenes().c_str(), "", gv.getGenes().c_str(), chg);
324        SString mutinfo;
325        if (extmutinfo == 0) mutinfo = SString::sprintf("%.2f%% mutation of '%s'", 100 * chg, g.getName().c_str()); else
326                if (extmutinfo == 1) mutinfo = SString::sprintf("%.2f%% mutation(%d) of '%s'", 100 * chg, method, g.getName().c_str()); else
327                        mutinfo = SString::sprintf("%.2f%% mutation(%s) of '%s'", 100 * chg, gf->mutation_method_names ? gf->mutation_method_names[method] : "unspecified method name", g.getName().c_str());
328        gv.setComment(mutinfo);
329        return gv;
330}
331
332Geno GenMan::crossOver(const Geno& g1, const Geno& g2)
333{
334        char format = g1.getFormat();
335        if (format != g2.getFormat()) return Geno(SString::empty(), -1, SString::empty(), SString::sprintf("GENOPER_NOOPER: CrossOver(): does not work for parents with differing genetic formats (%c and %c)", format, g2.getFormat()));
336        GenoOperators *gf = getOper_f(format);
337        if (gf == NULL)
338                return Geno(SString::empty(), -1, SString::empty(), SString::sprintf("GENOPER_NOOPER: CrossOver(): no operators found for genetic format %c", format));
339        Geno g1v = g1, g2v = g2;
340
341        {
342                LoggerToMemory eh(LoggerBase::Enable | LoggerToMemory::StoreFirstMessage); //mute testValidity()
343                bool canvalidate = true;
344                if (testValidity(g1v, canvalidate) > 0 && canvalidate == false)
345                        return Geno("", -1, "", "GENOPER_OPFAIL: CrossOver(): cannot validate invalid source genotype #1");
346                canvalidate = true;
347                if (testValidity(g2v, canvalidate) > 0 && canvalidate == false)
348                        return Geno("", -1, "", "GENOPER_OPFAIL: CrossOver(): cannot validate invalid source genotype #2");
349        }
350
351        float chg;
352        bool ok = false;
353        int pcount = count;
354
355        while (!ok)
356        {
357                float chg1, chg2;
358                char *g1n = strdup(g1.getGenes().c_str()); //copy for crossover
359                char *g2n = strdup(g2.getGenes().c_str()); //copy for crossover
360                chg1 = chg2 = 0;
361                if (gf->crossOver(g1n, g2n, chg1, chg2) == GENOPER_OK)
362                {
363                        char *gn;
364                        if (g1n[0] && g2n[0]) if (randomN(2) == 0) g1n[0] = 0; else g2n[0] = 0; //both provided? we want only one
365                        if (g1n[0]) { gn = g1n; chg = chg1; }
366                        else { gn = g2n; chg = chg2; }
367                        LoggerToMemory eh(LoggerBase::Enable | LoggerToMemory::StoreFirstMessage); //mute testValidity()
368                        Geno G(gn, g1v.getFormat(), "", "");
369                        bool canvalidate = true;
370                        int res = testValidity(G, canvalidate);
371                        if (res == GENOPER_OK && canvalidate == false) { valid_xo++; ok = true; }
372                        else
373                                if (res > 0 && canvalidate == false) invalid_xo++; else
374                                {
375                                validated_xo++; ok = true;
376                                }
377                        if (ok) g1v = G;
378                }
379                else failed_xo++;
380                free(g1n);
381                free(g2n);
382                count++;
383                if (!ok && (count - pcount > GENMAN_REPEAT_FAILED))
384                {
385                        logPrintf("GenMan", "CrossOver", 2, "Tried " GENMAN_REPEAT_FAILED_STR "x and failed: %s and %s", g1.getGenes().c_str(), g2.getGenes().c_str());
386                        return Geno("", -1, "", "GENOPER_OPFAIL: CrossOver() tried " GENMAN_REPEAT_FAILED_STR "x and failed");
387                }
388        }
389        // result in g1v
390        xochg += chg;
391        if (history) saveLink(g1.getGenes().c_str(), g2.getGenes().c_str(), g1v.getGenes().c_str(), chg);
392        SString xoinfo = SString::sprintf("Crossing over of '%s' (%.2f%%) and '%s' (%.2f%%)",
393                g1.getName().c_str(), 100 * chg, g2.getName().c_str(), 100 * (1 - chg));
394        g1v.setComment(xoinfo);
395        return g1v;
396}
397
398float GenMan::similarity(const Geno& g1, const Geno& g2)
399{
400        char format = g1.getFormat();
401        if (format != g2.getFormat()) return GENOPER_NOOPER;
402        GenoOperators *gf = getOper_f(format);
403        if (!gf) return GENOPER_NOOPER; else return gf->similarity(g1.getGenes().c_str(), g2.getGenes().c_str());
404}
405
406uint32_t GenMan::getStyle(const char *g, const Geno *G, int pos)
407{
408        char format = G->getFormat();
409        if (format == Geno::INVALID_FORMAT)
410                return GENSTYLE_RGBS(64, 64, 64, 0); // gray & "valid" (unknown format so we don't know what is valid and what is not)
411        if ((pos = G->mapStringToGen(pos)) == -1) return GENSTYLE_COMMENT;
412        GenoOperators *gf = getOper_f(format);
413        if (!gf) return GENSTYLE_CS(0, 0); //black & valid
414        else return gf->style(G->getGenes().c_str(), pos);
415}
416
417uint32_t GenMan::getStyle(const char *g, int pos)
418{
419        Geno G(g);
420        return getStyle(g, &G, pos);
421}
422
423void GenMan::getFullStyle(const char *g, const Geno *G, uint32_t *styletab)
424{
425        char format = G->getFormat();
426        if (format == Geno::INVALID_FORMAT)
427        {
428                for (unsigned int pos = 0; pos < strlen(g); pos++)
429                        styletab[pos] = GENSTYLE_RGBS(64, 64, 64, 0); // gray & "valid" (unknown format so we don't know what is valid and what is not)
430                return;
431        }
432        GenoOperators *gf = getOper_f(format);
433        SString geny = G->getGenes();
434        for (unsigned int pos = 0; pos < strlen(g); pos++)
435        {
436                int posmapped = G->mapStringToGen(pos);
437                if (posmapped == -1) styletab[pos] = GENSTYLE_COMMENT;
438                else if (!gf) styletab[pos] = GENSTYLE_CS(0, 0); //black & valid
439                else styletab[pos] = gf->style(geny.c_str(), posmapped);
440                //logPrintf("GenMan", "getFullStyle", 0, "%d  char='%c' (%d)  format=0x%08x", pos, g[pos], g[pos], styletab[pos]);
441        }
442}
443
444void GenMan::getFullStyle(const char *g, uint32_t *styletab)
445{
446        Geno G(g);
447        getFullStyle(g, &G, styletab);
448}
449
450string GenMan::HTMLize(const char *g) { return HTMLize(g, false); }
451
452string GenMan::HTMLizeShort(const char *g) { return HTMLize(g, true); }
453
454string GenMan::HTMLize(const char *g, bool shorten)
455{
456        char buf[50];
457        int len = strlen(g);
458        int chars = 0, lines = 0;
459        bool shortened = false;
460        uint32_t *styletab = new uint32_t[len];
461        getFullStyle(g, styletab);
462        string html = "\n<div style=\"background:white;padding:0.2em;font-family:arial,helvetica,sans-serif;font-size:90%\">";
463        uint32_t prevstyle, prevcolor, style = 0, color = 0;
464        for (int i = 0; i < len; i++)
465        {
466                if (shorten && ((lines == 0 && chars > 160) || (lines > 5 || chars > 300))) { shortened = true; break; }
467                if (g[i] == '\r') continue;
468                if (g[i] == '\n') { html += "<br>\n"; lines++; continue; }
469                chars++;
470                prevstyle = style;
471                prevcolor = color;
472                style = GENGETSTYLE(styletab[i]);
473                color = GENGETCOLOR(styletab[i]);
474                if ((i != 0 && (color != prevcolor))) html += "</font>";
475                if ((style&GENSTYLE_INVALID) != (prevstyle&GENSTYLE_INVALID))
476                {
477                        html += "<"; if (!(style&GENSTYLE_INVALID)) html += "/"; html += "u>";
478                }
479                if ((style&GENSTYLE_BOLD) != (prevstyle&GENSTYLE_BOLD))
480                {
481                        html += "<"; if (!(style&GENSTYLE_BOLD)) html += "/"; html += "b>";
482                }
483                if ((style&GENSTYLE_ITALIC) != (prevstyle&GENSTYLE_ITALIC))
484                {
485                        html += "<"; if (!(style&GENSTYLE_ITALIC)) html += "/"; html += "i>";
486                }
487                if ((i == 0 || (color != prevcolor)))
488                {
489                        sprintf(buf, "<font color=#%02x%02x%02x>", GENGET_R(color), GENGET_G(color), GENGET_B(color)); html += buf;
490                }
491                if (g[i] == '<') html += "&lt;"; else if (g[i] == '>') html += "&gt;"; else html += g[i];
492                if ((i % 3) == 0 && g[i] == ' ') html += "\n"; //for readability, insert some newlines into html...
493        }
494        delete[] styletab;
495        html += "</u></b></i></font>";
496        if (shortened) html += " [etc...]";
497        html += "</div>\n";
498        return html;
499}
500
501void GenMan::p_htmlize(ExtValue *args, ExtValue *ret)
502{
503        ret->setString(HTMLize(args->getString().c_str()).c_str());
504}
505
506void GenMan::p_htmlizeshort(ExtValue *args, ExtValue *ret)
507{
508        ret->setString(HTMLizeShort(args->getString().c_str()).c_str());
509}
510
511Geno GenMan::getSimplest(char format)
512{
513        GenoOperators *gf = getOper_f(format);
514        if (!gf) return Geno();
515        string info = "The simplest genotype of format f"; info += format;
516        info += " for operators '"; info += gf->name; info += "'.";
517        return Geno(gf->getSimplest(), format, "Root", info.c_str());
518}
519
520void GenMan::p_getsimplest(ExtValue *args, ExtValue *ret)
521{
522        int format = GenoObj::formatFromExtValue(args[0]);
523        if (!getOper_f(format))
524                ret->setEmpty();
525        else
526                *ret = GenoObj::makeDynamicObjectAndDecRef(new Geno(getSimplest(format)));
527}
528
529const char *GenMan::getOpName(char format)
530{
531        GenoOperators *gf = getOper_f(format);
532        if (!gf) return "n/a"; else return gf->name.c_str();
533}
534
535GenoOperators* GenMan::getOper_f(char format)
536{
537        int ind = operformats.find(format);
538        if (ind == -1) return NULL;
539        int which_oper_of_format = seloper[ind];
540        for (unsigned int i = 0; i < oper_fx_list.size(); i++)
541                if (oper_fx_list[i]->supported_format == format)
542                        if (which_oper_of_format == 0) return oper_fx_list[i]; else which_oper_of_format--;
543        return NULL; //should never happen
544}
545
546void GenMan::saveLink(const string parent1, const string parent2, const string child, const float chg)
547{
548        GenoLink l;
549        l.count = count;
550        l.parent1 = parent1;
551        l.parent2 = parent2;
552        l.child = child;
553        l.chg = chg;
554        l.fit = 0; //temporarily. Will be set when the genotype dies
555        //logPrintf("GenMan","saveLink",0,"#%d: [%d] '%s' + '%s' -> '%s'",GenoLinkList.size(),count,parent1.c_str(),parent2.c_str(),child.c_str());
556        GenoLinkList.push_back(l);
557}
558
559void GenMan::onDelGen(void *obj, intptr_t n)
560{
561        //old code needs update:
562        //   ((SpeciesList*)obj)->przyDodaniu(i);
563        /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
564           GenMan *gm=(GenMan*)obj;
565           Genotype *gt=(Genotype*)(*listaGen)(n); //there is no more "listaGen"
566           string g=(const char*)gt->genotype.getGene();
567           float fit=gt->getFinalFitness();
568           for(int i=0;i<gm->GenoLinkList.size();i++) //find genotype
569           if (gm->GenoLinkList[i].g1==g) {gm->GenoLinkList[i].fit=fit; break;}
570           */
571}
572
573void GenMan::clearStats()
574{
575        count = 0;
576        valid_m = valid_xo = validated_m = validated_xo = invalid_m = invalid_xo = failed_m = failed_xo = 0;
577        mutchg = xochg = 0;
578        GenoLinkList.clear();
579}
580
581void GenMan::p_clearStats(ExtValue *args, ExtValue *ret) { clearStats(); }
582
583void GenMan::p_report(ExtValue *args, ExtValue *ret)
584{                      //should be updated to handle multiple operators for a single format
585        char *g, *g2;
586        float f1, f2;
587        int m;
588        logMessage("GenMan", "Report", 0, "The following genetic operators are available:");
589        for (unsigned int i = 0; i < oper_fx_list.size(); i++)
590        {
591                string l;
592                if (oper_fx_list[i]->checkValidity("", "") != GENOPER_NOOPER) l += " checkValidity";
593                if (oper_fx_list[i]->getSimplest())
594                {
595                        g = strdup(oper_fx_list[i]->getSimplest());
596                        g2 = strdup(g);
597                        if (oper_fx_list[i]->validate(g, "") != GENOPER_NOOPER) l += " validate";
598                        if (oper_fx_list[i]->mutate(g, f1, m) != GENOPER_NOOPER) l += " mutate";
599                        if (oper_fx_list[i]->crossOver(g, g2, f1, f2) != GENOPER_NOOPER) l += " crossover";
600                        l += " getSimplest";
601                        free(g); free(g2);
602                }
603                //      if (oper_fx_list[i]->similarity("","")!=GENOPER_NOOPER) l+=" similarity";
604                logPrintf("GenMan", "Report", 0, "format f%c (%s):%s",
605                        oper_fx_list[i]->supported_format, oper_fx_list[i]->name.c_str(), l.c_str());
606        }
607}
608
609void GenMan::p_validate(ExtValue *args, ExtValue *ret)
610{
611        Geno *g = GenoObj::fromObject(args[0]);
612        if (g == NULL)
613                ret->setEmpty();
614        else
615                *ret = GenoObj::makeDynamicObjectAndDecRef(new Geno(validate(*g)));
616}
617
618void GenMan::p_mutate(ExtValue *args, ExtValue *ret)
619{
620        Geno *g = GenoObj::fromObject(args[0]);
621        if (g == NULL)
622                ret->setEmpty();
623        else
624                *ret = GenoObj::makeDynamicObjectAndDecRef(new Geno(mutate(*g)));
625}
626
627void GenMan::p_crossover(ExtValue *args, ExtValue *ret)
628{
629        Geno *g1 = GenoObj::fromObject(args[1]);
630        Geno *g2 = GenoObj::fromObject(args[0]);
631        if (g1 == NULL || g2 == NULL)
632                ret->setEmpty();
633        else
634                *ret = GenoObj::makeDynamicObjectAndDecRef(new Geno(crossOver(*g1, *g2)));
635}
636
Note: See TracBrowser for help on using the repository browser.