<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can SAS/OR create an MPS text file? in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547627#M2629</link>
    <description>&lt;P&gt;I can't run this without your data, but I already see something that will help.&amp;nbsp; You have this constraint:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* define constraint: distance from customer i to site j is less than MaxStemDist to meet service */
   con Service {i in CUSTOMERS, j in FACILITIES}: PDStemTravelDistance[i,j] * Assign[i,j] &amp;lt;= MaxStemDist; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The intent is to force Assign[i,j] = 0 when&amp;nbsp;&lt;CODE class=" language-sas"&gt;PDStemTravelDistance[i,j] &amp;gt; MaxStemDist.&lt;/CODE&gt;&amp;nbsp; But it would be much more efficient to avoid declaring those variables in the first place.&amp;nbsp; Please see &lt;A href="https://go.documentation.sas.com/?docsetId=ormpug&amp;amp;docsetTarget=ormpug_optmodel_examples07.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;this documentation example&lt;/A&gt; that illustrates the idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another idea that might help is to omit the following constraints:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* define constraint: if any customer i is assigned to facility j, then facility j must be used/open */
   con AssignImpliesOpen {i in CUSTOMERS, j in FACILITIES}: Assign[i,j] &amp;lt;= Build[j];
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Although they do tighten the linear relaxation, they are not strictly required because the Capacitated constraints already enforce the logical implication: if Assign[i,j] = 1 then Build[j] = 1.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Apr 2019 15:04:15 GMT</pubDate>
    <dc:creator>RobPratt</dc:creator>
    <dc:date>2019-04-01T15:04:15Z</dc:date>
    <item>
      <title>Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/544274#M2613</link>
      <description />
      <pubDate>Tue, 19 Mar 2019 15:44:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/544274#M2613</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-03-19T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/544278#M2614</link>
      <description>&lt;P&gt;Yes.&amp;nbsp; Use the SAVE MPS statement in PROC OPTMODEL.&amp;nbsp; There is also a SAVE QPS statement for quadratic programming models.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 16:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/544278#M2614</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-03-19T16:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545115#M2620</link>
      <description>It saves the MPS file as a SAS dataset not a text file.&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Mar 2019 01:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545115#M2620</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-03-22T01:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545126#M2621</link>
      <description>&lt;P&gt;You can convert from data set to text file with the following DATA step:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro createMpsFile(ds,fn,free=1);
   option missing = '';
   data _null_ ;
      set &amp;amp;ds;
      file &amp;amp;fn;
      %if &amp;amp;free %then %do;
      if FIELD1 in ('NAME','ROWS','COLUMNS','RHS','BOUNDS','ENDATA','RANGES','QSECTION') then
         put @1 FIELD1 FIELD3;
      else
         put @2 FIELD1 FIELD2 FIELD3 FIELD4 FIELD5 FIELD6;
      %end;
      %else %do;
      if FIELD1 in ('NAME','ROWS','COLUMNS','RHS','BOUNDS','ENDATA','RANGES','QSECTION') then
         put @1 FIELD1 @15 FIELD3;
      else
         put @2 FIELD1 @5 FIELD2 @15 FIELD3 @25 FIELD4 @40 FIELD5 @50 FIELD6;
      %end;
   run;
   option missing = .;
%mend createMpsFile;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Mar 2019 03:43:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545126#M2621</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-03-22T03:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545617#M2622</link>
      <description>&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked! Thanks for your quick response and for sharing your expert knowledge of SAS/OR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On another note. I work with OR folks that primarily use Java, Python, CPLEX and Gurobi tools. Coming from a SAS background, I wanted to introduce and complement these tools with SAS/OR. On a few models I tested, I ran "out of memory" with proc optmodel when the same models ran okay with CPLEX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know it may be just my inexperience with SAS/OR. Could you please point me to best practices and options with SAS/OR to avoid the "out of memory" problem and make SAS/OR models run more efficiently? Most of the models we use are MILP models.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Michael Cuenco&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 18:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545617#M2622</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-03-24T18:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545650#M2623</link>
      <description>&lt;P&gt;What version of SAS/OR are you using?&amp;nbsp; Can you please share your PROC OPTMODEL code for one of these models?&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 23:16:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/545650#M2623</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-03-24T23:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547084#M2627</link>
      <description>SAS/OR 14.3. I will check what model I can share.&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Mar 2019 02:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547084#M2627</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-03-29T02:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547330#M2628</link>
      <description>&lt;P&gt;Here is the PROC OPTMODEL code. For the problem size there are 113 facilities and 2821 customers.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 19:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547330#M2628</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-03-29T19:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547627#M2629</link>
      <description>&lt;P&gt;I can't run this without your data, but I already see something that will help.&amp;nbsp; You have this constraint:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* define constraint: distance from customer i to site j is less than MaxStemDist to meet service */
   con Service {i in CUSTOMERS, j in FACILITIES}: PDStemTravelDistance[i,j] * Assign[i,j] &amp;lt;= MaxStemDist; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The intent is to force Assign[i,j] = 0 when&amp;nbsp;&lt;CODE class=" language-sas"&gt;PDStemTravelDistance[i,j] &amp;gt; MaxStemDist.&lt;/CODE&gt;&amp;nbsp; But it would be much more efficient to avoid declaring those variables in the first place.&amp;nbsp; Please see &lt;A href="https://go.documentation.sas.com/?docsetId=ormpug&amp;amp;docsetTarget=ormpug_optmodel_examples07.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;this documentation example&lt;/A&gt; that illustrates the idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another idea that might help is to omit the following constraints:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* define constraint: if any customer i is assigned to facility j, then facility j must be used/open */
   con AssignImpliesOpen {i in CUSTOMERS, j in FACILITIES}: Assign[i,j] &amp;lt;= Build[j];
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Although they do tighten the linear relaxation, they are not strictly required because the Capacitated constraints already enforce the logical implication: if Assign[i,j] = 1 then Build[j] = 1.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 15:04:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/547627#M2629</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-01T15:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548224#M2641</link>
      <description>&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help. I am learning a lot from you. I first tried your suggestions on two medium-sized models and they significantly reduced the memory used. I will set it up next to test on a big model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are two great suggestions. Would these two be amenable to build into the pre-solver?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 14:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548224#M2641</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-03T14:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548274#M2643</link>
      <description>&lt;P&gt;I ran out of memory using the model with 113 facilities and 2821 customer sites. Any other steps I can take? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Problem generation will use 4 threads.&lt;BR /&gt;NOTE: The problem has 303155 variables (0 free, 0 fixed).&lt;BR /&gt;NOTE: The problem uses 2 implicit variables.&lt;BR /&gt;NOTE: The problem has 303155 binary and 0 integer variables.&lt;BR /&gt;NOTE: The problem has 2934 linear constraints (113 LE, 2821 EQ, 0 GE, 0 range).&lt;BR /&gt;NOTE: The problem has 606197 linear constraint coefficients.&lt;BR /&gt;NOTE: The problem has 0 nonlinear constraints (0 LE, 0 EQ, 0 GE, 0 range).&lt;BR /&gt;NOTE: The remaining solution time after problem generation and solver initialization is 7181.98 seconds.&lt;BR /&gt;NOTE: The MILP presolver value AUTOMATIC is applied.&lt;BR /&gt;NOTE: The MILP presolver removed 3686 variables and 0 constraints.&lt;BR /&gt;NOTE: The MILP presolver removed 7372 constraint coefficients.&lt;BR /&gt;NOTE: The MILP presolver modified 0 constraint coefficients.&lt;BR /&gt;NOTE: The presolved problem has 299469 variables, 2934 constraints, and 598825 constraint coefficients.&lt;BR /&gt;NOTE: The MILP solver is called.&lt;BR /&gt;NOTE: The parallel Branch and Cut algorithm is used.&lt;BR /&gt;NOTE: The Branch and Cut algorithm is using up to 4 threads.&lt;BR /&gt;Node Active Sols BestInteger BestBound Gap Time&lt;BR /&gt;0 1 2 1812022 0 1812022 117&lt;BR /&gt;0 1 2 1812022 1052148 72.22% 119&lt;BR /&gt;0 1 2 1812022 1063880 70.32% 198&lt;BR /&gt;0 1 2 1812022 1068108 69.65% 225&lt;BR /&gt;0 1 2 1812022 1069878 69.37% 267&lt;BR /&gt;0 1 2 1812022 1070901 69.21% 333&lt;BR /&gt;0 1 2 1812022 1071674 69.08% 402&lt;BR /&gt;0 1 2 1812022 1072197 69.00% 480&lt;BR /&gt;0 1 2 1812022 1072624 68.93% 564&lt;BR /&gt;0 1 2 1812022 1072975 68.88% 662&lt;BR /&gt;0 1 2 1812022 1073282 68.83% 764&lt;BR /&gt;0 1 2 1812022 1073570 68.78% 875&lt;BR /&gt;0 1 2 1812022 1073762 68.75% 955&lt;BR /&gt;0 1 2 1812022 1073951 68.72% 1072&lt;BR /&gt;NOTE: The MILP solver added 1671 cuts with 13817 cut coefficients at the root.&lt;BR /&gt;1 2 2 1812022 1073951 68.72% 1091&lt;BR /&gt;752 1 2 1812022 1074456 68.65% 1823&lt;BR /&gt;4 The SAS System 09:43 Wednesday, April 3, 2019&lt;/P&gt;&lt;P&gt;956 202 2 1812022 1074498 68.64% 2000&lt;BR /&gt;4138 3366 2 1812022 1074498 68.64% 2500&lt;BR /&gt;6440 5652 2 1812022 1075663 68.46% 3000&lt;BR /&gt;8846 8047 2 1812022 1075806 68.43% 3502&lt;BR /&gt;12085 11280 2 1812022 1075809 68.43% 4000&lt;BR /&gt;15627 14815 2 1812022 1075857 68.43% 4500&lt;BR /&gt;18667 17843 3 1812012 1075857 68.42% 4873&lt;BR /&gt;18807 17982 3 1812012 1075857 68.42% 5006&lt;BR /&gt;22767 21926 3 1812012 1075858 68.42% 5500&lt;BR /&gt;ERROR: Out of memory.&lt;BR /&gt;NOTE: Objective of the best integer solution found = 1812012.3024.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE OPTMODEL used (Total process time):&lt;BR /&gt;real time 1:37:58.90&lt;BR /&gt;user cpu time 4:38:00.91&lt;BR /&gt;system cpu time 2:01.14&lt;BR /&gt;memory 8095586.56k&lt;BR /&gt;OS Memory 8186944.00k&lt;BR /&gt;Timestamp 04/03/2019 11:23:25 AM&lt;BR /&gt;Step Count 15 Switch Count 9261&lt;BR /&gt;Page Faults 785&lt;BR /&gt;Page Reclaims 0&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 605112&lt;BR /&gt;Involuntary Context Switches 341743&lt;BR /&gt;Block Input Operations 1&lt;BR /&gt;Block Output Operations 67&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 16:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548274#M2643</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-03T16:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548276#M2644</link>
      <description>&lt;P&gt;Yes, the MILP presolver deals with these, but declaring the variables and constraints (and postsolving them) still requires memory.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 16:56:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548276#M2644</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-03T16:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548277#M2645</link>
      <description>&lt;P&gt;Can you please share the data?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 16:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548277#M2645</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-03T16:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548500#M2650</link>
      <description>&lt;P&gt;Sorry, but the data is confidential and I am not allowed to share it.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 14:10:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548500#M2650</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-04T14:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548519#M2652</link>
      <description>&lt;P&gt;Even obfuscated data would be useful.&amp;nbsp; A successful approach using Benders decomposition is provided in &lt;A href="https://communities.sas.com/t5/Mathematical-Optimization/How-much-memory-is-needed-Or-how-to-reduce-memory-requirements/m-p/309150/highlight/true#M1493" target="_self"&gt;this earlier post&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 14:38:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548519#M2652</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-04T14:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548848#M2653</link>
      <description>&lt;P&gt;I will anonymize the data. In what format do you want me to send?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 17:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548848#M2653</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-05T17:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548850#M2654</link>
      <description>&lt;P&gt;Ideally, you can provide the three SAS data sets that appear in the READ DATA statements.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 17:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548850#M2654</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-05T17:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548875#M2655</link>
      <description>&lt;P&gt;One file is too large to attach.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 18:47:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548875#M2655</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-05T18:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548877#M2656</link>
      <description>&lt;P&gt;here are the 2 smaller files.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 18:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548877#M2656</guid>
      <dc:creator>cuencomi</dc:creator>
      <dc:date>2019-04-05T18:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can SAS/OR create an MPS text file?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548878#M2657</link>
      <description>&lt;P&gt;Can you zip the large one?&amp;nbsp; Or include only the needed observations with&amp;nbsp;PDStemTravelDistance &amp;lt;= MaxStemDist.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 19:01:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Can-SAS-OR-create-an-MPS-text-file/m-p/548878#M2657</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2019-04-05T19:01:33Z</dc:date>
    </item>
  </channel>
</rss>

