inst/ALLD.R

//################################################################ Strategy File
//# ALLD returns the predicted behavior for a player who always defects

vector Pred_ALLD(int the_round, int[] arb, int[] arb_error, int[] coop, int[] coop_intent, int[] coop_err){
 vector[2] pred; //# arb pred and coop pred
  pred[1] = 0;
  pred[2] = 0;
return pred;
}
ctross/PrisonR documentation built on July 1, 2024, 11:23 p.m.