You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello folks. I have been importing Conic Benchmark Format models from CBLIB for some experiments I am running. However, MOI cannot handle a majority of the models since they contain these cones. I was wondering why/whether you are planning on adding this functionality. For context, here is the function I use to import said models.
using MathOptInterface, MosekTools
functionCBF_to_MOF(filename, solver=Mosek.Optimizer())
""" Imports a conic benchmark into a MathOptInterface format. """
model = MathOptInterface.FileFormats.Model(filename = filename);
mof_model = MathOptInterface.Bridges.full_bridge_optimizer(solver , Float64)
MathOptInterface.read_from_file(model, filename)
MathOptInterface.copy_to(mof_model, model)
return mof_model
end