| Crates.io | dryadsynth-bv |
| lib.rs | dryadsynth-bv |
| version | 0.1.3 |
| created_at | 2025-03-22 06:23:18.759318+00 |
| updated_at | 2025-04-04 16:29:17.599539+00 |
| description | DryadSynth solver for bit manipulating programs |
| homepage | https://github.com/purdue-cap/DryadSynth |
| repository | https://github.com/purdue-cap/DryadSynth |
| max_upload_size | |
| id | 1601575 |
| size | 5,083,728 |
The current DryadSynth is already embedded all the techniques mentioned in the paper Enhanced Enumeration of Techniques for Syntax-Guided Synthesis of Bit-Vector Manipulations. To further configure the arguments mentioned in the paper, A TOML file can be passed into DryadSynth using the following command:
DryadSynth [-B <config-file>] <sygus-if-file>
In src/meet-middle/config, there are a lot of commonly used configuration files.
Here is the default configuration file for PBE problems with explanation of each parameter:
random_example = 10 # How many additional random examples are generated from reference implementation
limited_ite = false # Limit ITE condition search size to 10000
ite_tree_limit = 30 # Limit the size of decition tree
chatgpt = true # Disable/Enable ChatGPT
smt_solver = "bitwuzla" # Using command bitwuzla as SMT-Solver. Require `bitwuzla` command installed
[expr_search]
sample = 64 # The number of sampling
dag_size = true # Enable Graph-Based Enumeration
filter = {
deductive_combine = true, # Enable/Disable deduction for AND and OR
deductive_reverse = true # Enable/Disable deduction for XOR and ADD
}