Antoine Prouvost

Results 116 comments of Antoine Prouvost

@ericniebler I'm not sure about what is the expected behaviour in the failing test. What is expected when converting a `span` to a `span`? Should it not be forbidden? What...

I'm currently thinking that I would actually like to have more sections (tutorial, poster, grants...), but this would start being too redundant and specific to my needs to merge back...

This is not about SCIP parallelism because Python would not care about C threads that do not run Python code. This is about parallelism of user code, such as solving...

I can send a PR in the future. Just wanted to open an issue to keep track of it in the meantime.

@CGraczyk, in case you are still interested in this feature, #505 is not a (full) fix for this.

@axelvonkamp, as you noticed, releasing the GIL in PySCIPOpt is not extremely hard, simply adding a number of `nogil` around (the GIL is already being re-aquired during Python callbacks). For...

> This could also go in the cookiecutter. I think we should avoid the cookiecutter as much as possible since it does not give an easy way for the kernels...

Hi @LeonaireHo , For the conda problem, could you try with: ```bash conda install mamba -n base -c conda-forge mamba install -c conda-forge ecole ``` For the second problem, that...

> That could apply as well to observation functions right Definitely the idea is also to remove code duplication. I like your ideas, removing the argument from the getter is...

Hi @Ljj199807 You could try `env.model.is_solved`, `env.model.stage`, or `env.model.as_pyscipopt().xxx` with the PyscipOpt method oof your choice.