class Iro::Position

def calc_rollp

# should_roll?
def calc_rollp
  self.next_reasons = []
  # self.next_symbol  = nil
  # self.next_delta   = nil
  out = strategy.send( "calc_rollp_#{strategy.kind}", self )
  self.rollp = out[0]
  self.next_reasons.push out[1]
  save
end