<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri" size="2"><span style="font-size:11pt;">
<div>From a pull from master some weeks ago, the previous version of this method looked like this:</div>
<div> </div>
<div>void vtkExodusIIReaderPrivate::ResetCache()</div>
<div>{</div>
<div>  this->Cache->Clear();</div>
<div>  this->Cache->SetCacheCapacity( 0. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>  this->Cache->SetCacheCapacity( 128. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>  this->ClearConnectivityCaches();</div>
<div>}</div>
<div> </div>
<div>I just did a pull and the method has been changed to this:</div>
<div> </div>
<div>void vtkExodusIIReaderPrivate::ResetCache()</div>
<div>{</div>
<div>  this->Cache->Clear();</div>
<div>  this->Cache->SetCacheCapacity( 0. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>  this->ClearConnectivityCaches();</div>
<div>}</div>
<div> </div>
<div>When reading in an exodus file now, the code disappears into the reader and never finishes (maybe it would eventually, but after a long while I kill it).  Adding back in the line to set the cache capacity to 128 resolves this issue.  I expect that the
line was removed for a reason.  Did removing the line resolve a problem for someone else?  Is anyone else having difficulty with the exodus reader as a result of this change?  Or is it something specific to my exodus file/runtime environment?</div>
<div> </div>
<div>Pat</div>
<div> </div>
</span></font>
</body>
</html>