Ian Fiske

Results 42 comments of Ian Fiske

I have run into some issues where in some of my slides, `$$\sigma_{x + 1} = \frac{1}{2}$$` works, but in others I need to escape the underscore as in `$$\sigma\_{x...

Oh, I apologize for leaving `n, x, y, z` off of the example. I'm not sure about the correct way to do it, but it seems that perhaps instead of...

Heads up that I was hitting this issue, but had success using https://github.com/invenia/JLSO.jl instead.

I totally understand about difficulty debugging without an MWE. Just in case you can figure something out just from the debug print, here it is: https://gist.github.com/ianfiske/53161351f1d9fe24b843c22aab083951

There doesn't appear to be an Enzyme.API.print! function in my version. I did ``` Enzyme.API.printtype!(true) Enzyme.API.printall!(true) ``` And updated the gist at https://gist.github.com/ianfiske/53161351f1d9fe24b843c22aab083951

Actually, I messed around with this a bit and got a pretty simple MWE: ``` using ParameterHandling using Enzyme Enzyme.API.printtype!(true) Enzyme.API.printall!(true) function objective(x) (; a, b) = x sum(a.^2 .+...

Thank you for the quick response! That's good to know regarding the log level, though as you noted that's not my real issue. The parameters that I'm trying to pass...

Thank you for the explanation @odow ! This makes so much more sense now. It sounds like the solution is to find the name of the setting in Cbc, if...

I have also come across a similar problem where the "seconds" attribute appears to be ignored in the inner LP. I don't have an MWE yet.