Daniel Henderson

Results 16 comments of Daniel Henderson

The generalized Rosebrock function appears to differ from CUTEst by more than an offset of 1.0, as mentioned in the comments of [genrose.jl](https://github.com/JuliaSmoothOptimizers/OptimizationProblems.jl/blob/main/src/PureJuMP/genrose.jl). My translation of Princeton's AMPL genrose.mod is...

>To be sure I understand you, the difference is the final sum over `(x[i] - 1.0)^2`, which runs in this package from 1:N-1 and in AMPL from 2:N? Or am...

> Good. It would appear that this package has it correctly (by the article in [#37 (comment)](https://github.com/JuliaSmoothOptimizers/OptimizationProblems.jl/issues/37#issuecomment-541971088)) and that the Princeton AMPL needs to be corrected? No, that is not...

I reproduced the error as expected when declaring `proxy_settings` as: ```python proxy_settings = ProxySettings( server="http://localhost:8080", username=None, password=None ) # results in a dict with these items: # dict_items([('server', 'http://localhost:8080'), ('username',...

@cla-bot check

@mxschmitt why was this reopened and the commit reverted?

Okay, if this isn't an actionable item this issue should address the stop method [documentation](https://playwright.dev/python/docs/api/class-playwright) so that it is correct.

I don't think this should be closed. I can reproduce the error. Whenever there is a timeout error it appears that the event loop is closing, resulting in an Invalid...

I am digging into this issue some more to try and figure out if there is a difference between `None` and `False`. It appears that `chromium_sandbox` will be passed to...

Using `None` that way is fine, but the parameter type hints should be either `Union[SomeType, None]`, `Optional[SomeType]`, or `SomeType | None` (preferred, but may cause some issues in Python 3.9)