<?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: Assigning individuals to the roles. in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930970#M4134</link>
    <description>&lt;P&gt;Here is sample code for a maximization problem where each researcher is eligible to review each paper:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ResearcherData;
   do researcher = 1 to 3;
      output;
   end;
run;

data PaperData;
   do paper = 1 to 400;
      output;
   end;
run;

data ScoreData;
   call streaminit(1);
   do researcher = 1 to 3;
      do paper = 1 to 400;
         score = rand('UNIFORM');
         output;
      end;
   end;
run;

proc optmodel;
   set RESEARCHERS;
   set PAPERS;
   num score {RESEARCHERS, PAPERS};

   read data ResearcherData into RESEARCHERS=[researcher];
   read data PaperData into PAPERS=[paper];
   read data ScoreData into [researcher paper] score;

   var X {RESEARCHERS, PAPERS} binary;
   max TotalScore = sum {r in RESEARCHERS, p in PAPERS} score[r,p]*X[r,p];
   con TwoReviewersPerPaper {p in PAPERS}:
      sum {r in RESEARCHERS} X[r,p] = 2;
   con EqualWorkload {r in RESEARCHERS}:
      floor(2*card(PAPERS)/card(RESEARCHERS)) &amp;lt;= sum {p in PAPERS} X[r,p] &amp;lt;= ceil(2*card(PAPERS)/card(RESEARCHERS));

   solve;

   create data SolutionData from [researcher paper]={r in RESEARCHERS, p in PAPERS: X[r,p].sol &amp;gt; 0.5} score;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 05 Jun 2024 15:55:54 GMT</pubDate>
    <dc:creator>RobPratt</dc:creator>
    <dc:date>2024-06-05T15:55:54Z</dc:date>
    <item>
      <title>Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930950#M4123</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have difficulty to formulate/program an assignment problem.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem can be described as follows:&lt;/P&gt;&lt;P&gt;Assume that we have total 3 researchers to review 400 papers.&lt;/P&gt;&lt;P&gt;Each paper must be reviewed by 2 different researchers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;How to assign those 3 researchers to review 400 papers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Can somebody please give me some ideas on how to get the problem formulated?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930950#M4123</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T15:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930951#M4124</link>
      <description>&lt;P&gt;Is the assignment done randomly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or is it supposed to be non-random, so if there are 800 reviews and 3 reviewers, each reviewer should be assigned to review either 266 or 267 papers?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930951#M4124</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T15:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930952#M4125</link>
      <description>&lt;P&gt;Sorry. forgot to add one constraint: each researcher should have equal workload.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930952#M4125</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T15:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930955#M4126</link>
      <description>&lt;P&gt;So if we call the reviewers A B and C, then each paper gets assigned 2 of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make a list the 400 papers, then the first one gets assigned to A and B, the second one gets assigned to A and C, the third one gets assigned B and C. Repeat for all subsequent groups of 3 papers.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930955#M4126</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T15:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930956#M4127</link>
      <description>&lt;P&gt;A few different ways.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is relatively easy to run and should be distributed evenly.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set sashelp.class;


array _ran(3) a b c; *a, b, c are the names of the reviewers;

do i=1 to 3;
    _ran(i) = ranuni(25);
end;

first_reviewer = vname(_ran(whichn(smallest(1, of _ran(*)), of _ran(*))));
second_reviewer = vname(_ran(whichn(smallest(2, of _ran(*)), of _ran(*))));


drop a b c i;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Another would be to cross join with the full list of reviewers and then use PROC SURVEYSELECT to select 2 names per paper, which would guarantee a random sample.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/23924"&gt;@t75wez1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have difficulty to formulate/program an assignment problem.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem can be described as follows:&lt;/P&gt;
&lt;P&gt;Assume that we have total 3 researchers to review 400 papers.&lt;/P&gt;
&lt;P&gt;Each paper must be reviewed by 2 different researchers.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;How to assign those 3 researchers to review 400 papers?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Can somebody please give me some ideas on how to get the problem formulated?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Thank you,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930956#M4127</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-06-05T15:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930957#M4128</link>
      <description>&lt;P&gt;Could you offer the SAS code to make more general?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:32:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930957#M4128</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T15:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930958#M4129</link>
      <description>&lt;P&gt;Are there researcher-paper scores that you want to maximize or minimize?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930958#M4129</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2024-06-05T15:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930960#M4130</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data fake_data;
    do paper=1 to 400;
        output;
    end;
run;

data assign;
    set fake_data;
    if mod(_n_,3)=1 then reviewers='A B';
    else if mod(_n_,3)=2 then reviewers='A C';
    else if mod(_n_,3)=0 then reviewers='B C';
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:36:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930960#M4130</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T15:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930961#M4131</link>
      <description>&lt;P&gt;I don't the&amp;nbsp;&lt;SPAN&gt;researcher-paper scores for the time being, but I can ask them.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:38:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930961#M4131</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T15:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930962#M4132</link>
      <description>&lt;P&gt;And are all researcher-paper pairs eligible to be assigned, or are there some incompatibilities that must be respected?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930962#M4132</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2024-06-05T15:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930967#M4133</link>
      <description>&lt;P&gt;I don't have the information for eligibility and&amp;nbsp;&lt;SPAN&gt;incompatibilities of those researchers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930967#M4133</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T15:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930970#M4134</link>
      <description>&lt;P&gt;Here is sample code for a maximization problem where each researcher is eligible to review each paper:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ResearcherData;
   do researcher = 1 to 3;
      output;
   end;
run;

data PaperData;
   do paper = 1 to 400;
      output;
   end;
run;

data ScoreData;
   call streaminit(1);
   do researcher = 1 to 3;
      do paper = 1 to 400;
         score = rand('UNIFORM');
         output;
      end;
   end;
run;

proc optmodel;
   set RESEARCHERS;
   set PAPERS;
   num score {RESEARCHERS, PAPERS};

   read data ResearcherData into RESEARCHERS=[researcher];
   read data PaperData into PAPERS=[paper];
   read data ScoreData into [researcher paper] score;

   var X {RESEARCHERS, PAPERS} binary;
   max TotalScore = sum {r in RESEARCHERS, p in PAPERS} score[r,p]*X[r,p];
   con TwoReviewersPerPaper {p in PAPERS}:
      sum {r in RESEARCHERS} X[r,p] = 2;
   con EqualWorkload {r in RESEARCHERS}:
      floor(2*card(PAPERS)/card(RESEARCHERS)) &amp;lt;= sum {p in PAPERS} X[r,p] &amp;lt;= ceil(2*card(PAPERS)/card(RESEARCHERS));

   solve;

   create data SolutionData from [researcher paper]={r in RESEARCHERS, p in PAPERS: X[r,p].sol &amp;gt; 0.5} score;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:55:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930970#M4134</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2024-06-05T15:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930971#M4135</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1636"&gt;@RobPratt&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what is the benefit of the PROC OPTMODEL solution compared to the solution I gave above?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:57:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930971#M4135</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T15:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930972#M4136</link>
      <description>&lt;P&gt;The PROC OPTMODEL code solves an optimization problem to maximize the total score rather than just satisfying the constraints.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 15:59:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930972#M4136</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2024-06-05T15:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930973#M4137</link>
      <description>&lt;P&gt;What is the "total score" in this problem?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 16:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930973#M4137</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T16:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930977#M4138</link>
      <description>&lt;P&gt;The total score is the sum of the researcher-paper scores when researcher r is assigned to paper p (that is, when the binary decision variable X[r,p] takes the value 1):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;max TotalScore = sum {r in RESEARCHERS, p in PAPERS} score[r,p]*X[r,p];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The input score[r,p] could represent the amount of familiarity researcher r has with the topic of paper p.&amp;nbsp; Such measures are typical in assignment problems.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 16:12:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930977#M4138</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2024-06-05T16:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930978#M4139</link>
      <description>&lt;P&gt;And the SURVEYSELECT method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set sashelp.class;


array _ran(3) a b c; *a, b, c are the names of the reviewers;

do i=1 to 3;
    _ran(i) = ranuni(25);
end;

first_reviewer = vname(_ran(whichn(smallest(1, of _ran(*)), of _ran(*))));
second_reviewer = vname(_ran(whichn(smallest(2, of _ran(*)), of _ran(*))));


drop a b c i;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Problem is formulated as choose 2 per paper, where you've created a data set with all three reviewers per paper.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 16:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930978#M4139</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-06-05T16:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930983#M4140</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;it was posted in OR/MS so an OR solution seems appropriate.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 16:55:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930983#M4140</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-06-05T16:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930987#M4141</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;it was posted in OR/MS so an OR solution seems appropriate.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I think that something like Occam's razor ought to be used here. Occam's razor adjusted for programming: The simplest code that meets the requirements is the winner. PROC OPTMODEL is fine if it is necessary, but I don't see any statement from the OP that requires a PROC OPTMODEL solution.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 17:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/930987#M4141</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-05T17:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning individuals to the roles.</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/931021#M4142</link>
      <description>&lt;P&gt;Hello Rob,&lt;/P&gt;&lt;P&gt;Could you demystify the constraint statement below?&lt;/P&gt;&lt;P&gt;What does the "card" mean here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;" con EqualWorkload {r in RESEARCHERS}:&lt;BR /&gt;floor(2*card(PAPERS)/card(RESEARCHERS)) &amp;lt;= sum {p in PAPERS} X[r,p] &amp;lt;= ceil(2*card(PAPERS)/card(RESEARCHERS)); "&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 19:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/Assigning-individuals-to-the-roles/m-p/931021#M4142</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-06-05T19:03:24Z</dc:date>
    </item>
  </channel>
</rss>

