We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command-line option -obfuscate should be handle differently the values of pre-defined benchmark attributes, e.g.
-obfuscate
(set-logic QF_UFLRA) (set-info :source | Benchmark generated by veriT |) (set-info :smt-lib-version 2.0) (set-info :status unsat) (declare-fun x () Real) (declare-fun f (Real) Real) (assert (=> (> x 0) (< (f x) 0))) (assert (=> (< x 0) (> (f x) 0))) (assert (= (f x) 0)) (assert (not (= x 0))) (check-sat) (exit)
yields
<pre> (set-logic QF_UFLRA) (set-info :source S0) (set-info :smt-lib-version 2.0) (set-info :status S1) (declare-fun S2 () Real) (declare-fun S3 (Real) Real) (assert (=> (> S2 0) (< (S3 S2) 0))) (assert (=> (< S2 0) (> (S3 S2) 0))) (assert (= (S3 S2) 0)) (assert (not (= S2 0))) (check-sat) (exit)
For the :source attribute, it should be either:
For the :status attribute, it should be either:
The text was updated successfully, but these errors were encountered:
rbonichon
No branches or pull requests
Command-line option
-obfuscate
should be handle differently the values of pre-defined benchmark attributes, e.g.yields
For the :source attribute, it should be either:
For the :status attribute, it should be either:
The text was updated successfully, but these errors were encountered: