MCFI.run¶
- MCFI.run(param=None, callback=None, kw_optim=None, **kwargs) None [source]¶
Run MCFI.
- Parameters
- param: iterable, optional
Parameters for which to find minimum cost flow. If None, adaptive method is used to determine parameters.
- callbackcallable / list of callables, optional
Callables are called with signature
cb(self, CallBackFlag)
Full callables consist of those defined in initialization plus those passed here:Start of run -> cb(self, CallBackFlag.RUN_START) Start of iteration -> cb(self, CallBackFlag.ITER_START) End of iteration -> cb(self, CallBackFlag.ITER_END) End of run -> cb(self, CallBackFlag.End_RUN)
- kwargskeyword arguments
Further options for solver, see
MCFIConfig
.
See also
AdaptiveMethod
MCFIConfig
paminco.callback