Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * Test for project issue #611 11 : : * 12 : : */ 13 : : #include <cvc5/cvc5.h> 14 : : 15 : : using namespace cvc5; 16 : 1 : int main(void) 17 : : { 18 : 1 : TermManager tm; 19 : 1 : Solver solver(tm); 20 : 1 : solver.setOption("incremental", "false"); 21 : 1 : solver.setOption("solve-bv-as-int", "bitwise"); 22 : : // should throw an exception due to the usage of an illegal value 23 : : // (0) for the option 24 : : try 25 : : { 26 : 5 : solver.setOption("bvand-integer-granularity", "0"); 27 : : } 28 [ - + ]: 1 : catch (cvc5::CVC5ApiOptionException& e) 29 : : { 30 : 1 : } 31 : 1 : return 0; 32 : 1 : }