Ole Kröger
Ole Kröger
Can you provide the logs using the Brackets Developer Tools?
I've did: ``` Pkg.add(pkgs, io = devnull) testmode ? Pkg.develop("Genie", io = devnull) : Pkg.add(name="Genie", version="4") testmode ? Pkg.develop("Inflector", io = devnull) : Pkg.add(name="Inflector") ``` inside `install_app_dependencies` and ``` project_toml...
I think if there are sets where broadcasting is not reasonable we should have at least a way to allow broadcasting for when it is useful i.e by having an...
I used the example of integer sets like `@variable(m, x in IntegerSet([1,3,5]))` which had this problem. How about using `@variable(m, x, Integers([1,3,5])` instead? This works after adding: ``` function JuMP.build_variable(_error::Function,...
Currently not available in JuMP https://discourse.julialang.org/t/setting-dual-initial-point-for-warm-start/6828 Maybe adding in https://github.com/JuliaOpt/Ipopt.jl
I've tried fixing variables in the root node by using if `x < 0.8` and x binary then `x = 0` this helps for some blending problems but is actually...
I think the question is whether we always allow "almost solved" or whether it makes sense to only allow "locally solved". If the latter one might want to run the...
@asavasci can you give an example of the part that is not working? I used release-0.3 of Juniper, Alpine v0.1.10, JuMP v0.18.6, Ipopt v0.6.1 and Cbc v0.6.6 and ``` #...
Might be reasonable if the gap to the global optimal seems to be huge, right? Otherwise if the gap is 0 or small enough to the best known solution which...
Yes I think an option to customize it in any sense is quite reasonable for Juniper. Definitely restarting in infeasible nodes is reasonable and maybe for special cases where you...