Antoine Prouvost

Results 116 comments of Antoine Prouvost

Thank you for bringing this up. Is this a SCIP parameter? What is the behaviour of SCIP if we change that value? Would it ignore CTRL-C and keep on optimizing?...

Perhaps we could edit `scip::call` with the following behaviour: ```cpp // ... check return code same as before if ( SCIPinterrupted(scip) ){ throw KeyboardInteruptedException{}; } ``` And register that exception...

Hi @sleepymalc, If you want to define you own instance generators, you can do so, even without Ecole (say for PyscipOpt). Our instance generators are just functions that creates a...

Any plan for this? I think it would be useful to be able to pass an `xexpression` (or atl least a tensor) to `xt::keep` and `xt::drop`.

@JohanMabille , I haven't been able to figure out this build error: ``` .../include/xtensor/xstrided_view_base.hpp:316:11: error: rvalue reference to type 'xt::xstrided_view_base::storage_type' (aka 'xt::uvector') cannot bind to lvalue of type 'xt::uvector' ```...

> I cannot install Ecole with 0.8.x version via conda-forge. What error message do you get? If the environment is unsatisfiable,I recommend trying the equivalent [mamba](https://mamba.readthedocs.io/en/latest/index.html) installer. I also recommend...

@piscesvivian > install ecole offline. This cannot work. The goal of conda is to install Ecole dependencies, if you just get that single file it's guaranteed to fail. From my...

@conda-forge/staged-recipes do you know what is missing to get the go executable in the correct location? I tried a few different variations but could not figure where it went (trying...

@dbast thanks! I was missing some internal path to the executable. This is ready for review.