Abstract: For analog circuit sizing, constrained multi-objective optimization is an important and practical problem. With the popularity of multi-core machines and cloud computing, parallel/batch ...
Abstract: Duringthe design of electrical machines, multiple performance objectives need to be considered. Although stochastic optimization algorithms are extensively employed for this purpose, a ...
def problem(x): transl = 1/ np.sqrt(2) part1 = (x[0] - transl)**2 + (x[1] - transl)**2 part2 = (x[0] + transl)**2 + (x[1] + transl)**2 f1 = 1 - np.exp(-part1) f2 = 1 ...