2015年10月9日

萤火虫算法-python实现

摘要: FAIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class FAIndividual: 6 7 ''' 8 individual of firefly algorithm 9 '''10 1... 阅读全文

posted @ 2015-10-09 22:23 Alex Yu 阅读(8249) 评论(5) 推荐(3) 编辑

进化策略-python实现

摘要: ESIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class ESIndividual: 6 7 ''' 8 individual of evolutionary strategy 9 '''... 阅读全文

posted @ 2015-10-09 22:18 Alex Yu 阅读(3092) 评论(0) 推荐(0) 编辑

导航