I'm using the Debug package. I want to set a break point and then step into
another external package (in this case Mocha), I tried something like this:
*using Mochausing Debug#...set up a lot of Mocha stuff ...#@debug (()->
begin println("break point!") @bp solve(solver,net)end)()*
It does indeed stop at the @bp:
* 142 println("break point!") --> 143 @bp 144
solve(solver, net)debug:143> sat
/home/phil/devel/WASP_TD/algorithm_dev/processing/depth_engine/src/learn_grad_whole.jl:144
143 @bp --> 144 solve(solver, net) 145 end)()debug:144> s*but
at that point it doesn't step into the solve function (defined in Mocha
package). Is there any way to do that?