dear galib users,<br/><br/>I'm writing a program using GABin2DecGenome in which my genome is composed of 5 phenotypes to describe 5 float variables of my objective function. I've create the phenotypes with <br/><br/>>map.add (number_of_bits, min_value, max_value)<br/><br/>then I instantiate the genome, do ga.step and so on. After a n number of steps I  would to change the min_value and max_value of the second phenotype. <br/>In which way could I do it?<br/>I've tried with<br/><br/>>map.min(1) = value;<br/>but I obtain the error: non-lvalue in assignement.<br/><br/>I've tried also using pointers to min_value and max_value and to map.min and map.max,<br/><br/>> float *pmin;<br/>> pmin = &min_value;<br/>> *pmin = new_min_value;<br/> <br/>but it doesn't work.<br/>Could anyone help me?<br/>thank you in advance,<br/><br/>dario