public BayesInferenceApproxAdapter(IBayesSampleInference adaptee, int N)
     : this(adaptee)
 {
     this.N = N;
 }
 /// <summary>
 /// Return the BayesSampleInference implementation be be apated to the BayesInference API.
 /// </summary>
 /// <param name="adaptee">the BayesSampleInference implementation be be apated to the BayesInference API.</param>
 public void SetAdaptee(IBayesSampleInference adaptee)
 {
     this.adaptee = adaptee;
 }
 public BayesInferenceApproxAdapter(IBayesSampleInference adaptee)
 {
     this.adaptee = adaptee;
 }