Examples of anneal()


Examples of com.nr.min.Amebsa.anneal()

    Amebsa amb1 = new Amebsa(point,del,func_amebsa,FTOL);
   
    iter.val=1000;
    temperature=100.0;
    for (j=0;j<NMAX;j++) {
      test=amb1.anneal(iter,temperature);
      if (test) break;
      else {
        iter.val=1000;
        temperature *= 0.8;
      }
View Full Code Here

Examples of com.nr.min.Amebsa.anneal()

    Amebsa amb2 = new Amebsa(point,dels,func_amebsa,FTOL);

    iter.val=1000;
    temperature=100.0;
    for (j=0;j<NMAX;j++) {
      test=amb2.anneal(iter,temperature);
      if (test) break;
      else {
        iter.val=1000;
        temperature *= 0.8;
      }
View Full Code Here

Examples of com.nr.min.Amebsa.anneal()

    Amebsa amb3 =new Amebsa(p,func_amebsa,FTOL);

    iter.val=1000;
    temperature=100.0;
    for (j=0;j<NMAX;j++) {
      test=amb3.anneal(iter,temperature);
      if (test) break;
      else {
        iter.val=1000;
        temperature *= 0.8;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.