代码搜索:PATH
找到约 10,000 项符合「PATH」的源代码
代码结果 10,000
www.eeworm.com/read/274907/10846106
bas mduglobal.bas
Attribute VB_Name = "mduGlobal"
Option Explicit
Public Function GetAppPath() As String
If Right(App.Path, 1) = "\" Then
GetAppPath = App.Path
Else
GetAppPath = App.Path
www.eeworm.com/read/348907/10860615
py svn.py
### Copyright (C) 2002-2005 Stephen Kennedy
### Redistribution and use in source and binary forms, with or without
### modification, are permitted provided that the following condi
www.eeworm.com/read/348907/10860622
py _vc.py
### Copyright (C) 2002-2005 Stephen Kennedy
### Redistribution and use in source and binary forms, with or without
### modification, are permitted provided that the following condi
www.eeworm.com/read/274654/10860668
m pathlong.m
function pathlong=pathlong(path,TSPMatrix)
%计算路径长度
[row,col]=size(path);
for i=1:row
pathlong(i)=0;
for j=1:(col-1)
pathlong(i)=pathlong(i)+TSPMatrix(path(i,j),path(i,j+1));
www.eeworm.com/read/274654/10860674
m select.m
function path=Select(path,SelectP)
[row,col]=size(path);
roulette=cumsum(SelectP);
for i=1:row
tempP=rand(1);
for j=1:length(roulette)
if tempP
www.eeworm.com/read/274654/10860679
m mutationreverse.m
function path=MutationReverse(path,Pm)
[row,col]=size(path);
childpath=path;
for i=1:row
point=randperm(col)-1;
point1=min(point(1),point(2));
point2=max(point(1),point(2));
tem
www.eeworm.com/read/274654/10860699
m fitness.m
function FP=Fitness(path,TSPMatrix)
[row,col]=size(path);
for i=1:row
pathlong(i)=0;
for j=1:(col-1)
pathlong(i)=pathlong(i)+TSPMatrix(path(i,j),path(i,j+1));
end
pathlo
www.eeworm.com/read/274442/10871579
frm frmrestore.frm
VERSION 5.00
Object = "{CE671F01-259E-40DA-92FE-95803E2ECBB5}#1.0#0"; "SmartXPButton.ocx"
Begin VB.Form FrmRestore
BackColor = &H00E7DFE7&
BorderStyle = 1 'Fixed Single
C
www.eeworm.com/read/419318/10874665
pas xfiles.pas
unit xFiles;
interface
uses SysUtils, Windows, ShellAPI, Forms;
type
TEnumDirectoryFileProc = procedure (Filename: string; var bContinue: Boolean) of object;
function PathWithoutSlash
www.eeworm.com/read/419292/10876686
h op.h
/*
* UFS: our own Filesystem in Userspace
* Copyright (c) 2009 LuQianhui
* All rights reserved.
*
* 文件名称:op.h
* 摘 要:声明 ufs文件系统的底层操作函数和块操作函数
* the block operation func