modernart/scoring.mzn

38 lines
1.2 KiB
MiniZinc
Raw Permalink Normal View History

2020-06-11 10:26:20 +00:00
% Score a player gets in each given round
array[Rounds,Players] of var int: RoundScore;
% Final score of a player
array[Players] of var 0..500: Score;
2020-06-11 10:26:20 +00:00
% For Cumulative Scoring
2020-06-10 19:17:54 +00:00
% Score = ranking_score + award_score if an award was given this round
constraint forall(r in Rounds, a in Artists) (
total_score_per_round_per_artist[r,a] =
2020-06-11 10:26:20 +00:00
ranking_score_per_artist_per_round[r,a] + award_bonus_per_round_per_artist[r,a] +
if r=Round1 then
0
else
total_score_per_round_per_artist[enum_prev(Rounds, r),a]
endif
2020-06-10 19:17:54 +00:00
);
% This is same as total_score but force set to zero if the artist is not ranked
% This is what each player gets for each card they play
array[Rounds,Artists] of var 0..15: ArtistScore;
constraint forall(r in Rounds, a in Artists) (
ArtistScore[r,a] = if IsArtistRanked[r,a] then total_score_per_round_per_artist[r,a] else 0 endif
);
2020-06-10 19:17:54 +00:00
% Calculate total score per player
2020-06-10 19:17:54 +00:00
% 1. Per Round
constraint forall(r in Rounds, p in Players) (
RoundScore[r,p] = sum(a in Artists) (
visible_count_per_round_per_artist_per_player[r,p,a] * ArtistScore[r,a]
2020-06-10 19:17:54 +00:00
)
);
% 2. For the whole game
constraint forall(p in Players) (
Score[p] = sum(r in Rounds) (RoundScore[r,p])
2020-06-10 19:17:54 +00:00
);