Changeset 82 for cpp/gdk/model.h


Ignore:
Timestamp:
02/08/13 03:44:31 (11 years ago)
Author:
Maciej Komosinski
Message:

compiles under more platforms and OSes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/model.h

    r66 r82  
    66#define _MODEL_H_
    77
     8#include "nonstd_math.h"
    89#include <stdlib.h>
    9 #include <math.h>
    1010#include <stdio.h>
    1111
     
    109109/// make the model from current genotype
    110110void build();
    111 
    112 /// make f0 genotype from current construction
    113 void makeGeno(Geno &,MultiMap *map=0);
    114111
    115112friend class NeuroNetFactory;
     
    217214const Geno &getF0Geno();
    218215
     216/// make f0 genotype from current construction (low level version of getF0Geno)
     217void makeGeno(Geno &,MultiMap *map=0,bool handle_defaults=true);
     218
    219219/** @return mapping from source genotype (0-based position in text) to model elements reference numbers.
    220220    the map can be empty if the mapping hasn't been requested earlier (in constructor)
Note: See TracChangeset for help on using the changeset viewer.