Sam Buercklin

Results 27 comments of Sam Buercklin

Is there any update on this? The commits above for `vintageous_on_post_write_ex_cmd` aren't on `master`

This still seems to be an issue on `2.10.8`. To reproduce Ian's `seconds` behavior, I have two MPS files, one which constrains variables to be integers and one which lets...

Thanks @tkralphs, that makes sense. Is there a list of attributes or options that are forwarded to Clp? We're still encountering an issue where dualTolerance and primalTolerance do not seem...

@tkralphs, I appreciate your help. This was cropping up in the Julia interface and we've been trying to reduce it to a MWE for a while. We finally got it...

`Cbc.jl` maintainers believe it's an upstream issue, so I'll point to the C-interface calls from Julia to try to help pin it down. The `.mps` file + CLI example in...

Thanks for the tip on the scaling; I will make that change in our codebase. We can get by with no bounds checking for deployment, so this isn't a showstopping...

I just ran into this issue as well, also in `nvim`. I'm not working on an open source project so I don't feel comfortable sharing the full log, but I...

I just found a minimal-ish reproduction using a snippet and autoformatting in `nvim`. I have the following snippet I use with `luasnip`, and the `.JuliaFormatter.toml` is just blue style: ```...

Stopgap solution: if you add type annotations to your `@implement` line, even trivial ones like `Any`, the checker works ```julia julia> @implement Prefix.Is{Foo} by f(_, x::Any) julia> @check Bar ✅...

That's an expected failure because the implemented method does not satisfy the interface.