<?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: Looking for Literature for Center of Gravity problem in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632748#M3063</link>
    <description>&lt;P&gt;Rob&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did see that. It gave me a good insight. Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was going to ask you for any example models in SAS related to this that I can learn so that I could better formulate it.&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2020 17:51:18 GMT</pubDate>
    <dc:creator>Santha</dc:creator>
    <dc:date>2020-03-17T17:51:18Z</dc:date>
    <item>
      <title>Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632712#M3060</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I am trying to see if I can solve the center of gravity location problem using SAS. So I am looking for articles / literature to set my model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an overview, I have a bunch of nodes , each of them with its own demand (weight). I have latitudes and longitudes of them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to find a center of gravity point that will minimize the "weighted-distance" from this center of gravity point to all nodes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And as an extension, want to see if i can choose from a list of candidates that will minimize the weighted-distance.&lt;/P&gt;&lt;P&gt;Any help is appreciated&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 16:07:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632712#M3060</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-17T16:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632715#M3061</link>
      <description>&lt;P&gt;This is known as the Weber problem and can be solved as an unconstrained convex nonlinear optimization problem.&amp;nbsp; See &lt;A href="https://support.sas.com/resources/papers/proceedings/pdfs/sgf2008/203-2008.pdf" target="_self"&gt;this SAS Global Forum 2008 paper&lt;/A&gt;, which also discusses the (nonconvex) multisource Weber problem.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 16:19:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632715#M3061</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-17T16:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632718#M3062</link>
      <description>&lt;P&gt;Thanks Rob. I will look into it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 16:31:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632718#M3062</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-17T16:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632748#M3063</link>
      <description>&lt;P&gt;Rob&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did see that. It gave me a good insight. Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was going to ask you for any example models in SAS related to this that I can learn so that I could better formulate it.&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:51:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632748#M3063</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-17T17:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632752#M3064</link>
      <description>&lt;P&gt;I happened to already have code for this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc optmodel;
   set DIMS = 1..2;
   set CUSTOMERS;
   num a {CUSTOMERS, DIMS};
   num demand {CUSTOMERS};
   read data indata into CUSTOMERS=[_N_] {d in DIMS} &amp;lt;a[_N_,d]=col('a'||d)&amp;gt; demand;

   var X {DIMS};
   min Z = sum {i in CUSTOMERS} demand[i]*sqrt(sum {d in DIMS}(a[i,d]-X[d])^2);

   solve;
   print X;

   create data sganno from [i]=CUSTOMERS x1=a[i,1] y1=a[i,2] x2=X[1] y2=X[2]
      drawspace='datavalue' function='line';
quit;

proc sgplot data=cdata sganno=sganno;
   scatter x=a1 y=a2;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2020 18:29:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632752#M3064</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-17T18:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632758#M3065</link>
      <description>&lt;P&gt;Rob that is really amazing.thank you&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 18:37:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/632758#M3065</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-17T18:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633393#M3066</link>
      <description>&lt;P&gt;Rob.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I went into your model and also did some research to understand basic concepts about these types of problems.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I am ready to deploy SAS and test it on my small model.&amp;nbsp;I have two columns called Sitename (that are nothing but customer names ) and Demand. I have 6 Sitenames and demand for each 6 of them.&amp;nbsp;My objectives is&amp;nbsp;to pick "n" points that will minimize the sum of the weighted distance to all the customers. Once this is set up correctly, I shall go on with choosing from a list of candidate facilities.&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Sitename&lt;/TD&gt;&lt;TD&gt;SiteParameter1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DEN&lt;/TD&gt;&lt;TD&gt;800&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SFO&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EWR&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SEA&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MIA&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MCI&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ORD&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I will have a set of customers (set CUSTOMERS;)&lt;/P&gt;&lt;P&gt;I will have a numeric parameter called demand that is indexed over CUSTOMERS&amp;nbsp; (num demand {CUSTOMERS};)&lt;/P&gt;&lt;P&gt;The other numeric parameter that I see in your code num a{CUSTOMERS,DIMS} and your read data I am not quite sure I follow it. I am understanding that to be another parameter which will be like Customer1, Customer2 etc?&amp;nbsp;&lt;/P&gt;&lt;P&gt;read data indata into CUSTOMERS=[_N_] {d in DIMS} &amp;lt;a[_N_,d]=col('a'||d)&amp;gt; demand;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me how to read data / understand read data ? Also, model will give the optimum X,so that will be one of the 7 sites.&amp;nbsp; Correct?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 19:02:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633393#M3066</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-19T19:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633442#M3067</link>
      <description>&lt;P&gt;In the example code I provided, the indata data set has two columns (a1 and a2) that correspond to the location coordinates of each customer.&amp;nbsp; For you, these would be latitude and longitude, and you would probably want to use the GEODIST function to compute distance instead of the SQRT formula that I used to compute Euclidean distance.&amp;nbsp; Solving the optimization model yields the coordinates (X[1] and X[2]) for a new location that minimizes the demand-weighted sum of distances from customers to this new location.&amp;nbsp; It will not be the same location as an existing customer unless that customer happens to be located at the center of gravity.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 21:27:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633442#M3067</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-19T21:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633443#M3068</link>
      <description>&lt;P&gt;Thank you Rob for the insights. I am clear now. I will set up the model and let you know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is very interesting. Thank you again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 21:30:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/633443#M3068</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-19T21:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634300#M3072</link>
      <description>&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;I wanted to let you know that I was able to adapt the code to my needs. and was able to get what I exactly wanted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 23:11:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634300#M3072</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-23T23:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634301#M3073</link>
      <description>&lt;P&gt;Glad to hear that, Santha!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 23:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634301#M3073</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-23T23:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634530#M3075</link>
      <description>&lt;P&gt;I have a full model with 11,000 customers. Its been like 45 minutes and is still running.&lt;/P&gt;&lt;P&gt;I want model to pick 1 answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I set the tolerance / relative gap so that I can live with that % . Also, a time limit until the model can run like an hour or so and give the answers after 1 hr mark.?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 18:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634530#M3075</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-24T18:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634536#M3076</link>
      <description>&lt;P&gt;Trying FEASTOL and MAXTIME based on NLP options. Any other ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 19:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634536#M3076</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-24T19:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634541#M3078</link>
      <description>&lt;P&gt;Yes, MAXTIME=3600 will stop the solver after one hour.&amp;nbsp; You can also use FEASTOL and/or OPTTOL.&amp;nbsp; Are you able to share code and data?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 19:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634541#M3078</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-24T19:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634544#M3079</link>
      <description>&lt;P&gt;Rob - here is the code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let p=2;&amp;nbsp;&lt;BR /&gt;proc optmodel;&lt;/P&gt;&lt;P&gt;set DIMS=1..2;&lt;BR /&gt;set CUSTOMERS;&lt;BR /&gt;set FACILITIES = 1..&amp;amp;p;&lt;BR /&gt;num a {CUSTOMERS,DIMS};&lt;BR /&gt;num demand {CUSTOMERS};&lt;/P&gt;&lt;P&gt;read data STDOPT.COGModelingData into CUSTOMERS=&lt;BR /&gt;[_N_] {d in DIMS} &amp;lt;a[_N_,d]=col('a'||d)&amp;gt; demand;&lt;/P&gt;&lt;P&gt;print demand;&lt;BR /&gt;print a;&lt;/P&gt;&lt;P&gt;num Xlb {d in DIMS} = min {i in CUSTOMERS} a[i,d];&lt;BR /&gt;num Xub {d in DIMS} = max {i in CUSTOMERS} a[i,d];&lt;BR /&gt;**print Xlb; **print Xub;&lt;/P&gt;&lt;P&gt;var X {FACILITIES, d in DIMS} &amp;gt;= Xlb[d] &amp;lt;= Xub[d];&lt;BR /&gt;var W {CUSTOMERS, FACILITIES} &amp;gt;= 0;&lt;BR /&gt;&lt;BR /&gt;impvar Distance {i in CUSTOMERS, j in FACILITIES} = sum{d in DIMS} GEODIST(a[i,1],a[i,2],X[j,1],X[j,2]);&lt;/P&gt;&lt;P&gt;min Z = sum {i in CUSTOMERS, j in FACILITIES} W[i,j]*Distance[i,j];&lt;BR /&gt;con DemandCon {i in CUSTOMERS}: sum {j in FACILITIES} W[i,j] = demand[i];&lt;/P&gt;&lt;P&gt;solve with nlp / ms FEASTOL=1e-1;&lt;BR /&gt;print X;&lt;BR /&gt;put _OBJ_=;&lt;/P&gt;&lt;P&gt;/* post-processing: assign each customer to closest facility */&lt;BR /&gt;set CUSTOMERS_j {FACILITIES} init {};&lt;BR /&gt;num minDistance, argminDistance;&lt;BR /&gt;for {i in CUSTOMERS} do;&lt;BR /&gt;minDistance = constant('BIG');&lt;BR /&gt;argminDistance = .;&lt;BR /&gt;for {j in FACILITIES} do;&lt;BR /&gt;if minDistance &amp;gt; Distance[i,j] then do;&lt;BR /&gt;minDistance = Distance[i,j];&lt;BR /&gt;argminDistance = j;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;for {j in FACILITIES} W[i,j] = 0;&lt;BR /&gt;W[i,argminDistance] = demand[i];&lt;BR /&gt;CUSTOMERS_j[argminDistance] = CUSTOMERS_j[argminDistance] union {i};&lt;BR /&gt;end;&lt;BR /&gt;put _OBJ_=;&lt;/P&gt;&lt;P&gt;/* post-processing: solve each facility separately */&lt;BR /&gt;min SingleFacilityObjective {j in FACILITIES} = sum {i in CUSTOMERS_j[j]} demand[i]*Distance[i,j];&lt;BR /&gt;problem SingleFacilityProblem {j in FACILITIES} include&lt;BR /&gt;{d in DIMS} X[j,d]&lt;BR /&gt;SingleFacilityObjective[j];&lt;BR /&gt;for {j in FACILITIES} do;&lt;BR /&gt;put j=;&lt;BR /&gt;use problem SingleFacilityProblem[j];&lt;BR /&gt;solve;&lt;BR /&gt;end;&lt;BR /&gt;put (sum {j in FACILITIES} SingleFacilityObjective[j])=;&lt;BR /&gt;print X;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 19:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634544#M3079</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-24T19:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634555#M3080</link>
      <description>&lt;P&gt;Are you able to share the data?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to speed things up might be to exclude customer-facility pairs that are too far apart.&amp;nbsp; The most efficient way to do this is to use sparse modeling to omit the corresponding variables, as illustrated in the &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;Sparse Modeling example&lt;/A&gt; in the documentation.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 20:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634555#M3080</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-24T20:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634568#M3081</link>
      <description>&lt;P&gt;here is the data. thank you&lt;/P&gt;&lt;P&gt;let me look at sparse modeling as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 20:44:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/634568#M3081</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-24T20:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635055#M3082</link>
      <description>&lt;P&gt;Hi Rob.&lt;/P&gt;&lt;P&gt;Were u able to see what was the problem in the data? I noticed that the MAXTIME of 600 seconds does not seem to be respected as it tries to solve more than that and would never finish. Not sure if something inherently problematic with dataset or sthg.&lt;/P&gt;&lt;P&gt;I am going to try to do sparse modeling today. But if you can let me know about anything to speed the solve it would be great.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635055#M3082</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-26T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635143#M3083</link>
      <description>&lt;P&gt;I don't see anything wrong with the data.&amp;nbsp; Can you please show the SOLVE statement you used, with the MAXTIME= option?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 20:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635143#M3083</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2020-03-26T20:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for Literature for Center of Gravity problem</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635144#M3084</link>
      <description>&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;Here you go.&amp;nbsp;&lt;/P&gt;&lt;P&gt;solve with nlp / ms feastol=1E-01 maxtime=600 timetype=real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 20:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Looking-for-Literature-for-Center-of-Gravity-problem/m-p/635144#M3084</guid>
      <dc:creator>Santha</dc:creator>
      <dc:date>2020-03-26T20:47:49Z</dc:date>
    </item>
  </channel>
</rss>

