You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
798 B

2 months ago
  1. The main idea of eager encoding is that the input formula is translated into a
  2. propositional formula with all relevant theory-specific information encoded into
  3. the formula.
  4. \begin{enumerate}[label=(\Roman*)]
  5. \item Replace any unique $\Theory$-atom in the original formula $\varphi$ with a fresh propositional variable to get a propositional formula $\hat{\varphi}$. \label{item:varphi_prop}
  6. \item Generate a propositional formula $\varphi_{cons}$ that constrains the values of the introduced
  7. propositional variables to preserve the information of the theory. \label{item:varphi_cons}
  8. \item Invoke a SAT solver on the propositional formula $\varphi_{prop} \coloneqq \hat{\varphi} \land \varphi_{cons}$
  9. that corresponds to an equisatisfiable propositional formula to $\varphi$.
  10. \end{enumerate}