虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

OPTION

  • MantisChess -- A Chinese Chess Program Copyright (C) Chen Chengtao, China This program is f

    MantisChess -- A Chinese Chess Program Copyright (C) Chen Chengtao, China This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your OPTION) any later version.

    标签: MantisChess Copyright Chengtao Chinese

    上传时间: 2015-06-22

    上传用户:虫虫虫虫虫虫

  • % [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation) % Finds a maximum of a functio

    % [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation) % Finds a maximum of a function of several variables. % fmaxga solves problems of the form: % max F(X) subject to: LB <= X <= UB % BestPop--------最优的群体即为最优的染色体群 % Trace----------最佳染色体所对应的目标函数值 % FUN------------目标函数 % LB-------------自变量下限 % UB-------------自变量上限 % eranum---------种群的代数,取100--1000(默认1000) % popsize--------每一代种群的规模;此可取50--100(默认50) % pcross---------交叉的概率,此概率一般取0.5--0.85之间较好(默认0.8) % pmutation------变异的概率,该概率一般取0.05-0.2左右较好(默认0.1) % OPTIONs--------1×2矩阵,OPTIONs(1)=0二进制编码(默认0),OPTION(1)~=0十进制编码,OPTION(2)设定求解精度(默认1e-4)

    标签: pmutation BestPop popsize maximum

    上传时间: 2015-07-16

    上传用户:Altman

  • 2410addr.inc:s3c2410内部寄存器定义 memcfg.inc : 存储块配置

    2410addr.inc:s3c2410内部寄存器定义 memcfg.inc : 存储块配置,主要定义时序 OPTION.inc : s3c2410堆栈地址,时钟等设置 。 2410init.asm: 启动代码

    标签: inc s3c2410 memcfg 2410

    上传时间: 2015-08-06

    上传用户:asddsd

  • ORACLE公司自86年推出版本5开始,系统具有分布数据库处理功能.88年推出版本6,ORACLE RDBMS(V6.0)可带事务处理选项(TPO),提高了事务处理的速度.1992年推出了版本7,在O

    ORACLE公司自86年推出版本5开始,系统具有分布数据库处理功能.88年推出版本6,ORACLE RDBMS(V6.0)可带事务处理选项(TPO),提高了事务处理的速度.1992年推出了版本7,在ORACLE RDBMS中可带过程数据库选项(procedural database OPTION)和并行服务器选项(parallel server OPTION),称为ORACLE7数据库管理系统,它释放了开放的关系型系统的真正潜力。ORACLE7的协同开发环境提供了新一代集成的软件生命周期开发环境,可用以实现高生产率、大型事务处理及客户/服务器结构的应用系统。协同开发环境具有可移植性,支持多种数据来源、多种图形用户界面及多媒体、多民族语言、CASE等协同应用系统。

    标签: ORACLE RDBMS 1992 版本

    上传时间: 2015-08-11

    上传用户:xzt

  • 44binit.s ----- 初始化中断、存储器、堆栈等

    44binit.s ----- 初始化中断、存储器、堆栈等,进行系统初始化,建立C程序运行环境。 memcfg.inc ----- 定义存储器延时、SDRAM配置等参数 OPTION.inc ----- 定义系统时钟频率等 main.c ----- 系统主程序(Main函数等) 44blib.c ----- IO端口初始化、延时和异步串口通讯等基本子程序

    标签: binit 44 初始化 中断

    上传时间: 2014-01-11

    上传用户:hullow

  • Predefined Style OPTIONs define the style by setting several other OPTIONs. If other OPTIONs are als

    Predefined Style OPTIONs define the style by setting several other OPTIONs. If other OPTIONs are also used, the placement of the predefined style OPTION in the command line is important. If the predefined style OPTION is placed first, the other OPTIONs may override the predefined style. If placed last, the predefined style will override the other OPTIONs. For example the style --style=ansi sets the OPTION --brackets=break . If the command line specifies "--style=ansi --brackets=attach", the brackets will be attached and the style will not be ansi style. If the order on the command line is reversed to "--brackets=attach --style=ansi ", the brackets will be broken (ansi style) and the attach OPTION will be ignored. For the OPTIONs set by each style check the parseOPTION function in astyle_main.cpp

    标签: OPTIONs other Predefined setting

    上传时间: 2014-12-21

    上传用户:zhangliming420

  • Visual Basic 6.0可以通过调用API函数格式化一个磁盘

    Visual Basic 6.0可以通过调用API函数格式化一个磁盘,无论是软盘还是硬盘。 打开一个新的项目(工程1) ,如果你没有更改过缺省模式,那么Visual Basic 6.0会自动添加一个form1文件,在form1上添加一个命令控件,将下面的代码拷入。 OPTION Explicit Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend AS Long,ByVal Drive AS Long,ByVal FormatID AS Long,ByVal OPTIONs AS Long) as Long Private Sub FormatDisk(intDrive as integer,blnQuickFormat as Boolean) dim lngReturn As Long if (blnQuickFormat) then lngReturn= SHFormatDrive(0,intDrive,0&,1&) else lngReturn= SHFormatDrive(0,intDrive,0&,0&) end if end Sub Private Sub Command1_Click() call FormatDisk(0,True) End Sub 运行此程序。 注意FormatDisk函数的第一个变量很重要,他的值是0,1,2时代表格式化的分别是:A、B、C盘。

    标签: Visual Basic 6.0 API

    上传时间: 2015-10-05

    上传用户:kytqcool

  • About: Paco (pacKAGE oRGANIZER) is a simple, yet powerful tool to aid package management when insta

    About: Paco (pacKAGE oRGANIZER) is a simple, yet powerful tool to aid package management when installing programs from source code. It uses the LD_PRELOAD method to track package installations, and provides various OPTIONs to keep the installed software organized. It s mainly a command line application but it has also an OPTIONal GTKMM interface. Release focus: Minor bugfixes Changes: Libpaco-log has been rewritten in C. This prevents a glibc installation failure when building LFS in chapter 6. The OPTION -x|--expand has been removed. Several bugs have been fixed in paco, gpaco, and rpm2paco. Author: David Rosal

    标签: management oRGANIZER powerful pacKAGE

    上传时间: 2014-08-25

    上传用户:weixiao99

  • This program is free software you can redistribute it and/or modify it under the terms of the GNU

    This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your OPTION) any later version.

    标签: redistribute the software program

    上传时间: 2014-11-30

    上传用户:大三三

  • 对于单个控件,COMPONET-->INSTALL COMPONENT..-->PAS或DCU文件-->INSTALL。 2.对于带*.DPK文件的控件包,FILE-->OP

    对于单个控件,COMPONET-->INSTALL COMPONENT..-->PAS或DCU文件-->INSTALL。 2.对于带*.DPK文件的控件包,FILE-->OPEN(下拉列表框中选*.DPK)-->INSTALL即可。 3.对于带*.BPL文件的控件包,INSTALL PACKAGES-->ADD-->BPL文件名即可。 4.如果以上INSTALL按钮为失效的话,试试COMPILE按钮。 5.是RUN TIME LIB则在OPTION下的PACKAGES下的RUNTIMEPACKES加之。 如果编译时提示文件找不到的话,一般是控件的安装目录不在DELPHI的LIB目录中, 有两种方法可以解决: 1.反安装的源文件拷入到DELPHI的LIB目录下。 2.或者TOOLS-->ENVIRONMENT OPTIONS中把控件源代码路径加入到DELPHI的LIB目录中即可。

    标签: INSTALL gt COMPONENT COMPONET

    上传时间: 2013-12-25

    上传用户:ljmwh2000