質問編集履歴
3
改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,22 @@
|
|
84
84
|
|
85
85
|
|
86
86
|
|
87
|
+
for i in self.array_machine:
|
88
|
+
|
89
|
+
self.order_sample[int(i-1)] += 1
|
90
|
+
|
91
|
+
self.order.append(self.order_sample[int(i-1)])
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
self.array_order = np.array(self.order).reshape(JOB,1)
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
この部分を変えたい
|
100
|
+
|
101
|
+
|
102
|
+
|
87
103
|
|
88
104
|
|
89
105
|
|
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
実現したい出力
|
66
66
|
|
67
|
-
'加工順番'::加工順序を機械ごとに、前段取りの値が
|
67
|
+
'加工順番'::加工順序を機械ごとに、前段取りの値が小さいものから割り付けたい
|
68
68
|
|
69
69
|
(実現したい出力例)
|
70
70
|
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,7 +164,7 @@
|
|
164
164
|
|
165
165
|
self.order = []
|
166
166
|
|
167
|
-
#
|
167
|
+
# 加工順番の決定
|
168
168
|
|
169
169
|
for i in self.array_machine:
|
170
170
|
|