From cbb3ac3d1f9bf4bc1833c84be27f8f32c6779374 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 17 Sep 2009 00:32:38 +0100 Subject: [PATCH] Fix up so hold status report still works if no capacity limit --- yarrg/web/routetrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarrg/web/routetrade b/yarrg/web/routetrade index 4be17c6..ee1141a 100644 --- a/yarrg/web/routetrade +++ b/yarrg/web/routetrade @@ -462,7 +462,7 @@ foreach my $ci (0..($#islandids-1)) { my $applylimit= sub { my ($mv, $max, $f2val) = @_; - return unless defined $max; + $max= 1e9 unless defined $max; #print " DEFINED MAX $mv $max "; $cplex .= " ". sprintf("%-10s","${mv}_$ci:")." ". -- 2.30.2