-
Notifications
You must be signed in to change notification settings - Fork 8
Description
@xgandibleux I can't reply to your emails for some reason. Did your IT add me to a block list?

My reply
Replied in line. It seems like you have things under control.
If in doubt, open a pull request earlier rather than later. Even if the code is broken/not working etc. Then I can point you in the right direction via GitHub.
Oscar
Is it by activating the dev environment that all the packages of my
installation are available, except for MOA, which is replaced by the
version I will have edited?
Yes, exactly. If you run ] status
you should see that it points to ~/.julia/dev/MultiObjectiveAlgorithms
You can get back to the official version with ] free MultiObjectiveAlgorithms
I usually use Revise, so then my workflow is:
open Julia
julia> using Revise
julia> import MultiObjectiveAlgorithms as MOA
julia> using HiGHS, JuMP
julia> model = Model(...)
julia> ...build example etc...
julia> optimize!(model)
...realize there is a bug
...edit code...
julia> optimize!(model)
Perhaps this is trivial for you, but I prefer to ask you before to crash
everything or to make wrong command sent to the MOA repo.
It is impossible for you to do anything to hurt the upstream MOA repo. You don't have any write permission, so you can only hurt your fork, and we can easily fix that.