wm.pl
来自「Lin-Kernighan heuristic for the TSP and 」· PL 代码 · 共 31 行
PL
31 行
#! /usr/bin/perl -wuse strict;# Arguments are taken as file names of the tsp.wm.gz files.# Extract exact matching length from output of blossom4.# Output format is as instance lines for expt.plmy $iters = "N";my $verbose=50;my $n=-1;my $instance;foreach (@ARGV) { my $file = $_; if ( $file =~ m/^([^\s]+)\.tsp\.wp?m\.gz/ ) { $instance = $1; $instance =~ m/(\d+)$/; $n = $1; if ( -r $file ) { open IN, "gzip -d -c $file|"; while (<IN>) { if ( m/Matching Length: (\d+\.\d+).*Dual/ ) { my $bound = $1; print "instance $instance:$n:-l optimal $bound : $iters\n"; } } } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?