Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Env.close()
close ( )
Free all resources associated with this Env object. This method is a synonym for dispose.
Users should close all models created in this environment before closing this Env object.
After this method is called, this Env object must no longer be used.
Example usage:
env = Env() model = read("misc07.mps", env) model.optimize() model.close() env.close()