调之前写的sub1的代码了
问题 | 原因 | 解决 | |
---|---|---|---|
x_ij赋值没有改变 | 1. np.sort(a)[:,::-1]对value最大不起作用 | np.sort(-a) | |
sub1中的output值不能随cache size增大而增大 | demand是随机生成的,每次生成的demand值可大可小 | 将demand放到if _name_ | |
sub2中的de_strategy赋值不确定怎么赋值 | 1. de_strategey需要三个元素:sbs_demand,sbs_remoteCache, file 2.lambda是归于demand or not? |
1.定义demand_strategy为三维数组,其中的每个元素,demand, lamdba, x_ij进行数乘 2. lambda归于demand,即用demand_sbs来计算([a lagrangean heuristic for the maximal covring location problem])。 |
网友评论