[Cython] Add saveState/restoreState info to the migration guide

This commit is contained in:
Ray Speth 2014-02-13 22:26:36 +00:00
parent 92a3d13752
commit bc4d68eb20

View file

@ -134,6 +134,13 @@ should be replaced with::
>>> gas.UV = -1.1e6, 5.5
>>> gas.TPY = 300, 101325, 'H2:1.0'
The ``saveState`` and ``restoreState`` methods have been removed. Their
functionality can be replicated as follows::
>>> state = gas.TDY
>>> # (operations that modify gas)
>>> gas.TDY = state
Printing Phase Summaries
------------------------