/**
  * Create an empty SimpleRegression using the given distribution object to compute inference
  * statistics.
  *
  * @param t the distribution used to compute inference statistics.
  * @since 1.2
  */
 public SimpleRegression(TDistribution t) {
   super();
   setDistribution(t);
 }