Dear Galib users, I would like to access the individual fields of ga4.statistics().bestIndividual() of the program given below. What I mean is to acess the genome giving the best result without sending the result to the disk file. With regards, Subhas Hati Research Scholar, Computer Vision Group Indian Institute of Technilogy, Kharagpur India GARealGenome genome4; ... ... ... ... ... ... Parameter initialization. .... ... ... .... ... ... GASteadyStateGA ga4(genome4); ga4.parameters(params); ga4.set(gaNscoreFilename, "bog4.dat"); //ga4.terminator(GATerminateOnConvergence); ga4.minimize(); cout << "\nrunning ga number 3 (maximize each gene in the genome)...\n"; ga4.evolve(); cout << "the ga generated:\n" << ga4.statistics().bestIndividual() << endl; fp << ga4.statistics().bestIndividual() << endl;