bundles / scipy latest / scipy / optimize / _differentialevolution / DifferentialEvolutionSolver / solve
function
scipy.optimize._differentialevolution:DifferentialEvolutionSolver.solve
Signature
def solve ( self ) Summary
Runs the DifferentialEvolutionSolver.
Returns
res: OptimizeResultThe optimization result represented as a OptimizeResult object. Important attributes are:
xthe solution array,successa Boolean flag indicating if the optimizer exited successfully,messagewhich describes the cause of the termination,populationthe solution vectors present in the population, andpopulation_energiesthe value of the objective function for each entry inpopulation. See OptimizeResult for a description of other attributes. Ifpolishwas employed, and a lower minimum was obtained by the polishing, then OptimizeResult also contains thejacattribute. If the eventual solution does not satisfy the applied constraintssuccesswill beFalse.
Aliases
-
scipy.optimize._differentialevolution.DifferentialEvolutionSolver.solve