Python で遺伝的アルゴリズムの実装を作成しようとしています。1つしか許可されていないときに2つの引数で呼び出していると書かれていますが、そうではないと確信しています。
関連するコードは次のとおりです。
class GA:
def __init__(self, best, pops=100, mchance=.07, ps=-1):
import random as r
self.pop = [[] for _ in range(pops)]
if ps == -1:
ps = len(best)
for x in range(len(self.pop)): #Creates array of random characters
for a in range(ps):
self.pop[x].append(str(unichr(r.randint(65,122))))
def mutate(array):
if r.random() <= mchance:
if r.randint(0,1) == 0:
self.pop[r.randint(0, pops)][r.randint(0, ps)] +=1
else:
self.pop[r.randint(0, pops)][r.randint(0, ps)] -=1
これは、クラスから初期化して呼び出すときのコードです。
a = GA("Hello",10,5)
a.mutate(a.pop)
IDLE から次のエラーを返します。
TypeError: mutate() takes exactly 1 argument (2 given)
どうすればこれを修正できますか?