Changeset 732 for cpp/frams/param


Ignore:
Timestamp:
02/15/18 00:42:07 (6 years ago)
Author:
Maciej Komosinski
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/param/param.cpp

    r720 r732  
    853853        else
    854854        {
     855                if ((t[0] == 'o') && (t[1] == ' '))
     856                {
     857                        err = "space after 'o'";
     858                }
    855859                if (!(pe->flags & (PARAM_READONLY | PARAM_DONTSAVE | PARAM_USERREADONLY | PARAM_CONST | PARAM_DONTLOAD | PARAM_LINECOMMENT | PARAM_OBJECTSET)))
    856860                { //write access
     
    12871291                if (i >= 0) i++;
    12881292#ifdef __CODEGUARD__
    1289                 if (next_field<end-1) t=next_field+1; else return fields_loaded;
     1293                if (next_field < end - 1) t = next_field + 1; else return fields_loaded;
    12901294#else
    12911295                t = next_field + 1;
Note: See TracChangeset for help on using the changeset viewer.