Ejemplo n.º 1
0
 public static int PfrLp(this PlayerHistory ph)
 {
     if (!ph.IsLatePosition())
     {
         return(0);
     }
     return(ph.HandActions.PreflopHandActions().RealActions().Any(ha => ha.IsRaiseAction()) ? 1 : 0);
 }
Ejemplo n.º 2
0
 public static int VpipLp(this PlayerHistory ph)
 {
     if (!ph.IsLatePosition())
     {
         return(0);
     }
     return(ph.HandActions.PreflopHandActions().NotBlinds().Any(ha =>
                                                                ha.IsCallAction() || ha.IsRaiseAction()) ? 1 : 0);
 }