Julien Schueller
Julien Schueller
I just copy-pasted the wine code, is that allowed ? https://github.com/wine-mirror/wine/blob/master/dlls/kernel32/file.c#L2912 Also I did not test it, but I was puzzled to see some tests already enabled for this function....
for integer problems, the documentation is unclear about how integer and continuous components must be distinguished: https://esa.github.io/pagmo2/docs/cpp/problem.html#_CPPv4NK5pagmo7problem7get_nixEv I figured out from the pygmo doc that integers must be tucked at...
when some points of the initial population are outside the bounds and the objective tend to make it go outside, gaco can hang: ``` #include #include #include using namespace pagmo;...
it seems cmaes (and xnes) does not care about the bounds of the problem as the final population ends up way outside eventhough the initial population is inside the bounds:...
This typo "algortihm" is found in several classes, eg https://github.com/esa/pagmo2/blob/master/src/algorithms/nsga2.cpp#L120
with gcc 12.1.0 and CMAKE_CXX_FLAGS="-Wall -DNDEBUG" spectra issues a -Wuse-after-free warning: ``` [ 75%] Building CXX object test/CMakeFiles/GenEigs.dir/GenEigs.cpp.o In file included from /usr/include/eigen3/Eigen/Core:166, from /home/schueller/projects/spectra/test/GenEigs.cpp:1: In function 'void Eigen::internal::aligned_free(void*)', inlined...
When the normalization factor is too high (ie when the truncation interval contains a very low probability) and when the lower bound is far (PhiANorm_=1) computeScalarQuantile is not well conditioned:...
the LinearModelStepwiseAlgorithm X,Y arguments are not consecutive as advertised in the doc (https://openturns.github.io/openturns/latest/user_manual/response_surface/_generated/openturns.LinearModelStepwiseAlgorithm.html?highlight=linearmodelstepwisealgorithm) maybe its better to put the basis argument after, for consistency with eg kriging ? ``` LinearModelStepwiseAlgorithm(const...
reflect in the api that metamodels are built on data, not from functions, following yesterdays meeting: - Deprecate FunctionalChaos(Function, ...) ctors, FunctionalChaosResult.getComposedModel, MetaModelResult.getModel - Add sample ctors, accessors to MetaModelResult...