other
. Specifically, for each index i of the returned matrix m, m.elements[i] is true iff other.elements[i] is true or this.elements[i] is true and all elements of other
that are in the same row as i are false.
@return {m: BooleanMatrix | m.dimensions = this.dimensions &&all i: [0..m.capacity()) | m.elements[i] = other.elements[i] || this.elements[i] && !OR(other.elements[row(i)]) } where other.elements[row(i)] selects all elements of other
that are in the same row as i.
@throws NullPointerException - other = null
@throws IllegalArgumentException - other.dimensions != this.dimensions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|