This was introduced 7 years ago in https://github.com/CVC4/CVC4/commit/
9098391fe334d829ec4101f190b8f1fa21c30752.
This impacted any case of integer div/mod of the form `(mod c t)` or `(div c t)` where c is a constant and `t` is not.
Fixes #3765.
Also improves `--dump=t-lemmas` trace to result in smt-lib compatible output, which was required for debugging this.
Polynomial rp = Polynomial::parsePolynomial(r);
Polynomial qp = Polynomial::parsePolynomial(q);
- Node abs_d = (n.isConstant()) ?
+ Node abs_d = (d.isConstant()) ?
d.getHead().getConstant().abs().getNode() : mkIntSkolem("abs");
Node eq = Comparison::mkComparison(EQUAL, n, d * qp + rp).getNode();
if(Dump.isOn("t-lemmas")) {
Node n = node;
- if (negated) {
+ if (!negated) {
n = node.negate();
}
Dump("t-lemmas") << CommentCommand("theory lemma: expect valid")
- << QueryCommand(n.toExpr());
+ << CheckSatCommand(n.toExpr());
}
// Share with other portfolio threads
regress1/quantifiers/issue3628.smt2
regress1/quantifiers/issue3664.smt2
regress1/quantifiers/issue3724-quant.smt2
+ regress1/quantifiers/issue3765.smt2
+ regress1/quantifiers/issue3765-quant-dd.smt2
regress1/quantifiers/issue993.smt2
regress1/quantifiers/javafe.ast.StmtVec.009.smt2
regress1/quantifiers/lra-vts-inf.smt2
--- /dev/null
+; COMMAND-LINE: --finite-model-find --no-check-models
+; EXPECT: sat
+
+(set-logic ALL)
+
+(declare-sort U 0)
+(declare-fun g (U) Int)
+(declare-sort V 0)
+(declare-fun f (V) Int)
+(assert (and
+(forall ((?i U)) (not (forall ((?z V)) (not (= (f ?z) (div (- 1) (g ?i))))) ))
+))
+
+(declare-fun k () U)
+(assert (= (g k) 22))
+
+
+(check-sat)
--- /dev/null
+; COMMAND-LINE: --fmf-fun --no-check-models\r
+; EXPECT: sat\r
+\r
+(set-info :smt-lib-version 2.5)\r
+(set-option :produce-models true)\r
+(set-logic ALL)\r
+(define-funs-rec (\r
+(f11((va9 Int))Int)\r
+(f3((v1f Int))Int)\r
+)\r
+( (f3 (ite (= 0 va9) (- 1) (div (- 1) va9)))\r
+ (- (ite (= 0 v1f) 0 (mod 0 v1f))) \r
+))\r
+(declare-fun v18d() Int)\r
+(assert (= 0 (f11 v18d)))\r
+(assert (= 22 v18d))\r
+(check-sat)\r