<div class="gmail_quote">On Thu, Nov 10, 2011 at 06:14, Manfred Gratt <span dir="ltr">&lt;<a href="mailto:manfred.gratt@uibk.ac.at">manfred.gratt@uibk.ac.at</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div id=":3mf">I am using petsc since 3.1 and upgraded my program to 3.2. I have now the problem that the Vector output in ASCII has changed.<br>
>From only a list of numbers to the name of process that had the data and then the numbers. Like this:<br>
<br>
Vector Object: 2 MPI processes<br>
 type: mpi<br>
Process [0]<br>
0<br>
0<br>
0<br>
<br>
Is there a option to change it back to only display numbers again?<br></div></blockquote><div><br></div><div>There isn&#39;t an option to do this. Of course it&#39;s easy to implement, but it&#39;s feature-creep.</div><div>
 </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div id=":3mf">
I use this output only for a rough estimation if the solution is correct and I don&#39;t want to rewrite the tool to check the correctness.</div></blockquote></div><br><div>Is it that hard to update the tests, either by updating the &quot;gold&quot; output, or by passing the results through a filter that strips out those lines, e.g.</div>
<div><br></div><div>perl -pe &#39;s,^(Vector Object:\w* \d+ MPI processes|  type: \w+|Process \[\d+\])\n,,&#39;</div>