From 2958e98eff88ce14aefcdeee3c6ec579fcc2bb1d Mon Sep 17 00:00:00 2001 From: Haniel Barbosa Date: Fri, 8 Jan 2021 13:38:24 -0300 Subject: [proof-new] Implementing getProof in the API and SMT engine (#5751) A proof is represented as a string in GetProofCommand. The string is generated by the custom ways in which the SMT engine may choose to print the proof, based on proof-format-mode (to be added in subsequent commits). --- src/api/cvc4cpp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/api/cvc4cpp.cpp') diff --git a/src/api/cvc4cpp.cpp b/src/api/cvc4cpp.cpp index 49974d30d..621e3c1c0 100644 --- a/src/api/cvc4cpp.cpp +++ b/src/api/cvc4cpp.cpp @@ -2473,7 +2473,7 @@ Term DatatypeConstructor::getSpecializedConstructorTerm(Sort retSort) const << "Cannot get specialized constructor type for non-datatype type " << retSort; CVC4_API_SOLVER_TRY_CATCH_BEGIN; - + NodeManager* nm = d_solver->getNodeManager(); Node ret = nm->mkNode(kind::APPLY_TYPE_ASCRIPTION, -- cgit v1.2.3