I can explain to whatever depth is necessary, but the long story short is that my project uses Z3's optimizer to find the maximal solution to what is effectively a SAT problem with weights associated to the boolean variables. Separately to that, another part of my project effectively implements a rule-based saturation engine, which I've lately been considering rewriting using the fixedpoint solver. I thought I could consider the two parts of the problem separately, but it turns out that there is a chicken-and-egg issue where the rule engine requires the solution to the SAT instance in order for its input and output to be correct and meaningful, and that the SAT instance itself is derived from the output of the rule engine. Therefore, I thought I might try to combine Fixedpoint and Optimize. Is this possible? Does it even make sense?
Z3: combining optimization and fixedpoints
147 Views Asked by Syzygy At
0
There are 0 best solutions below
Related Questions in Z3
- Get the only solution based on given constraints using z3 theorem
- Z3 to solve a puzzle(8 blocks tiles) please?
- Taylor expansion trigonometric functions in Z3-Python
- How can I use built-in trigonometric funtions in Z3 Python?
- Obtain an interpretation of unbounded variables using Z3 in OCaml
- Z3-Solver (z3.z3types.Z3Exception: Z3 invalid substitution, expression pairs expected.)
- Efficient modular arithmetic in Z3
- Unknown when working sequence of type StringSort
- Retrieve the correct found objective values via the C-API
- How to measure size of formula in Z3?
- Z3 returns unknown with HORN logic if I use a specific operation
- Given my logical questions have options {True, False, Unknown}, Is is possible for me to use Z3 to solve it?
- How to use the Z3 Solver to solve a natural deduction problem
- Are there tools available to convert SMT-LIB files to DIMACS CNF?
- Do not assign concrete values to symbols
Related Questions in Z3-FIXEDPOINT
- Given my logical questions have options {True, False, Unknown}, Is is possible for me to use Z3 to solve it?
- z3: Horn clauses / Fixedpoints over inductive datatypes
- Python Z3 API Query : Can we get a partial model using the z3 python API when solver returns unkown status
- why z3 horn solver result is unknown and why this is the unknown reason
- What are the equivalent horn clauses to these clauses?
- Why does Z3 return Unknown for these horn clauses
- Z3: combining optimization and fixedpoints
- Horn clauses with multiplication in Z3
- Changing order of Z3 fixepoint queries changes the result
- Backtracking using push/pop operation on z3 fixedpoint solver
- Array as a parameter to a relation in z3 fixedpoint solver
- Can we use ite expression in Z3 fixed-point query
- "unknown sort" error in fixed point queries
- How to get multiple constraints in Z3 Fixedpoint?
- muZ3: Non-deterministic recursive call
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?