Changeset 23052


Ignore:
Timestamp:
08/04/18 16:46:55 (7 years ago)
Author:
erobo
Message:

CHG: cutting unnecessary lines that got best paramters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/cores/controladm1qn3_core.cpp

    r22905 r23052  
    3030        int          N;
    3131        int*         i;
    32         IssmPDouble* X_best;
    33         IssmPDouble* G_best;
    34         IssmPDouble* J_best;
    3532} m1qn3_struct;
    3633
     
    8481        int           JlistN       = input_struct->N;
    8582        int*          Jlisti       = input_struct->i;
    86         IssmPDouble* X_best                     = input_struct->X_best;
    87         IssmPDouble* G_best                     = input_struct->G_best;
    88         IssmPDouble*  J_best       = input_struct->J_best;
    8983        int           intn         = (int)*n;
    9084
     
    166160                }
    167161        }
    168         if(my_rank==0){
    169                 if(*J_best<0 || J<*J_best){
    170                         *J_best = reCast<IssmPDouble>(J);
    171                         for(int i=0;i<intn;i++){
    172                                 X_best[i] = reCast<IssmPDouble>(X[i]);
    173                                 G_best[i] = reCast<IssmPDouble>(G[i]);
    174                         }
    175                 }
    176 }
    177162
    178163        /*Turning off trace tape*/
     
    352337        _printf0_("\n");
    353338
    354         input_struct->X_best = X_best;
    355         input_struct->G_best = G_best;
    356         input_struct->J_best = J_best;
    357        
    358339        /*Clean-up and return*/
    359340        *Jlisti = (*Jlisti) +1;
     
    439420        long      ndz = 4*n+m*(2*n+1);
    440421        double*   dz  = xNew<double>(ndz);
    441         IssmDouble J_best = -10.;
    442422        if(VerboseControl())_printf0_("   Computing initial solution\n");
    443423        _printf0_("\n");
     
    452432        mystruct.Jlist    = xNewZeroInit<IssmPDouble>(mystruct.M*mystruct.N);
    453433        mystruct.i        = xNewZeroInit<int>(1);
    454         mystruct.J_best   = xNewZeroInit<IssmPDouble>(1);
    455         mystruct.X_best = xNewZeroInit<IssmPDouble>(intn);
    456         mystruct.G_best   = xNewZeroInit<IssmPDouble>(intn);
    457         *mystruct.J_best = -10.;
    458434        /*Initialize Gradient and cost function of M1QN3*/
    459435        indic = 4; /*gradient required*/
     
    499475        IssmDouble* aX=xNew<IssmDouble>(intn);
    500476        IssmDouble* aG=xNew<IssmDouble>(intn);
    501         double* X_best = xNew<double>(intn);
    502         double* G_best = xNew<double>(intn);
    503477
    504478        for(int i=0;i<intn;i++) {
    505479                aX[i] = reCast<IssmDouble>(X[i]);
    506480                aG[i] = reCast<IssmDouble>(G[i]);
    507                 X_best[i] = reCast<double>(mystruct.X_best[i]);
    508                 G_best[i] = reCast<double>(mystruct.G_best[i]);
    509481                }
    510482
     
    527499                        GenericExternalResult<IssmPDouble*>* X_output = new GenericExternalResult<IssmPDouble*>(femmodel->results->Size()+1,control_enum[i],&X[offset],N[i],numberofvertices,1,0.);
    528500
    529                         GenericExternalResult<IssmPDouble*>* Gbest_output = new GenericExternalResult<IssmPDouble*>(femmodel->results->Size()+1,Outputdefinition90Enum+i,&G_best[offset],N[i],numberofvertices,1,0.);
    530                         GenericExternalResult<IssmPDouble*>* Xbest_output = new GenericExternalResult<IssmPDouble*>(femmodel->results->Size()+1,Outputdefinition80Enum+i,&X_best[offset],N[i],numberofvertices,1,0.);
    531 
    532501                        /*transpose for consistency with MATLAB's formating*/
    533502                        G_output->Transpose();
    534503                        X_output->Transpose();
    535                         Gbest_output->Transpose();
    536                         Xbest_output->Transpose();
    537504
    538505                        /*Add to results*/
    539506                        femmodel->results->AddObject(G_output);
    540507                        femmodel->results->AddObject(X_output);
    541                         femmodel->results->AddObject(Gbest_output);
    542                         femmodel->results->AddObject(Xbest_output);
    543508                       
    544509                        offset += N[i]*numberofvertices;
     
    565530        xDelete<double>(G);
    566531        xDelete<double>(X);
    567         xDelete<double>(X_best);
    568         xDelete<double>(G_best);
    569532        xDelete<double>(dz);
    570533        xDelete<double>(XU);
Note: See TracChangeset for help on using the changeset viewer.