@@ -44,9 +44,9 @@ class APOSMMException(Exception):
4444 if "dfols" in optimizers :
4545 import dfols # noqa: F401
4646 if "ibcdfo_pounders" in optimizers :
47- from ibcdfo . pounders import pounders # noqa: F401
47+ from ibcdfo import run_pounders
4848 if "ibcdfo_manifold_sampling" in optimizers :
49- from ibcdfo . manifold_sampling import manifold_sampling_primal # noqa: F401
49+ from ibcdfo import run_MSP # noqa: F401
5050 if "scipy" in optimizers :
5151 from scipy import optimize as sp_opt # noqa: F401
5252 if "external_localopt" in optimizers :
@@ -449,7 +449,7 @@ def run_local_ibcdfo_manifold_sampling(user_specs, comm_queue, x0, f0, child_can
449449 # m = len(f0)
450450 subprob_switch = "linprog"
451451
452- [X , F , hF , xkin , flag ] = manifold_sampling_primal (
452+ [X , F , hF , xkin , flag ] = run_MSP (
453453 user_specs ["hfun" ],
454454 lambda x : scipy_dfols_callback_fun (x , comm_queue , child_can_read , parent_can_read , user_specs ),
455455 x0 ,
@@ -507,7 +507,7 @@ def run_local_ibcdfo_pounders(user_specs, comm_queue, x0, f0, child_can_read, pa
507507 else :
508508 Options = None
509509
510- [X , F , hF , flag , xkin ] = pounders (
510+ [X , F , hF , flag , xkin ] = run_pounders (
511511 lambda x : scipy_dfols_callback_fun (x , comm_queue , child_can_read , parent_can_read , user_specs ),
512512 x0 ,
513513 n ,
0 commit comments