代码搜索:Evolution
找到约 665 项符合「Evolution」的源代码
代码结果 665
www.eeworm.com/read/397761/8023475
m example82_order.m
%序参量演化
figure;
subplot(1,1,1),imshow('example82Order.bmp'),title('Order Parameters Evolution');
www.eeworm.com/read/244076/12891542
txt changes.txt
Version 1.1
Added steady state "elitism"
Added distributed evolution "demes"
Version 1.01
Minor errors in the setup source code.
Version 1.0
Initial release.
www.eeworm.com/read/243761/12919087
txt 变形病毒.txt
病毒由无加密到简单加密发展到变形病毒.早期的简单加密病毒工作范例如下:
@entry:
call @1
@1: pop bp
lea di,[bp+@3-@1]
@2: xor byte ptr cs:[di],0
@key = $-1
inc di
loop @2
@3: ... ;病毒的主要代码
@4: ;这里假设,es:di指向用于储存加密后代码的
www.eeworm.com/read/137229/13338290
txt changes.txt
Version 1.1
Added steady state "elitism"
Added distributed evolution "demes"
Version 1.01
Minor errors in the setup source code.
Version 1.0
Initial release.
www.eeworm.com/read/312869/13602642
txt 遗传算法介绍.txt
遗传算法
目录·遗传算法定义
·遗传算法特点
·遗传算法的应用
·遗传算法的现状
·遗传算法的一般算法
·遗传算法实例
遗传算法定义
遗传算法(Genetic
Algorithm)是模拟达尔文的遗传选择和自然淘汰的生物进化过程的计算模型,是一种通过模拟自然
www.eeworm.com/read/135582/5885761
readme
For Nano-X information, see README.NANOX
To hear about the evolution of Doom, see README.book
For information on the ports of Doom that make this possible see README.SDL or README.b
www.eeworm.com/read/492695/6419494
m example82_order.m
%序参量演化
figure;
subplot(1,1,1),imshow('example82Order.bmp'),title('Order Parameters Evolution');
www.eeworm.com/read/488884/6479027
cpp main.cpp
#include "global.h"
void evolution();
int main()
{
srand(unsigned(time(0)));
clock_t start,finish;
double totaltime;
start=clock();
evolution();
finish=clock();
totaltime=(double)
www.eeworm.com/read/408136/11404736
m gabpeval.m
% 遗传算法的适应值计算
function [sol, val] = gabpEval(sol,options)
% val - the fittness of this individual
% sol - the individual, returned to allow for Lamarckian evolution
% options - [current_generation]
www.eeworm.com/read/342422/12021450
java gainterface.java
package test;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2005
* Company:
* @author not attributable
* @version 1.0
*/
public interface GAInterface {