public Date nextCouponDate(Date settlement)
 {
     if (settlement == null)
     {
         settlement = settlementDate();
     }
     return(CashFlows.nextCouponDate(cashflows_, false, settlement));
 }