v1.0.0
MonteCarloMeasurements v1.0.0
Breaking changes
- All functions that were defined on scalars and used to reduce particles to a scalar, e.g.,
mean, maximum,, stdnow behave as ifParticlesare scalars, i.e.,mean(p::Particles) = p. These function have been replaced by new functions with a prefixp, e.g.,pmean. - particles are no longer iterable other than as a scalar.
length(p)now returns 1 instead of the number of particles.
Closed issues:
- mean([1±1, 2±1]) should give a scalar (#104)
- Type stable constructors for
Particles(#112) - Surprising behavior of append!(..) (#113)
Merged pull requests:
- fix minor typo issues (#110) (@SimonTreillou)