<div dir="ltr">Hi. I am using the snes nasm for the global solver and snes newtonls for the local subdomain solver. I am trying to get the total number of Newton iterations for just one subdomain. I've tried:   <div><br></div><div>SNESNASMGetSNES(snes,0,&subsnes); </div><div>SNESSolve(snes,NULL,u_initial); <br></div><div>SNESGetNumberFunctionEvals(subsnes,&Newt_its);<br></div><div><br></div><div>but this just gets me the number of Newton iterations just on the final nasm iteration. If I understand correctly, the information in the subsnes is repeatedly destroyed while the SNESSolve is running. Is there any way to extract the total subsnes iterations after the SNESSolve? If not, how would I extract the information? </div></div>