<?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: PROC OPTMODEL for MULTIPLE solutions???? in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/408250#M2025</link>
    <description>&lt;P&gt;See the&amp;nbsp;&lt;A href="http://go.documentation.sas.com/?docsetId=ormpug&amp;amp;docsetTarget=ormpug_optmodel_details58.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;"Multiple Solutions" section&lt;/A&gt;&amp;nbsp;of the PROC OPTMODEL documentation for an example.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Oct 2017 14:59:17 GMT</pubDate>
    <dc:creator>RobPratt</dc:creator>
    <dc:date>2017-10-28T14:59:17Z</dc:date>
    <item>
      <title>PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/248999#M1207</link>
      <description>&lt;P&gt;I am working on an assignment problem using PROC OPTMODEL which is likely to have multiple solutions which are all equally optimized. Given such a situation, is it possible for PROC OPTMODEL to generate one solution in one run of the optimization program and another solution given another run of the optimization program?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking of something like a random seed. Each random seed leads to a different flow of numerical values which next lead to a different solution. I am not sure if PROC OPTMODEL allows something like a random seed??&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:10:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/248999#M1207</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-02-09T18:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249007#M1209</link>
      <description>&lt;P&gt;The CLP solver in PROC OPTMODEL can return all or some specified number of optimal solutions. &amp;nbsp;You can use either the FINDALLSOLNS option or the MAXSOLNS= option in the SOLVE WITH CLP statement:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/ormpug/68156/HTML/default/viewer.htm#ormpug_clpsolver_syntax03.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/ormpug/68156/HTML/default/viewer.htm#ormpug_clpsolver_syntax03.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249007#M1209</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2016-02-09T18:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249023#M1211</link>
      <description>&lt;P&gt;Hi Rob:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your promot reply. I did replace the CLP solver with the MILP solver by using:&amp;nbsp;solve with clp obj objfun / &amp;nbsp;FINDALLSOLNS;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I got an error message:&amp;nbsp;ERROR: The CLP solver does not allow continuous variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the SAS log information (found below), I only have binary variables, no continuous variables at all. The only place that might contain continuous variables is the objective function which linearizes an absolute value operation by using surplus and slack. However, the same error message continues even when I disable the objective function by using:&amp;nbsp;solve with clp noobjective / &amp;nbsp;FINDALLSOLNS;&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 15006 variables (0 free, 0 fixed).&lt;BR /&gt;NOTE: The problem uses 1 implicit variables.&lt;BR /&gt;NOTE: The problem has 15000 binary and 0 integer variables.&lt;BR /&gt;NOTE: The problem has 5012 linear constraints (5003 LE, 6 EQ, 3 GE, 0 range).&lt;BR /&gt;NOTE: The problem has 67224 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 OPTMODEL presolver removed 0 variables, 0 linear constraints, and 0 nonlinear constraints.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 18:55:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249023#M1211</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-02-09T18:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249026#M1213</link>
      <description>&lt;P&gt;You will get that error even if you just declare continuous variables. &amp;nbsp;Please try commenting out those declarations and any other statements that use those variables.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 19:03:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249026#M1213</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2016-02-09T19:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249047#M1214</link>
      <description>&lt;P&gt;Thank you, Rob.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you said worked perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I removed all variables which are listed after the VAR statement but without a BINARY option. I also removed all those lines of code which use those variables. The code is able to run.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank yo so much.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 20:15:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249047#M1214</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-02-09T20:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249049#M1215</link>
      <description>&lt;P&gt;I'm glad to help. &amp;nbsp;I should also mention that I will be presenting a paper on multiple solutions in PROC OPTMODEL at SAS Global Forum 2016 in April:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sas.com/en_us/events/sas-global-forum/sas-global-forum-2016.html" target="_blank"&gt;http://www.sas.com/en_us/events/sas-global-forum/sas-global-forum-2016.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 20:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249049#M1215</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2016-02-09T20:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249051#M1216</link>
      <description>&lt;P&gt;Hi Rob:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wish I could go to listen to your talk which I am confident would be very helpful to me, provided that the company would fund me with money and time. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you think your talk would be posted online as a whitepaper or posted on Youtube sometime in the future? I have so far taught myself PROC OPTMODEL by viewing the Youtube videos and the whitepapers that you posted online. They are really helpful to me. I could find only one book dedicated to SAS/OR for optimization which is not as helpful as the videos and whitepapers.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 20:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249051#M1216</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-02-09T20:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249064#M1217</link>
      <description>&lt;P&gt;Yes, the paper will be available online as part of the conference proceedings. &amp;nbsp;Until then, here are a few other links to resources that might be helpful for you to learn PROC OPTMODEL:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Papers and slides:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/rnd/app/or/papers/index.html" target="_blank"&gt;http://support.sas.com/rnd/app/or/papers/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Official documentation, especially Mathematical Programming Examples:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/onlinedoc/or/index.html" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/or/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC OPTMODEL course:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/edu/schedules.html?id=2616&amp;amp;ctry=US" target="_blank"&gt;https://support.sas.com/edu/schedules.html?id=2616&amp;amp;ctry=US&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;“OPERATIONS RESEARCH WITH SAS” blog:&lt;BR /&gt;&lt;A href="http://blogs.sas.com/content/operations/" target="_blank"&gt;http://blogs.sas.com/content/operations/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:26:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249064#M1217</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2016-02-09T21:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249071#M1218</link>
      <description>&lt;P&gt;Thank you, Rob.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These materials have been/will be very helpful in my work. In particular, the Papers and Slides link and the SAS/OR course link were unknown to me. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:34:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/249071#M1218</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-02-09T21:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/266481#M1304</link>
      <description>&lt;P&gt;The SAS Global Forum 2016 paper I mentioned is now available:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings16/SAS3161-2016.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings16/SAS3161-2016.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 18:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/266481#M1304</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2016-04-26T18:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/266497#M1305</link>
      <description>&lt;P&gt;Thank you, Rob, for showing us the link for the paper on identiifying multiple best solutions within PROC OPTMODEL. I will be reading it and try to figure out its relevance to our work. At this point, we truly enjoy this optimization program that is provided as part of SAS/OR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It surprises me that you still remember this question that I posted regarding the procedure, after nearly THREE months. We much appreciate it! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 18:53:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/266497#M1305</guid>
      <dc:creator>PatrickYang</dc:creator>
      <dc:date>2016-04-26T18:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/408244#M2024</link>
      <description>&lt;P&gt;Thanks for your request Rob!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use&amp;nbsp;allsolns to find all solutions but i can not print them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can i print all solutions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2017 14:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/408244#M2024</guid>
      <dc:creator>dali74</dc:creator>
      <dc:date>2017-10-28T14:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: PROC OPTMODEL for MULTIPLE solutions????</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/408250#M2025</link>
      <description>&lt;P&gt;See the&amp;nbsp;&lt;A href="http://go.documentation.sas.com/?docsetId=ormpug&amp;amp;docsetTarget=ormpug_optmodel_details58.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;"Multiple Solutions" section&lt;/A&gt;&amp;nbsp;of the PROC OPTMODEL documentation for an example.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2017 14:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/PROC-OPTMODEL-for-MULTIPLE-solutions/m-p/408250#M2025</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2017-10-28T14:59:17Z</dc:date>
    </item>
  </channel>
</rss>

