goking1234
Results
1
issues of
goking1234
``` import numpy as np def schaffer(p): x1, x2, x3 = p x = np.square(x1) + np.square(x2) return -(2*x1+x2+x3) def second_level(z): z1 =z[0] z2=z[1] omg = GA(func=schaffer, n_dim=3, size_pop=z1, max_iter=z2,...
question
resolved