Only write saturated cells to restart file.

Only write up to nchem not nxyz cells to the restart file (need to reconsider for solids).

Fixed selected output.

remove asserts in doubleize

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@8287 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2013-12-06 01:04:33 +00:00
parent 63ced92fda
commit bec792ae89

View File

@ -250,8 +250,6 @@ void CSelectedOutput::Serialize(
size_t nrows = this->m_nRowCount;
size_t ncols = this->m_vecVarHeadings.size();
ASSERT (nrows > 0);
ASSERT (ncols > 0);
longs.push_back((long) nrows);
longs.push_back((long) ncols);
@ -393,4 +391,3 @@ void CSelectedOutput::Doublize(
}
}
}