Julien Schueller

Results 523 comments of Julien Schueller

I first thought on just hidding it from Python but after some thoughts I would even go all the way and remove it completely: the c++ developer need lots of...

looks I already tried that, but I dont recall why I dropped it: https://github.com/openturns/openturns/pull/2092

its not a serious problem, but does it pass at -O2 ? we dont usually use -O3 in our tests

the general solution is the following pattern: in parent class we declare an operator== and an "equals" method: ``` class DistributionImplementation { ... Bool operator ==(const DistributionImplementation & other) const;...

also see if the PDF can be improved: ``` import openturns as ot conditioningDist = ot.Normal(0.0, 1.0) g = ot.SymbolicFunction(['y'], ['y', '0.1+y^2']) conditionedDist = ot.Normal() finalDist = ot.BayesDistribution(conditionedDist, conditioningDist, g)...

cc @mbaudin47, I dunno if you write that doc maybe ?

I think there is a confusion here: - Anne thinks the epsilon means the normal regression noise - Michael wants to explicit the difference between the real model and the...

hello @adutfoy, do you think this will be ready for 1.22 ? or later ?

setLegendLocation would be too close to setLegendPosition I propose to keep setLegendCorner but add an optional argument to setLegendPosition bool outside=off, then the anchor could be automatically set to the...