How can I fix the warning:
WARNING: Original variable <x> not released when freeing SCIP problem <my_solver>.
which is spammed once per x.
Option 1: Disable output.
Ref: https://www.scipopt.org/doc/html/PARAMETERS.php Verblevel=0 disables stdout, but not errors / warnings. How can I tell SCIP to be quiet?
Option 2: Fix alleged memory leak.
This happens even though I am apparently freeing the problem, variables, constraints, and expressions correctly. I can verify this by attempting to free them another time, and watching the program explode.
This answer: http://listserv.zib.de/pipermail/scip/2020-December/004161.html implies this happens when using transform operations, which I am not doing.
I've also verified that there are no memory leaks using valgrind, though it claims there is some memory "still reachable", that memory does not grow no matter how many problems I set up and solve.