Changeset 23052
- Timestamp:
- 08/04/18 16:46:55 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/cores/controladm1qn3_core.cpp
r22905 r23052 30 30 int N; 31 31 int* i; 32 IssmPDouble* X_best;33 IssmPDouble* G_best;34 IssmPDouble* J_best;35 32 } m1qn3_struct; 36 33 … … 84 81 int JlistN = input_struct->N; 85 82 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;89 83 int intn = (int)*n; 90 84 … … 166 160 } 167 161 } 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 }177 162 178 163 /*Turning off trace tape*/ … … 352 337 _printf0_("\n"); 353 338 354 input_struct->X_best = X_best;355 input_struct->G_best = G_best;356 input_struct->J_best = J_best;357 358 339 /*Clean-up and return*/ 359 340 *Jlisti = (*Jlisti) +1; … … 439 420 long ndz = 4*n+m*(2*n+1); 440 421 double* dz = xNew<double>(ndz); 441 IssmDouble J_best = -10.;442 422 if(VerboseControl())_printf0_(" Computing initial solution\n"); 443 423 _printf0_("\n"); … … 452 432 mystruct.Jlist = xNewZeroInit<IssmPDouble>(mystruct.M*mystruct.N); 453 433 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.;458 434 /*Initialize Gradient and cost function of M1QN3*/ 459 435 indic = 4; /*gradient required*/ … … 499 475 IssmDouble* aX=xNew<IssmDouble>(intn); 500 476 IssmDouble* aG=xNew<IssmDouble>(intn); 501 double* X_best = xNew<double>(intn);502 double* G_best = xNew<double>(intn);503 477 504 478 for(int i=0;i<intn;i++) { 505 479 aX[i] = reCast<IssmDouble>(X[i]); 506 480 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]);509 481 } 510 482 … … 527 499 GenericExternalResult<IssmPDouble*>* X_output = new GenericExternalResult<IssmPDouble*>(femmodel->results->Size()+1,control_enum[i],&X[offset],N[i],numberofvertices,1,0.); 528 500 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 532 501 /*transpose for consistency with MATLAB's formating*/ 533 502 G_output->Transpose(); 534 503 X_output->Transpose(); 535 Gbest_output->Transpose();536 Xbest_output->Transpose();537 504 538 505 /*Add to results*/ 539 506 femmodel->results->AddObject(G_output); 540 507 femmodel->results->AddObject(X_output); 541 femmodel->results->AddObject(Gbest_output);542 femmodel->results->AddObject(Xbest_output);543 508 544 509 offset += N[i]*numberofvertices; … … 565 530 xDelete<double>(G); 566 531 xDelete<double>(X); 567 xDelete<double>(X_best);568 xDelete<double>(G_best);569 532 xDelete<double>(dz); 570 533 xDelete<double>(XU);
Note:
See TracChangeset
for help on using the changeset viewer.