number.pl.in,v

来自「Lin-Kernighan heuristic for the TSP and 」· IN,V 代码 · 共 49 行

IN,V
49
字号
head	1.1;access;symbols	zero-five-zero:1.1	zero-four-seventeen:1.1	zero-four-ten:1.1	zero-four-nine:1.1	zero-four-eight:1.1	zero-four-five:1.1	zero-four-three:1.1	zero-four-zero:1.1;locks	neto:1.1; strict;comment	@# @;1.1date	97.06.19.19.44.02;	author neto;	state Exp;branches;next	;desc@Extract just the essential facts from LK output.@1.1log@Initial revision@text@#! @@PERL@@# @@configure_input@@# number.pl# Extract just the essential facts from LK output.while (<>) {	if (m/(\d+.\d+) user seconds/) {		print $1,"\n";  # Time	} elsif (m/^LK \d/) { # The version banner.		print;	} elsif (m/^Initial tour length:/) {		print;	} elsif (m/^Length:/) {		print;	}}@

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?