1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/******************************************************************************
* Top contributors (to current version):
* Aina Niemetz, Andrew Reynolds
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2025 by the authors listed in the file AUTHORS
* in the top-level source directory and their institutional affiliations.
* All rights reserved. See the file COPYING in the top-level source
* directory for licensing information.
* ****************************************************************************
*
* Test for project issue #378.
*/
#include <cvc5/cvc5.h>
#include <cassert>
using namespace cvc5;
int main(void)
{
TermManager tm;
Solver solver(tm);
DatatypeDecl dtdecl;
DatatypeConstructorDecl cdecl;
Sort s1 = tm.getBooleanSort();
dtdecl = tm.mkDatatypeDecl("_x0");
cdecl = tm.mkDatatypeConstructorDecl("_x6");
cdecl.addSelector("_x1", s1);
dtdecl.addConstructor(cdecl);
Sort s2 = tm.mkDatatypeSort(dtdecl);
dtdecl = tm.mkDatatypeDecl("_x36");
cdecl = tm.mkDatatypeConstructorDecl("_x42");
cdecl.addSelector("_x37", s1);
dtdecl.addConstructor(cdecl);
Sort s4 = tm.mkDatatypeSort(dtdecl);
Term t1 = tm.mkConst(s1, "_x53");
Term t4 = tm.mkConst(s4, "_x56");
Term t7 = tm.mkConst(s2, "_x58");
Sort sp = tm.mkParamSort("_x178");
dtdecl = tm.mkDatatypeDecl("_x176", {sp});
cdecl = tm.mkDatatypeConstructorDecl("_x184");
cdecl.addSelector("_x180", s2);
dtdecl.addConstructor(cdecl);
cdecl = tm.mkDatatypeConstructorDecl("_x186");
cdecl.addSelector("_x185", sp);
dtdecl.addConstructor(cdecl);
Sort s7 = tm.mkDatatypeSort(dtdecl);
Sort s9 = s7.instantiate({s2});
Term t1507 =
tm.mkTerm(Kind::APPLY_CONSTRUCTOR,
{s9.getDatatype().getConstructor("_x184").getTerm(), t7});
(void)tm.mkTerm(
Kind::APPLY_UPDATER,
{s9.getDatatype().getConstructor("_x186").getSelector("_x185").getTerm(),
t1507,
t7});
}
|