From 996de9116150fb7214b3b9a56995e2492d3e5668 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Fri, 23 Aug 2019 10:44:29 -0500 Subject: [PATCH] Fix argument in nonlinear extension. (#3216) --- src/theory/arith/nonlinear_extension.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theory/arith/nonlinear_extension.cpp b/src/theory/arith/nonlinear_extension.cpp index 1f6e1388a..f067fda47 100644 --- a/src/theory/arith/nonlinear_extension.cpp +++ b/src/theory/arith/nonlinear_extension.cpp @@ -2003,7 +2003,7 @@ int NonlinearExtension::checkLastCall(const std::vector& assertions, for (const Node& ac : a) { Node r = - d_containing.getValuation().getModel()->getRepresentative(a[0]); + d_containing.getValuation().getModel()->getRepresentative(ac); repList.push_back(r); } Node aa = argTrie[ak].add(a, repList); -- 2.30.2