Skip to content

Commit

Permalink
Merge pull request #69 from stanmart/feedback_nick_jakub
Browse files Browse the repository at this point in the history
Address feedback by Nick and Jakub
  • Loading branch information
miawlu authored May 7, 2024
2 parents 9f2267e + c91205a commit 7bc99da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions introduction/Coalitions.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ <h4> Accepting proposals </h4>
<h5> Try it yourself </h5>

<div>
<p>As an illustration, suppose you are <span style="color: #056fb7; font-weight: bold;">Player {{player_name}}</span><div class=""></div></p>
<p>
As an illustration, suppose you are <span style="color: #056fb7; font-weight: bold;">Player {{player_name}}.</span><div class=""></div>
</p>
<p>Please perform the following tasks:</p>
<ul>
<li id="task-submit-preferred">Submit a preferred proposal <span class="checkmark" style="visibility: hidden;"></span></li>
<li id="task-clear-preferred">Clear your preferred proposal <span class="checkmark" style="visibility: hidden;"></span></li>
</ul>
(The proposal IDs in this exercise refer to the proposals under "All Proposals" below, though it does not matter for this exercise what exactly the proposals are.)
</div>


Expand Down Expand Up @@ -87,7 +90,7 @@ <h4> Group formation </h4>
<ul>
<li>
<span style="color: #b70505; font-weight: bold;">
Only if <u> all players in a proposed group </u> agree on the same proposal is that proposal successful.
Only if <u> all players in a proposed group </u> agree on the same proposal ID is that proposal successful.
</span>
</li>
<li>
Expand Down
12 changes: 6 additions & 6 deletions survey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="If adding player X to a group never increases the budget, player X should get nothing. ",
label="If adding a certain player to a group never increases the budget, this player should get nothing.",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand All @@ -203,7 +203,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="If adding player X to a group always has the same impact on the budget as adding player Y, then player X and player Y should get the same payoff.",
label="If adding a certain player to a group always has the same impact on the budget as adding a certain other player, then both players should get the same payoff.",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand All @@ -216,7 +216,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="The payoffs at the end of a bargaining round should always add up to the biggest possible budget (100 points). ",
label="At the end of a bargaining round the biggest possible budget (100 points) should be paid out. ",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand All @@ -229,7 +229,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="Suppose in round 3 the group budgets are the sum of the group budgets in round 1 and 2 for any group. Then the payoff of player X should the be the sum of the payoff player X got in round 1 and 2.",
label="Suppose in round 3 the group budgets are the sum of the group budgets in round 1 and 2, for any group. Then the payoff of each player should the be the sum of the payoffs that that player got in round 1 and 2.",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand All @@ -242,7 +242,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="Suppose in round 2 each group budget is twice as large as in in round 1. Then the payoff of player X should be double the amount player X got in round 1.",
label="Suppose in round 2 each group budget is twice as large as in in round 1. Then the payoff of each player should be double the amount that player got in round 1.",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand All @@ -255,7 +255,7 @@ class Player(BasePlayer):
"Strongly Agree",
"No opinion",
],
label="If player X and player Y would have a budget of Z if they formed a group on their own, then the payoffs of player X and Y should be at least Z in total in the final accepted proposal.",
label="If two players would have a budget of B points if they formed a group on their own, then the payoff of both players should sum up to at least B points in total in the final accepted proposal.",
widget=widgets.RadioSelectHorizontal,
) # type: ignore

Expand Down

0 comments on commit 7bc99da

Please sign in to comment.