Given the equation system Ax=b, where:
- Every field in A is either 0 or 1, except for the fields of the diagonal which are -1
- A is square and not singular
- x is always > 0 and b is always < 0
Is the fastest way to solve it still using LU factorization as described in this post: Most efficient way to solve a system of linear equations?
Or is there some more efficient way thanks to the "binary" properties of A?