代码搜索:SA技术

找到约 10,000 项符合「SA技术」的源代码

代码结果 10,000
www.eeworm.com/read/475740/6776992

h sa.h

/*S 8 8 8 1 SA.H LCDIcon FileDescriptor: Do not edit or move */ /* Put Your Comments Here */ const char code sa[] = { 0x7C, /* .##
www.eeworm.com/read/294899/8194514

sa bitrev.sa

*=============================================================================== * * TEXAS INSTRUMENTS, INC. * * Copyright
www.eeworm.com/read/294899/8194922

sa factclasmfunc.sa

;Factclasmfunc.sa Linear ASM function called from C to find factorial .ref _factclasmfunc ;Linear ASM func called from C _factclasmfunc: .cproc number ;start of linear ASM func
www.eeworm.com/read/294899/8194945

sa bitrev.sa

*=============================================================================== * * TEXAS INSTRUMENTS, INC. * * Copyright
www.eeworm.com/read/294899/8195054

sa bitrev.sa

*=============================================================================== * * TEXAS INSTRUMENTS, INC. * * Copyright
www.eeworm.com/read/294899/8195134

sa bitrev.sa

*=============================================================================== * * TEXAS INSTRUMENTS, INC. * * Copyright
www.eeworm.com/read/393521/8280601

txt sa.txt

/* A program to perform Euclid's Algorithm to compute gcd. */ int gcd(int u,int v) { if (v==0) return u; else return gcd(v,u-u/v*v); /* u-u/v*v==u mod v */ } void main(void)
www.eeworm.com/read/170786/9790547

dpr sa.dpr

program TSPSA(Input,Output); type TIndex=Longint; TData=Extended; const CityNum=144; {$I data.pas} Temperature=300; DiminishedRate=0.9; MarkovLength=10000; Diminish_T_num=20000; AI
www.eeworm.com/read/412025/11217038

h sa.h

/* sa.h Prototypes for Simulated Annealing library */ /* rcsid: @(#)sa.h 1.2 15:54:42 3/30/93 EFC */ #ifndef SA_PACKAGE_H_ #define SA_PACKAGE_H_ 1.2 #ifdef NO_PROTO typedef float (*CostFunct
www.eeworm.com/read/412025/11217046

c sa.c

/* a collection of C routines for general purpose Simulated Annealing intended to be the C equivalent of the C++ Simulated Annealing object SimAnneal Uses Cauchy training */ static char r