From 0034cc6ddcf5e9cf617f934d9333f700d0ed6ff9 Mon Sep 17 00:00:00 2001 From: Otaola93 Date: Wed, 13 Jul 2022 21:01:26 +0200 Subject: [PATCH] Update pmedian.py the name in the tag has to match the name in the string data='pmedian' --- examples/pyomo/facility_location/pmedian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pyomo/facility_location/pmedian.py b/examples/pyomo/facility_location/pmedian.py index 99005e4..15a3ace 100644 --- a/examples/pyomo/facility_location/pmedian.py +++ b/examples/pyomo/facility_location/pmedian.py @@ -72,7 +72,7 @@ def openfac_(model, i, j): return model.x[i,j] <= model.y[i] model.openfac = pyo.Constraint(model.M, model.N, rule=openfac_) -#@ Input File: data +#@ Input File: pmedian #@ Description: input file with problem data data = 'pmedian.dat'