The problem pertains to JuMP, an optimization package for Julia. I realize this problem is likely specific to my machine; however, I have tried many of the obvious remedies with no luck.
When I run a JuMP model using optimize!(), I cannot interrupt the execution using ctrl+C. When I press ctrl+C, the REPL completely ignores the input. This is true regardless of solver. I have experienced this with Gurobi, Cbc, and GLPK. While I'm uncertain about Cbc and GLPK, I know that support for graceful interruption is supposed to be implemented in Gurobi.jl (https://github.com/jump-dev/Gurobi.jl/pull/349). Meanwhile, other julia code can be interrupted with ctrl+C using the same REPL (and even the same .jl file).
What I can try to fix this?