3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 03:31:23 +00:00

adding comments

This commit is contained in:
nilsbecker 2018-06-06 19:22:01 +02:00
parent f7b50ef796
commit 3c464071f7
3 changed files with 25 additions and 18 deletions

View file

@ -42,9 +42,9 @@ namespace smt {
\brief Indicates whether the proof for membership in an equivalence class is already logged.
*/
enum logged_status {
NOT_LOGGED,
BEING_LOGGED,
LOGGED
NOT_LOGGED, //!< Proof is not logged or logged information is not up-to-date.
BEING_LOGGED, //!< We are currently in the process of logging all relevant information. This is used to prevent looping when logging congruence steps.
LOGGED //!< Proof is logged and logged information is still up-to-date.
};
/** \ brief Use sparse maps in SMT solver.