[Cython] Add saveState/restoreState info to the migration guide
This commit is contained in:
parent
92a3d13752
commit
bc4d68eb20
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue