QLNet.Lattice.initialize C# (CSharp) Метод

initialize() публичный абстрактный Метод

public abstract initialize ( QLNet.DiscretizedAsset a, double time ) : void
a QLNet.DiscretizedAsset
time double
Результат void
        public abstract void initialize(DiscretizedAsset a, double time);

Usage Example

Пример #1
0
 /*! \name High-level interface
  *
  *  Users of discretized assets should use these methods in
  *  order to initialize, evolve and take the present value of
  *  the assets.  They call the corresponding methods in the
  *  Lattice interface, to which we refer for
  *  documentation.
  *
  *  @{
  */
 public void initialize(Lattice method, double t)
 {
     method_ = method;
     method_.initialize(this, t);
 }
All Usage Examples Of QLNet.Lattice::initialize