mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
more doc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d5316e017e
commit
13920c4772
6 changed files with 33 additions and 21 deletions
|
@ -1,21 +1,33 @@
|
|||
/*++
|
||||
Copyright (c) 2011 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
Module Name:
|
||||
|
||||
bit_blaster_tactic.h
|
||||
|
||||
Abstract:
|
||||
Author:
|
||||
|
||||
Apply bit-blasting to a given goal.
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo (leonardo) 2011-10-25
|
||||
|
||||
Notes:
|
||||
Leonardo (leonardo) 2011-10-25
|
||||
|
||||
Tactic Documentation:
|
||||
|
||||
## Tactic bit-blast
|
||||
|
||||
### Short Description
|
||||
|
||||
Apply bit-blasting to a given goal.
|
||||
|
||||
### Example
|
||||
|
||||
```z3
|
||||
(declare-const x (_ BitVec 8))
|
||||
(declare-const y (_ BitVec 8))
|
||||
(assert (bvule x y))
|
||||
(apply bit-blast)
|
||||
```
|
||||
|
||||
--*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "util/params.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue