<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
I use the STL through vtkstd:<br><br>&nbsp; vtkstd::vector&lt;vtkstd::vector&lt;vtkstd::vector&lt;double&gt; &gt; &gt; grid;<br>&nbsp; [...]<br>&nbsp; this-&gt;grid.clear();<br>&nbsp; this-&gt;grid = vtkstd::vector&lt;vtkstd::vector&lt;vtkstd::vector&lt;double&gt; &gt; &gt;(this-&gt;grid_xsize*this-&gt;grid_ysize);<br><br>It works well on VTK but on PV I can this error at run time:<br><br>&nbsp; terminate called after throwing an instance of 'std::bad_alloc'<br>&nbsp; what():&nbsp; St9bad_alloc<br><br>If I change the initialization line by:<br><br>&nbsp; this-&gt;grid.resize(this-&gt;grid_xsize*this-&gt;grid_ysize);<br><br>I get another message:<br><br>&nbsp; terminate called after throwing an instance of 'std::length_error'<br>&nbsp; what():&nbsp; vector::_M_fill_insert<br><br>which means that the memory allocation by the vtkstl library crashes.<br>Does anybody know about this issue?<br><br><br /><hr />Un avatar à votre image ?  <a href='http://www.ilovemessenger.fr/minimize-me' target='_new'>Créez votre mini-moi !</a></body>
</html>