1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| import numpy as np import matplotlib.pyplot as plt
def xfunction(x): return (x**2-5*x)*np.sin(x**2)
op = lambda new,old:new<old
if __name__ == '__main__': T = 100 T_end = 1e-6 cold_rate = 0.999 x_min,x_max = 0,5
data = []
x = np.random.uniform(x_min,x_max) while T > T_end: x_new = x+np.random.uniform(-1,1) if x_min <= x_new <=x_max: y = xfunction(x) y_new = xfunction(x_new) if op(y_new,y): x = x_new data.append((x_new,y_new)) else: p = np.exp(-(y_new-y)/T) r = np.random.uniform(0,1) if p > r: x = x_new data.append((x_new,y_new)) else: data.append((x,y)) T = T * cold_rate data.sort(key=lambda i:i[0]) plt.plot(list(map(lambda i:i[0],data)),list(map(lambda i:i[1],data))) plt.plot(x,xfunction(x),'om') plt.show()
|