Description
May I have question why the variables
private final double[] weight;
private final List<T> distribution;
in MixtureMultivariateRealDistribution are private not only protected. I wanted to extend this class for some other distributions but after inheriting they are not accessible so difficult to handle. Even I cannot save the list anywhere else in child because in constructor and also in the getter it creates a new list with these components.