Commit 9728d3f8 authored by Taylor R Campbell's avatar Taylor R Campbell Committed by George Kadianakis
Browse files

Fix wrong bases.

parent d82a8a7f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -551,7 +551,7 @@ circpad_distribution_sample(circpad_distribution_t dist)
      {
      /* param1 is Mu, param2 is sigma. */
        const struct logistic my_logistic = {
          .base = LOGISTIC(my_uniform),
          .base = LOGISTIC(my_logistic),
          .mu = dist.param1,
          .sigma = dist.param2,
        };
@@ -590,7 +590,7 @@ circpad_distribution_sample(circpad_distribution_t dist)
      {
        /* param1 is sigma, param2 is xi, no more params for mu so we use 0 */
        const struct genpareto my_genpareto = {
          .base = GENPARETO(my_weibull),
          .base = GENPARETO(my_genpareto),
          .mu = 0,
          .sigma = dist.param1,
          .xi = dist.param2,