Fixed bug in statepoint.py for multiple generations per batch.

This commit is contained in:
Paul Romano 2013-02-25 00:25:17 -05:00
parent 5927513d56
commit 7632f3df79

View file

@ -194,7 +194,7 @@ class StatePoint(BinaryFile):
if self.run_mode == 2:
self.n_inactive, self.gen_per_batch = self._get_int(2)
self.k_batch = self._get_double(self.current_batch)
self.entropy = self._get_double(self.current_batch)
self.entropy = self._get_double(self.current_batch*self.gen_per_batch)
self.k_col_abs = self._get_double()[0]
self.k_col_tra = self._get_double()[0]
self.k_abs_tra = self._get_double()[0]