说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 并行遗传
1)  parallel genetic
并行遗传
2)  parallel genetic algorithms
并行遗传算法
1.
Parallel Genetic Algorithms and Its Application to the Optimization Design of Main Magnet Assembly of MRI;
并行遗传算法及其在MRI永磁主磁体优化设计中的应用
2.
To request for relating law between technical and economic parameter and ore cost for a raw material quarry of cement, the paper set up technical and economic system model with adaptive network-based fuzzy inference system, solved solution of the system model with parallel genetic algorithms,and received optimal technical and economic indices.
为掌握水泥原料矿山系统中的技术经济参数对矿石成本影响的关联规律性,首先运用自适应模糊神经网络对矿山技术经济系统建模,再用并行遗传算法对模型求解,得到了确保矿石成本最小的各项最优技术经济指标,为提高矿山生产管理与经济效益提供了重要的参考价值。
3)  parallel genetic algorithm
并行遗传算法
1.
A new parallel genetic algorithm for parallel multi-computers in advance/tardiness scheduling problem;
解并行机提前/拖后调度问题的一种新并行遗传算法
2.
Optimal research of distributed parallel genetic algorithm for reactive power optimization;
基于分布式并行遗传算法的电力系统无功优化
3.
Optimization of PID controller parameters based on distributed parallel genetic algorithm;
基于分布式并行遗传算法的PID参数整定
4)  pseudo-parallel genetic algorithm
伪并行遗传算法
1.
The concept of pseudo-parallel genetic algorithm is introduced in carrying out the genetic operations such as selection, crossing and mutation of each sub-group independently.
为了避免常规遗传算法容易出现的“早熟”现象,并提高算法的精度,在无功优化的进化过程中以种群散度为判断尺度将原种群分化为若干子种群,引入了伪并行遗传算法思想。
2.
On the basis of analysis on both the strong and weak points of different optimization design techniques,the pseudo-parallel genetic algorithm is chosen to optimize engine mounting system with mount stiffness as design variable and maximizing the energy in both rolling and vertical DOFs as objective.
在分析各种优化设计方法优缺点的基础上,选用了伪并行遗传算法。
3.
An improved pseudo-parallel genetic algorithm which comprehensively adopts different greedy algorithms is proposed to solve the 0/1 knapsack problem.
文章提出了综合运用不同贪婪解码策略的改进型伪并行遗传算法以求解0/1背包问题。
5)  pseudo parallel genetic algorithm
伪并行遗传算法
1.
Clustering analysis method based on pseudo parallel genetic algorithm
基于伪并行遗传算法的聚类分析方法
2.
Analyzes the stochastic ergodicity and sensitivity of initial value of chaos model,proposes the chaos pseudo parallel genetic algorithm(CPPGA) based on multiple populations.
仿真结果表明,混沌伪并行遗传算法比伪并行遗传算法和简单遗传算法具有更快的收敛速度和更高的最优解搜索成功率,可对火力分配进行优化。
3.
In view of the local search ability of simulated annealing algorithm,a new style of optimal algorithm which combined simulated annealing algorithm with pseudo parallel genetic algorithms and adopts real coding,self-adaptive crossover and overall mutation is designed.
借鉴模拟退火算法的局部搜索能力,结合并行计算的思想设计了一种采用模拟退火机制的实数编码自适应交叉、全概率变异伪并行遗传算法,最后用这种方法对典型的多峰值函数求极值,并和基本遗传算法进行比较,结果表明:该算法具有较强的全局搜索能力和局部搜索能力,能够更有效地克服早熟收敛问题。
6)  pseudo-parallel genetic algorithms
伪并行遗传算法
1.
Solving traveling salesman problem(TSP) with pseudo-parallel genetic algorithms;
旅行商问题(TSP)的伪并行遗传算法
2.
A fuzzy controller based on pseudo-parallel genetic algorithms is applied to ball mill pulverizing system in power plant, and the fitness function of MIMO object, the crossover and mutation operators are modified.
针对电厂中常见的钢球磨煤机制粉系统,设计了一种基于伪并行遗传算法的模糊控制器,并对多变量对象的适应度函数、交叉和变异算子等进行了改进,仿真实验结果表明该方法是可行的,经过优化的模糊控制器具有较好的鲁棒性和抗干扰性。
3.
In this paper,the pseudo-parallel chaotic genetic algorithm is presented by using the property of pseudo-random of chaotic sequence and putting chaos into the pseudo-parallel genetic algorithms.
利用混沌序列的伪随机性,将混沌引入伪并行遗传算法,提出了伪并行混沌遗传算法。
补充资料:并行程序设计语言


并行程序设计语言
parallel programming language

b ingxing ehengxu sheji yuyan并行程序设计语言(p姗llel Pr雌n”nnungIang”age)一种用于并行程序设计的语言。并行程序设计语言可分为显式并行语言和具有并行编译功能的串行语言。显式并行程序设计语言可以用传统串行语言加上并行语句等扩充的办法形成,也可以设计一个全新的具有并行功能的语言。这种语言有SISAL,FORCE,LINDA,PARLOC和PCF POR-TRAN等等。具有并行编译功能的串行语言从用户使用角度看是一个传统的串行语言,但它的编译程序可将程序分解为并行执行的部分。 使用显式并行语言进行程序设计时用户要解决以下三个间题:①逻辑分解,即寻找一种适应并行处理的代码和数据划分。②从逻辑分解到处理系统的映射,即从资源分配负载均衡等考虑各程序部分怎样分布在系统的各台处理机上。③数据的定位。虽然上述三问题很难,但是如果程序员的水平较高,采用显式并行语言可达较高的并行度从而较高地提高系统的效率。 并行编译的过程可分为三个阶段:词法和语法分析,优化以及并行代码生成。优化是并行编译的主体,它包括以下三部分:依赖关系分析,识别;程序转换,主要是循环转换;进程的分配及调度。70年代末美国1llinois大学首先开展了向量化和并行化的工作。随之出现了许多RI形1、RAN向量化、并行化的工具,为后面的工作奠定了基础。80年代末并行化的工作已较多地开展起来。如Al〕CFOR-TRAN,交互式并行化工具lq毛OL和PA’1,等。90年代以来并行处理技术已成为计算机的一种关键技术,并行程序设计语言将会有较大的发展。 (孙钟秀)
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条