📄 wm.pl
字号:
#! /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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -