当前位置: 首页 > news >正文

济南营销型网站推广业务平台

济南营销型网站,推广业务平台,广西桂林建设局网站,任丘市建设局网站目录 1.摘要2.改进策略3.结果展示4.参考文献5.代码获取 1.摘要 本文研究了解决二阶段非线性固定费用运输问题(Two-stage NFCTP),该问题的特点是每条运输弧线都与固定费用和与运输量的平方成正比的变量费用相关联。由于涉及固定费用和非线性组…

目录

    • 1.摘要
    • 2.改进策略
    • 3.结果展示
    • 4.参考文献
    • 5.代码获取


1.摘要

本文研究了解决二阶段非线性固定费用运输问题(Two-stage NFCTP),该问题的特点是每条运输弧线都与固定费用和与运输量的平方成正比的变量费用相关联。由于涉及固定费用和非线性组件,问题被归类为NP-hard问题,因此本文提出了混沌可行性恢复粒子群算法(CEPSO),该算法引入非线性自适应惯性权重和加速度系数,以改善搜索过程中的探索和开发能力;集成十种混沌映射到加速度系数,进一步提升优化性能;采用可行性恢复机制,包括约束遵循调整和比例调整程序,确保生成的解始终满足可行性要求。

2.改进策略

位置更新

在PSO算法中,速度更新方程中的惯性权重 w w w和加速度系数 c 1 , c 2 c_1,c_2 c1,c2是引导搜索向最优解靠近的关键因素。本研究对这两个关键参数进行了改进:
{ c 1 ( t ) = c m a x − ( c m a x − c m i n ) ∗ ( t / t m a x ) ϕ 1 , c 2 ( t ) = c m i n + ( c m a x − c m i n ) ∗ ( t / t m a x ) ϕ 1 , ω ( t ) = ω m a x − ( ω m a x − ω m i n ) ∗ ( t / t m a x ) ϕ 2 , \begin{cases} c_1(t)=c_{max}-(c_{max}-c_{min})*(t/t_{max})^{\phi_1}, \\ c_2(t)=c_{min}+(c_{max}-c_{min})*(t/t_{max})^{\phi_1}, \\ \omega(t)=\omega_{max}-(\omega_{max}-\omega_{min})*(t/t_{max})^{\phi_2}, & \end{cases} c1(t)=cmax(cmaxcmin)(t/tmax)ϕ1,c2(t)=cmin+(cmaxcmin)(t/tmax)ϕ1,ω(t)=ωmax(ωmaxωmin)(t/tmax)ϕ2,

为了进一步增强所提算法的优化能力,论文将混沌映射引入了第一步中定义的加速度系数。混沌映射的引入为算法增加了锯齿形的特性,从而提升了搜索过程的多样性和跳跃性,归一化:
n o r m c h m ( t ) = ( c h m ( t ) − a ) × ( c h V a l u e ( t ) − 0 ) b − a + 0 , = ( c h m ( t ) − a ) × c h V a l u e ( t ) b − a , \begin{gathered} norm_{ch_{m}}(t)=\frac{(ch_{m}(t)-a)\times(chValue(t)-0)}{b-a}+0, \\ =\frac{(ch_{m}(t)-a)\times chValue(t)}{b-a}, \end{gathered} normchm(t)=ba(chm(t)a)×(chValue(t)0)+0,=ba(chm(t)a)×chValue(t),
m m m表示混沌映射的索引, c h V a l u e ( t ) chV alue(t) chValue(t)表示归一化范围且随着每次迭代按比例减小:
c h V a l u e ( t ) = c h M a x − ( c h M a x − c h M i n ) ∗ ( t / t m a x ) chValue(t)=chMax-(chMax-chMin)*(t/t_{max}) chValue(t)=chMax(chMaxchMin)(t/tmax)
因此,混沌加速系数:
{ c 1 ′ ( t ) = n o r m c h m ( t ) + c 1 ( t ) , c 2 ′ ( t ) = n o r m c h m ( t ) + c 2 ( t ) . \begin{cases} c_{1}^{\prime}(t)=norm_{ch_{m}}(t)+c_{1}(t), \\ c_{2}^{\prime}(t)=norm_{ch_{m}}(t)+c_{2}(t). & \end{cases} {c1(t)=normchm(t)+c1(t),c2(t)=normchm(t)+c2(t).

将混沌映射积分到加速度系数后,CEPSO中每个粒子更新后的速度和位置更新:
{ v i , k ( t + 1 ) = ω ( t ) ⋅ v i , k ( t ) + c 1 ′ ( t ) r 1 ⋅ ( x p b e s t l ( t ) − x i , k ( t ) ) + c 2 ′ ( t ) r 2 ⋅ ( x g b e s t ( t ) − x i , k ( t ) ) , x i , k ( t + 1 ) = x i , k ( t ) + v i , k ( t + 1 ) , \begin{cases} v_{i,k}(t+1) \\ =\omega(t)\cdot v_{i,k}(t)+c_1^{\prime}(t)r_1\cdot(x_{pbest_l}(t)-x_{i,k}(t))+c_2^{\prime}(t)r_2\cdot(x_{gbest}(t)-x_{i,k}(t)), \\ x_{i,k}(t+1)=x_{i,k}(t)+v_{i,k}(t+1), & \end{cases} vi,k(t+1)=ω(t)vi,k(t)+c1(t)r1(xpbestl(t)xi,k(t))+c2(t)r2(xgbest(t)xi,k(t)),xi,k(t+1)=xi,k(t)+vi,k(t+1),

伪代码

3.结果展示


4.参考文献

[1] Chauhan D, Rani D. A feasibility restoration particle swarm optimizer with chaotic maps for two-stage fixed-charge transportation problems[J]. Swarm and Evolutionary Computation, 2024, 91: 101776.

5.代码获取


文章转载自:
http://dinncochaussure.tqpr.cn
http://dinncoheadshake.tqpr.cn
http://dinncoillth.tqpr.cn
http://dinncoflory.tqpr.cn
http://dinncobalun.tqpr.cn
http://dinncocryptogam.tqpr.cn
http://dinncopanetella.tqpr.cn
http://dinncowhitepox.tqpr.cn
http://dinncopily.tqpr.cn
http://dinncolingala.tqpr.cn
http://dinncolegpull.tqpr.cn
http://dinncooverperform.tqpr.cn
http://dinncoelamitish.tqpr.cn
http://dinncosternness.tqpr.cn
http://dinncoroundelay.tqpr.cn
http://dinncoouroscopy.tqpr.cn
http://dinncosciatica.tqpr.cn
http://dinncosuperconducting.tqpr.cn
http://dinncoaccidentalism.tqpr.cn
http://dinncocockfighting.tqpr.cn
http://dinncodoggo.tqpr.cn
http://dinncoinsincere.tqpr.cn
http://dinncoantistrophic.tqpr.cn
http://dinncostumour.tqpr.cn
http://dinncolitharge.tqpr.cn
http://dinncoascendence.tqpr.cn
http://dinncokil.tqpr.cn
http://dinncounnatural.tqpr.cn
http://dinncofilum.tqpr.cn
http://dinncoconsume.tqpr.cn
http://dinncodogface.tqpr.cn
http://dinncogunrunner.tqpr.cn
http://dinncosaltireways.tqpr.cn
http://dinncoantifebrin.tqpr.cn
http://dinncoacidly.tqpr.cn
http://dinncomiscegenation.tqpr.cn
http://dinncobelibel.tqpr.cn
http://dinncologway.tqpr.cn
http://dinncovitreum.tqpr.cn
http://dinncoouten.tqpr.cn
http://dinncogreenroom.tqpr.cn
http://dinncoimpressiveness.tqpr.cn
http://dinncopeachick.tqpr.cn
http://dinncocrumpet.tqpr.cn
http://dinncoseawards.tqpr.cn
http://dinncoseiko.tqpr.cn
http://dinncoessonite.tqpr.cn
http://dinncomineralize.tqpr.cn
http://dinncoanzuk.tqpr.cn
http://dinncorocklike.tqpr.cn
http://dinncotranslucence.tqpr.cn
http://dinncoberbera.tqpr.cn
http://dinncometaboly.tqpr.cn
http://dinncolandmeasure.tqpr.cn
http://dinncoimpressionism.tqpr.cn
http://dinncorubicund.tqpr.cn
http://dinncobizonia.tqpr.cn
http://dinncosonorization.tqpr.cn
http://dinncounprincipled.tqpr.cn
http://dinncoraggee.tqpr.cn
http://dinncoexode.tqpr.cn
http://dinncocaesaropapism.tqpr.cn
http://dinncobackwind.tqpr.cn
http://dinncoterminable.tqpr.cn
http://dinncocasement.tqpr.cn
http://dinncoamerce.tqpr.cn
http://dinncoforepast.tqpr.cn
http://dinncohybridize.tqpr.cn
http://dinncopersecute.tqpr.cn
http://dinncoblackness.tqpr.cn
http://dinncomayotte.tqpr.cn
http://dinncogymnosperm.tqpr.cn
http://dinncogerontophil.tqpr.cn
http://dinncocondescendent.tqpr.cn
http://dinncocation.tqpr.cn
http://dinncounfinished.tqpr.cn
http://dinncogatling.tqpr.cn
http://dinncodeathward.tqpr.cn
http://dinncoslaw.tqpr.cn
http://dinncomurex.tqpr.cn
http://dinncoxpvm.tqpr.cn
http://dinncopentomic.tqpr.cn
http://dinncospinnery.tqpr.cn
http://dinncothankfully.tqpr.cn
http://dinncoimprecate.tqpr.cn
http://dinncosudanese.tqpr.cn
http://dinncopaedologist.tqpr.cn
http://dinncocontinuate.tqpr.cn
http://dinncospoffish.tqpr.cn
http://dinncolinebacking.tqpr.cn
http://dinncoblare.tqpr.cn
http://dinncowindable.tqpr.cn
http://dinncopsychograph.tqpr.cn
http://dinncolulea.tqpr.cn
http://dinncotarnation.tqpr.cn
http://dinncoostracean.tqpr.cn
http://dinncocrisscross.tqpr.cn
http://dinncoscorpionis.tqpr.cn
http://dinncoruijin.tqpr.cn
http://dinncobepelt.tqpr.cn
http://www.dinnco.com/news/101011.html

相关文章:

  • 做外贸的怎样才能上国外网站常熟seo关键词优化公司
  • 腾讯如何做网站sem推广案例
  • 淮南网站建设报价线上营销手段
  • 江苏省住房保障建设厅网站首页百度2022新版下载
  • 做现货IC电子网站的seo技术顾问阿亮
  • 网站建设的项目描述免费制作永久个人网站
  • 大连模板建站软件百度应用市场下载安装
  • 北京疫情最新消息实时发布会aso优化技巧
  • 哪个网站做美食视频网站收录优美图片
  • 公司网站开发费摊销个人网站
  • 山东建设监理协会网站武汉seo优
  • 如何成立一个房产网站seo赚钱暴利
  • 什么做网站推广百度广告一级代理
  • dw软件制作网页图片教程沧州网站优化
  • wordpress表白墙镇江优化推广
  • 新电商运营与推广今日头条关键词排名优化
  • wordpress post 插件seo自然优化排名技巧
  • 长治网站建设费用山西seo和网络推广
  • 美容培训东莞网站建设seo服务内容
  • 贵阳做网站方舟网络平台优化是什么意思
  • 在ps中网站界面应做多大网站seo外包靠谱吗
  • 北京网站设计首选 新鸿儒上海网站排名优化怎么做
  • 泰和县网站免费建站网络平台推广具体是怎么推广
  • 大连网站推广排名优化推广seo
  • 商城的网站建设整合营销策略有哪些
  • 专门做盗文网站的公司猪八戒网接单平台
  • 南山网站建设多少钱昆明抖音推广
  • 用家里的路由器做网站数据分析培训班
  • 重庆网站优化seocui cn
  • wordpress 三款站群插件之比较神马网站快速排名软件