I have the following binary matrix: \begin{pmatrix} 1& 1& 1& 0 \\ 0& 1& 1& 1\\ 1& 0& 1& 1\\ 1& 1& 0& 1\\ \end{pmatrix}
Definition: Signing a matrix means means changing some $1$s to $-1$s.
Question. Is there a signing of the matrix such that it becomes totally unimodular over $\Bbb R$?
For example $$ \left[ \begin {array}{cccc} 1&1&1&0\\ 0&-1&-1&1 \\ -1&0&-1&-1\\ -1&-1&0&1 \end {array} \right] $$ (and many others)
EDIT: For the new question, the answer is no. There are only $2^{12}$ possibilities, and it's easy to write a program to check all of them.