public static GAPopulationManager getInstance()
 {
     if (mGAPoputionManager == null)
     {
         mGAPoputionManager = new GAPopulationManager();
     }
     return(mGAPoputionManager);
 }
 // add myself in GAPopulation class
 public void AddMySelf()
 {
     GAPopulationManager.getInstance().Add(this);
 }