I am trying to implement an incremental optimization where I can feed my MILP model with new constraint/variables and remove some other constraints/variables as time passes. Not to mention solved variables should be treated as fixed values as long as they are not removed.
My question is if there is a standard way/tools to do it? What I thought about so far is to manipulate GAMS sqlite database using python, any better idea? It is fine to use other environments.
I appreciate any clue to implement such thing. Thanks