资源简介
帝国竞争算法python实现
代码片段和文件信息
import numpy as np
import parameters as param
class Country:
def __init__(self representation):
self.colonies = []
self.representation = representation #np.array length
self.makespan = self._calculateCost()
#CALCULATORS
def _calculateCost(self):
ETC = param.ETC
return np.sum(np.multiply(ETC.Tself.representation))
#GETTERS
def isColony(self):
return False
def isImperialist(self):
return not self.isColony(self)
def getRepresentation(self):
return self.representation
def getCost(self):
return self.makespan
def getTimeFitness(self):
return None
#SETTERS
def setRepresentation(selfrepresentation):
self.representation = representation
self._calculateCost()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-10-25 02:19 imperialist-competitive-algorithm-master\
文件 488 2017-10-25 02:19 imperialist-competitive-algorithm-master\config.txt
文件 813 2017-10-25 02:19 imperialist-competitive-algorithm-master\country.py
文件 1141 2017-10-25 02:19 imperialist-competitive-algorithm-master\empire.py
文件 7941 2017-10-25 02:19 imperialist-competitive-algorithm-master\ica.py
文件 656 2017-10-25 02:19 imperialist-competitive-algorithm-master\parameters.py
文件 351 2017-10-25 02:19 imperialist-competitive-algorithm-master\util_functions.py
相关资源
- 机器学习k means算法实现图像分割
- 拼音转汉字(python输入法)
- python实现逻辑回归
- python 绘制三维直线图(plot 3d traject
- python爬取小说59868
- python编程:入门到实践 源代码
- python编程:入门到实践练习答案
- 验证码识别(pytesseract+ matplotlib)
- Python海龟法绘制花朵
- python 显示实时网速
- 基于K210开发的人脸特征识别2020电赛(
- 微分方程数值解法
- pyqt5窗体数据传输简单
- python数据预处理.ipynb
- MicroPython中文教程
- 循环转递归通用范式.py
- Python列表常用知识总结
- python画爱心案例(基于Turtle)
- python数据类型学习思维导图
- python 飞机大战小游戏
- python打印玫瑰花
- 你也能看得懂的Python算法书 代码
- 自动截屏工具(python源码)
- python学生管理器源码
- Python-turtle玫瑰花绘制
- 猜拳小游戏python代码
- Python 爬虫小说.ipynb
- python 画一朵花(基于Turtle)
- 人工智能算法实现mnist手写数字识别
- 用Python学微积分.azw3
评论
共有 条评论