<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>&nbsp;</div>
<div>void vtkExodusIIReaderPrivate::ResetCache()</div>
<div>{</div>
<div>&nbsp; this-&gt;Cache-&gt;Clear();</div>
<div>&nbsp; this-&gt;Cache-&gt;SetCacheCapacity( 0. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>&nbsp; this-&gt;Cache-&gt;SetCacheCapacity( 128. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>&nbsp; this-&gt;ClearConnectivityCaches();</div>
<div>}</div>
<div>&nbsp;</div>
<div>I just did a pull and the method has been changed to this:</div>
<div>&nbsp;</div>
<div>void vtkExodusIIReaderPrivate::ResetCache()</div>
<div>{</div>
<div>&nbsp; this-&gt;Cache-&gt;Clear();</div>
<div>&nbsp; this-&gt;Cache-&gt;SetCacheCapacity( 0. ); // FIXME: Perhaps Cache should have a Reset and a Clear method?</div>
<div>&nbsp; this-&gt;ClearConnectivityCaches();</div>
<div>}</div>
<div>&nbsp;</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).&nbsp; Adding back in the line to set the cache capacity to 128 resolves this issue.&nbsp; I expect that the
line was removed for a reason.&nbsp; Did removing the line resolve a problem for someone else?&nbsp; Is anyone else having difficulty with the exodus reader as a result of this change?&nbsp; Or is it something specific to my exodus file/runtime environment?</div>
<div>&nbsp;</div>
<div>Pat</div>
<div>&nbsp;</div>
</span></font>
</body>
</html>