Let's say I have a system of $n$ nonlinear boolean equations and $n$ unknowns like:
$ \begin{cases} (x_i \oplus \neg x_j) \wedge x_n &=1\\ &\vdots \\ (x_k \wedge x_i \oplus x_j) \wedge \neg x_l &=0 \end{cases} $
where $i,k,l \leq n$.
What is the most efficient method to solve this kind of systems when $n > 200$ ?
Extended comment:
Your example written as netlist for bc2cnf:
Shorter form without auxiliary variables:
MiniZinc model: