- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
第1页/共216页优化问题对于一个求函数最大值的优化问题,一般可描述为下述数学规划模型:Soft Computing Lab.第2页/共216页例:无约束单目标,多峰Soft Computing Lab.第3页/共216页约束单目标Soft Computing Lab.第4页/共216页约束多目标Soft Computing Lab.第5页/共216页TSP旅行商问题(TSP,traveling salesman problem)管梅谷教授1960年首先提出,国际上称之为中国邮递员问题。问题描述:一商人去n个城市销货,所有城市走一遍再回到起点,使所走路程最短。(n-1)!/2Soft Computing Lab.第6页/共216页TSPThe one below is length: 33ABCDEA57415B53410C7327D4429E151079 BCEDASoft Computing Lab.第7页/共216页传统最优化面临新挑战:实际问题离散性问题——主要指组合优化不确定性问题——随机性数学模型半结构或非结构化的问题大规模问题:超高维动态优化问题有噪的现代优化方法: 追求满意—近似解 实用性强—解决实际问题Soft Computing Lab.第8页/共216页优化问题的复杂性Complexity: Hard problems and Easy problems When S is small (e.g. 10, 100, or only 1,000,000 or so items), we can simply do so-called exhaustive search(穷举搜索)Exhaustive search: Generate every possible solution, work out its fitness, and hence discover which is best (or which set share the best fitness) 比如从n个数找到最大This is also called Enumeration(列举法)Soft Computing Lab.第9页/共216页问题的复杂度 This is all about characterising how hard it is to solve a given problem. Statements are made in terms of functions of n, which is meant to be some indication of the size of the problem. E.g.:(通过n的一个函数来描述问题的复杂度) Correctly sort a set of n numbers(排序)Can be done in around n log n steps Find the closest pair out of n vectors(从n个向量找出最接近两个)Can be done in O(n2) stepsFind best multiple alignment of n sequences.Can be done in O(2n) steps …Soft Computing Lab.第10页/共216页Polynomial and Exponential ComplexityGiven some problem Q, with `size’ n, imagine that A is the fastest algorithm known for solving that problem exactly. The complexity of problem Q is the time it takes A to solve it, as a function of n. (问题Q的维数为n,A是一个已知快速算法,复杂度就是通过A求解Q所用时间)There are two key kinds of complexity:Polynomial: the dominant term in the expression is polynomial in n. E.g. n34, n.log.n, sin(n2.2), etc … Exponential: the dominant term is exponential in n. E.g. 1.1n, nn+2 , 2n, …Soft Computing Lab.第11页/共216页Polynomial and Exponential Complexity n502345610201001.1n1.211.331.4
文档评论(0)