Beispiel #1
0
 /// <summary>Initializes a new instance of the <see cref="Algorithm"/> class.
 /// </summary>
 /// <param name="gaussHermiteIntegrator">The <see cref="GaussHermiteIntegrator"/> object which serves as factory for the current object.</param>
 internal Algorithm(GaussHermiteIntegrator gaussHermiteIntegrator)
 {
     m_IntegratorFactory = gaussHermiteIntegrator;
     WeightFunction      = WeightFunction.Create(x => Math.Exp(-x * x));
 }