Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Aina Niemetz 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS 8 : : * in the top-level source directory and their institutional affiliations. 9 : : * All rights reserved. See the file COPYING in the top-level source 10 : : * directory for licensing information. 11 : : * **************************************************************************** 12 : : * 13 : : * Test for project issue #416. 14 : : */ 15 : : #include <cvc5/cvc5.h> 16 : : 17 : : using namespace cvc5; 18 : : 19 : 1 : int main(void) 20 : : { 21 : 2 : TermManager tm; 22 : 2 : Solver solver(tm); 23 : : 24 : 1 : solver.setOption("solve-bv-as-int", "sum"); 25 : 1 : solver.setOption("strings-exp", "true"); 26 : 2 : Sort s1 = tm.getStringSort(); 27 : 2 : Term t27 = tm.mkConst(s1, "_x50"); 28 : 2 : Term t333 = tm.mkRegexpAll(); 29 : 6 : Term t1243 = tm.mkTerm(Kind::STRING_REPLACE_RE_ALL, {t27, t333, t27}); 30 : 4 : Term t1291 = tm.mkTerm(Kind::EQUAL, {t1243, t27}); 31 : 1 : solver.assertFormula(t1291); 32 : 1 : solver.checkSat(); 33 : 1 : }