In the context of something like ```python import highspy as hs h = hs.Highs() h.readModel("some_model.mps") h.run() sol = getSolution() ``` doing ```python sol.row_dual.clear() ``` has no effect while ```python sol.row_dual = [] ``` works. This may also relate to the following discussion. https://github.com/ERGO-Code/HiGHS/discussions/2234#discussioncomment-13938920
In the context of something like
doing
has no effect while
works.
This may also relate to the following discussion.
#2234 (reply in thread)