number.pl.in
来自「Lin-Kernighan heuristic for the TSP and 」· IN 代码 · 共 16 行
IN
16 行
#! @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 + -
显示快捷键?