mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 03:31:23 +00:00
adding comments
This commit is contained in:
parent
f7b50ef796
commit
3c464071f7
3 changed files with 25 additions and 18 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue