Make IVariableContainer use TIntObjectMap
rubensworks opened this issue ยท 1 comments
Currently, IVariableContainer
uses a Map<Integer, IVariableFacade>
. We can make this a lot more efficient by using TIntObjectMap<IVariableFacade>
instead.
I notice that we currently call CompositeMap#addElement
on it, which doesn't support TIntObjectMap
as-is.