<?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: Synthetic data in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717433#M3301</link>
    <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Sun, 07 Feb 2021 18:51:23 GMT</pubDate>
    <dc:creator>Visiting</dc:creator>
    <dc:date>2021-02-07T18:51:23Z</dc:date>
    <item>
      <title>Creating Synthetic Data with SAS/OR, encountered problem.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717431#M3292</link>
      <description>&lt;P&gt;I am interested in "Creating Synthetic Data with SAS/OR", it was posted at SAS support community:&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sas.com/content/operations/2017/05/17/creating-synthetic-data-sasor/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://blogs.sas.com/content/operations/2017/05/17/creating-synthetic-data-sasor/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The method involved in a macro including 3 inner macros, when ran the macro to create synthetic data, a error message came up from the macro for IP step portion, here is the log:&lt;/P&gt;&lt;PRE&gt;229  *IP Step;
230  %macro IPSTEP(OUTPUTDATA, MOMENTORDER, NUMOBS, MINNUMIPCANDS, MILPMAXTIME,
231   RELOBJGAP);
232   num numSynthObs init &amp;amp;NUMOBS;
233   if (numSynthObs = 0) then numSynthObs = nObs;
234   num momRange {mi in MOM_IDX_SET} = momUb[mi] - momLb[mi];
235   var Assigned {IPCANDS[1]} binary;
236   var ScaledEta {MOM_IDX_SET} &amp;gt;= 0;
237   var MaxError &amp;gt;= 0;
238   minimize IpObj = MaxError;
239   con MaxCon {mi in MOM_IDX_SET}:
240   MaxError &amp;gt;= ScaledEta[mi];
241   con UpperIP {mi in MOM_IDX_SET}:
242   (1/numSynthObs) *
243   sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob] -
244   momRange[mi]*ScaledEta[mi] &amp;lt;= momUb[mi];
245   con LowerIP {mi in MOM_IDX_SET}:
246   (1/numSynthObs) *
247   sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob] +
248   momRange[mi]*ScaledEta[mi] &amp;gt;= momLb[mi];
249   con NumAssigned:
250   sum {ob in IPCANDS[1]} Assigned[ob] = numSynthObs;
251   /* Set an initial solution, then solve */
252   for {i in 1..numSynthObs} Assigned[i] = 1;
253   for {mi in MOM_IDX_SET} ScaledEta[mi] = if momRange[mi] &amp;lt;= 0 then 0
254   else max(((1/numSynthObs) *
255   sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob]
256   - momUb[mi]) / momRange[mi], momLb[mi] - (1/numSynthObs) *
257   sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob])/momRange[mi],0); /**/
258   MaxError = max {mi in MOM_IDX_SET: momRange[mi] &amp;gt; 0} ScaledEta[mi];
259   solve with MILP / maxtime=&amp;amp;MILPMAXTIME relobjgap=&amp;amp;RELOBJGAP
260   heuristics=3 primalin;
261   /* Save selected observations to data set */
262   set FINALOBS = 1..numSynthObs;
263   num finalObsVal {FINALOBS,VARS};
264   num obIdx init 0;
265   for {ob in IPCANDS[1]: Assigned[ob] &amp;gt; 0.5} do;
266   obIdx = obIdx + 1;
267   for {v in VARS}
268   finalObsVal[obIdx,v] = ipObVal[1,ob,varName2varIdx[v]];
269   end;
270   create data &amp;amp;OUTPUTDATA(drop=tmpvar) from [tmpvar]=FINALOBS
271   {j in VARS} &amp;lt;col(j)=finalObsVal[tmpvar,j]&amp;gt;;
272  %mend IPSTEP;

273  %GENDATA(INPUTDATA=OriginalData, METADATA=Metadata, NUMOBS=100,
274   MOMENTORDER=2, MILPMAXTIME=60, RANDSEED=100);
NOTE: Writing HTML Body file: sashtml.htm
NOTE: There were 9 observations read from the data set WORK.METADATA.
NOTE: There were 5039 observations read from the data set WORK.ORIGINALDATA.
Number of IP step candidate observations: 209
NOTE: Line generated by the invoked macro "IPSTEP".
6    ,mi]*Assigned[ob])/momRange[mi],0);
                                    -
                                    22
                                    200
ERROR 22-322: Syntax error, expecting one of the following: ;, !, !!, &amp;amp;, *, **, +, -, .., /, &amp;lt;, &amp;lt;=,
              &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, BY, CROSS, DIFF, ELSE, IN, INTER, NOT, OR, SYMDIFF, TO, UNION,
              WITHIN, ^, ^=, |, ||, ~, ~=.

ERROR 200-322: The symbol is not recognized and will be ignored.

NOTE: Problem generation will use 4 threads.&lt;/PRE&gt;&lt;P&gt;I have posted this question to "Programming", here is the link for your reference:&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Synthetic-data/m-p/717429#M221871" target="_self"&gt;https://communities.sas.com/t5/SAS-Programming/Synthetic-data/m-p/717429#M221871&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate it very much if anyone can help fix the issue. Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 21:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717431#M3292</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-09T21:42:06Z</dc:date>
    </item>
    <item>
      <title>Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717411#M3294</link>
      <description>&lt;P&gt;I am reading "Creating Synthetic Data with SAS/OR" from SAS support here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sas.com/content/operations/2017/05/17/creating-synthetic-data-sasor/" target="_blank"&gt;https://blogs.sas.com/content/operations/2017/05/17/creating-synthetic-data-sasor/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A paper including more detail can be found here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings17/1224-2017.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings17/1224-2017.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There are 4 macros for the entire process (including 3 inner macros).&lt;/P&gt;&lt;P&gt;When I run the macro to create synthetic data, a error message came up for the IP step portion, it says:&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, !, !!, &amp;amp;, *, **, +, -, .., /, &amp;lt;, &amp;lt;=,&lt;BR /&gt;&amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, BY, CROSS, DIFF, ELSE, IN, INTER, NOT, OR, SYMDIFF, TO, UNION,&lt;BR /&gt;WITHIN, ^, ^=, |, ||, ~, ~=.&lt;/P&gt;&lt;P&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the portion where error message came from (syntax issue at the last row):&lt;/P&gt;&lt;P&gt;for {i in 1..numSynthObs} Assigned[i] = 1;&lt;BR /&gt;for {mi in MOM_IDX_SET} ScaledEta[mi] = if momRange[mi] &amp;lt;= 0 then 0&lt;BR /&gt;else max(((1/numSynthObs) *&lt;BR /&gt;sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob]&lt;BR /&gt;- momUb[mi]) / momRange[mi], momLb[mi] - (1/numSynthObs) *&lt;BR /&gt;sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob])/momRange[mi],0);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;macro for IP step was attached.&lt;/P&gt;&lt;P&gt;Is anyone familiar with synthetic data generation and can help fix the issue? Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 16:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717411#M3294</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T16:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717416#M3295</link>
      <description>&lt;P&gt;Many of us (including me) will not download Microsoft Office (or any other) attachments, as they can be a security threat.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please do not show us portions of the log detached from the actual code used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please include the SAS log in the reply. Please show us the log of the relevant section of the log, with nothing chopped out. That relevant section of the log should show the &lt;FONT color="#FF0000"&gt;code&lt;/FONT&gt;, the &lt;FONT color="#FF0000"&gt;NOTEs WARNINGs&lt;/FONT&gt; and &lt;FONT color="#FF0000"&gt;ERRORs&lt;/FONT&gt;, in the sequence that it appears in the log. Please post the log by clicking on the &amp;lt;/&amp;gt; icon and pasting the log as text into the window that appears, this will preserve the formatting of the log and make it easier for everyone to read and understand. If you don't preserve the format of the LOG in this way, I usually don't bother reading the log, and ask again for the proper format.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 16:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717416#M3295</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-02-07T16:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717422#M3296</link>
      <description>&lt;P&gt;Here is the log with error message, thank you!&lt;/P&gt;&lt;PRE&gt;272  %mend IPSTEP;

273  %GENDATA(INPUTDATA=OriginalData, METADATA=Metadata, NUMOBS=100,
274   MOMENTORDER=2, MILPMAXTIME=60, RANDSEED=100);
NOTE: Writing HTML Body file: sashtml.htm
NOTE: There were 9 observations read from the data set WORK.METADATA.
NOTE: There were 5039 observations read from the data set WORK.ORIGINALDATA.
Number of IP step candidate observations: 209
NOTE: Line generated by the invoked macro "IPSTEP".
6    ,mi]*Assigned[ob])/momRange[mi],0);
                                    -
                                    22
                                    200
ERROR 22-322: Syntax error, expecting one of the following: ;, !, !!, &amp;amp;, *, **, +, -, .., /, &amp;lt;, &amp;lt;=,
              &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, BY, CROSS, DIFF, ELSE, IN, INTER, NOT, OR, SYMDIFF, TO, UNION,
              WITHIN, ^, ^=, |, ||, ~, ~=.

ERROR 200-322: The symbol is not recognized and will be ignored.

NOTE: Problem generation will use 4 threads.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 20:58:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717422#M3296</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T20:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717427#M3297</link>
      <description>&lt;P&gt;This is the equivalent of a "clerical error".&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a look at the GENDATA macro declaration, especially its parameterization:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro GENDATA(INPUTDATA, METADATA, OUTPUTDATA=SyntheticData,MOMENTORDER=3, NUMOBS=0
, MINNUMIPCANDS=0, LPBATCHSIZE=10, LPGAP=1E-3,NUMCOFORTHREADS=1, MILPMAXTIME=600, RELOBJGAP=1E-4
, ALPHA=0.95,RANDSEED=0 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first two arguments are positional.&amp;nbsp; They must be specified in the order declared, &lt;EM&gt;&lt;STRONG&gt;and they must be specified as values only&lt;/STRONG&gt;&lt;/EM&gt;.&amp;nbsp; All the other parameters are of the "name=value" category, which can be specified in any order, and must be specified as "name=value" pairs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But your call to %GENDATA is&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%GENDATA(INPUTDATA=OriginalData, METADATA=Metadata, NUMOBS=100,MOMENTORDER=2, MILPMAXTIME=60, RANDSEED=100);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;while it should be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%GENDATA(OriginalData,Metadata, NUMOBS=100,MOMENTORDER=2, MILPMAXTIME=60, RANDSEED=100);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So one or both of the symbols INPUTDATA or METADATA were not passed to the macro - causing the message your reported.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 17:46:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717427#M3297</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-02-07T17:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717428#M3298</link>
      <description>&lt;P&gt;Thank you for your response! but change the first two arguments to position value, the error message still there.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 18:04:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717428#M3298</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T18:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717429#M3299</link>
      <description>You can post your question to : &lt;BR /&gt;Mathematical Optimization, Discrete-Event Simulation and OR&lt;BR /&gt;below the&lt;BR /&gt;Analytics header&lt;BR /&gt;Good chance that the author of the blog / paper will read your question.</description>
      <pubDate>Sun, 07 Feb 2021 18:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717429#M3299</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-02-07T18:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717430#M3300</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/107944"&gt;@Visiting&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you (and the SASGF paper) have an unbalanced parenthesis in the second argument of the MAX function where the error occurs (highlighted in red below):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;max(((1/numSynthObs) *
sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob]
- momUb[mi]) / momRange[mi], &lt;FONT size="5" color="#99CC00"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/FONT&gt;momLb[mi] - (1/numSynthObs) *
sum {ob in IPCANDS[1]} ipObMoms[1,ob,mi]*Assigned[ob]&lt;FONT size="5"&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;/momRange[mi],0)&lt;/PRE&gt;
&lt;P&gt;I guess that the missing opening parenthesis should be where I inserted the green one above. But I can't test it because SAS/OR (sadly) isn't included in my SAS license. Can you try to reproduce the results of the example using &lt;FONT face="courier new,courier"&gt;sashelp.heart&lt;/FONT&gt; in the paper after inserting that parenthesis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 18:35:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717430#M3300</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-07T18:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717433#M3301</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 18:51:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717433#M3301</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T18:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717436#M3302</link>
      <description>&lt;P&gt;Yes, there is a&amp;nbsp;&lt;SPAN&gt;unbalanced parenthesis, added a&amp;nbsp;parenthesis, error disappeared and it works. but I don't quite understand the calculation, hope the modification meet owner's original design. Thank you!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 18:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717436#M3302</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T18:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717437#M3303</link>
      <description>I've moved the original post to join with the more recent post in the Optimization forum.</description>
      <pubDate>Sun, 07 Feb 2021 19:02:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717437#M3303</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-02-07T19:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717447#M3304</link>
      <description>&lt;P&gt;Hello, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/107944"&gt;@Visiting&lt;/a&gt; , next time, as I requested, could you just provide "the &lt;FONT color="#FF0000"&gt;relevant&lt;/FONT&gt; section" of the log and not hundreds of lines before and after the error. This will result in you getting better and faster answers. Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 20:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717447#M3304</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-02-07T20:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic data</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717448#M3305</link>
      <description>&lt;P&gt;ok, it is edited. Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2021 21:06:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Creating-Synthetic-Data-with-SAS-OR-encountered-problem/m-p/717448#M3305</guid>
      <dc:creator>Visiting</dc:creator>
      <dc:date>2021-02-07T21:06:33Z</dc:date>
    </item>
  </channel>
</rss>

