public static Tuple <decimal, decimal> Match(Strategem a, Strategem b)
        {
            Choice A = a.GetChoice();
            Choice B = b.GetChoice();

            return(Match(A, B));
        }
 public Pop(Strategem s)
 {
     strat = s;
 }