<?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: Max Flow Problem in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390082#M1963</link>
    <description>&lt;P&gt;thank you very much. that does help me generate teh result tab. &amp;nbsp;One quick question hwoever. &amp;nbsp;Where can i specify that I only want the flow numbers to be integers? &amp;nbsp;I see that in the result some of the flows are in fractions.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Aug 2017 02:59:38 GMT</pubDate>
    <dc:creator>dgb</dc:creator>
    <dc:date>2017-08-23T02:59:38Z</dc:date>
    <item>
      <title>Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390056#M1958</link>
      <description>&lt;P&gt;Hello I am trying to solve a simple max flow problem. I have the following data input and the following code. &amp;nbsp;But somehow the result tab comes out as blank. &amp;nbsp;I am not sure where I am messing up. &amp;nbsp;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data arcs;&lt;BR /&gt;input _from_ $ _to_ $ _capac_;&lt;BR /&gt;datalines;&lt;BR /&gt;N1 N2 6&lt;BR /&gt;N1 N3 2&lt;BR /&gt;N1 N4 5&lt;BR /&gt;N1 N7 5&lt;BR /&gt;N1 N9 2&lt;BR /&gt;N2 N5 2&lt;BR /&gt;N3 N5 1&lt;BR /&gt;N3 N6 1&lt;BR /&gt;N3 N9 1&lt;BR /&gt;N4 N6 2&lt;BR /&gt;N4 N8 3&lt;BR /&gt;N5 N6 3&lt;BR /&gt;N5 N7 1&lt;BR /&gt;N5 N9 3&lt;BR /&gt;N6 N5 1&lt;BR /&gt;N6 N8 5&lt;BR /&gt;N6 N9 3&lt;BR /&gt;N7 N9 3&lt;BR /&gt;N8 N9 2&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;proc netflow&lt;BR /&gt;intpoint&lt;BR /&gt;maxflow&lt;BR /&gt;excess = arcs&lt;BR /&gt;arcdata = arcs&lt;BR /&gt;source = N1 sink = N9&lt;BR /&gt;conout = gout3;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 22:51:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390056#M1958</guid>
      <dc:creator>dgb</dc:creator>
      <dc:date>2017-08-22T22:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390057#M1959</link>
      <description>&lt;P&gt;Does the log say anything about proc netflow not found?&lt;/P&gt;
&lt;P&gt;You might want to run this code and share the result to show what is currently installed and available.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;proc&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;product_status&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;run&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;The log will show which products are installed.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 23:09:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390057#M1959</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-22T23:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390066#M1960</link>
      <description>&lt;P&gt;Some OR procs display all output (or at least much of their output) in the log.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2017 23:51:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390066#M1960</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-08-22T23:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390071#M1961</link>
      <description>&lt;P&gt;Hi, I see that the max flow answer is &amp;nbsp;displayed in log(pasted below)&lt;/P&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Optimum reached.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Maximal flow= 13 .&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Objective= 0.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;However, how do I get SAS to display for instance the flow from one specific node to another? (ie: from node 1 to node 7?)&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Thanks.&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Aug 2017 00:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390071#M1961</guid>
      <dc:creator>dgb</dc:creator>
      <dc:date>2017-08-23T00:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390080#M1962</link>
      <description>&lt;P&gt;You must follow the run; statement with a quit; statement to create the gout3 dataset which contains the flows.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 02:51:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390080#M1962</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-08-23T02:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390082#M1963</link>
      <description>&lt;P&gt;thank you very much. that does help me generate teh result tab. &amp;nbsp;One quick question hwoever. &amp;nbsp;Where can i specify that I only want the flow numbers to be integers? &amp;nbsp;I see that in the result some of the flows are in fractions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 02:59:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390082#M1963</guid>
      <dc:creator>dgb</dc:creator>
      <dc:date>2017-08-23T02:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390087#M1964</link>
      <description>&lt;P&gt;I don't know of any SAS network problem solver that supports integer constraints. Look at MILP procedures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could post such questions to the SAS/OR forum to reach a more specialized crowd.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 03:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390087#M1964</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-08-23T03:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Max Flow Problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390321#M1966</link>
      <description>&lt;P&gt;The NETFLOW procedure is considered legacy and is no longer under active development. &amp;nbsp;Please see &lt;A href="http://support.sas.com/documentation/cdl/en/ormplpug/68158/HTML/default/viewer.htm#ormplpug_netflow_sect160.htm" target="_self"&gt;this documentation example&lt;/A&gt; that shows how to solve a maximum flow problem with PROC OPTMODEL, where you can easily declare the flow variables to be integer by using the INTEGER option in the VAR statement.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 16:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Max-Flow-Problem/m-p/390321#M1966</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2017-08-23T16:14:03Z</dc:date>
    </item>
  </channel>
</rss>

