mattbitzesty's picture
refactor(vle): move UNIFAC VLE implementation into pino.thermo module
dc36068 unverified
Raw
History Blame Contribute Delete
273 Bytes
from __future__ import annotations
# Backward-compatible re-export of the thermodynamic VLE module.
# Legacy code can continue to import from pino.vle; new code should use
# pino.thermo.vle directly.
from pino.thermo.vle import VLECalculator
__all__ = ["VLECalculator"]