Remove "NodeValue width" output
[cvc5.git] / NEWS
1 This file contains a summary of important user-visible changes.
2
3 Changes since 1.3
4 =================
5
6 * none yet
7
8 Changes since 1.2
9 =================
10
11 New features:
12 * SMT-LIB-compliant support for abs, to_real, to_int, is_int, which were
13 previously missing
14 * New bv2nat/int2bv operators for bitvector/integer inter-compatibility.
15 * Support in linear logics for /, div, and mod by constants (with the
16 --rewrite-divk command line option).
17 * Parsing support for TPTP's TFF and TFA formats.
18 * A new theory of strings: word (dis-)equations, length constraints,
19 regular expressions.
20 * Increased compliance to SMT-LIBv2, numerous bugs and usability issues
21 resolved.
22 * New :command-verbosity SMT option to silence success and error messages
23 on a per-command basis, and API changes to Command infrastructure to
24 support this.
25
26 Behavioral changes:
27 * It is no longer permitted to request model or proof generation if there's
28 been an intervening push/pop.
29 * User-defined symbols (define-funs) are no longer reported in the output
30 of get-model commands.
31 * Exit codes are now more standard for UNIX command-line tools. Exit code
32 zero means no error---but the result could be sat, unsat, or unknown---and
33 nonzero means error.
34
35 API changes:
36 * Expr::substitute() now capable of substituting operators (e.g.,
37 function symbols under an APPLY_UF)
38 * Numerous improvements to the Java language bindings
39
40 Changes since 1.1
41 =================
42
43 * Real arithmetic now has three simplex solvers for exact precision linear
44 arithmetic: the classical dual solver and two new solvers based on
45 techniques for minimizing the sum of infeasibilities. GLPK can now be used
46 as a heuristic backup to the exact precision solvers. GLPK must be enabled
47 at configure time. See --help for more information on enabling these solvers.
48 * added support for "bit0" and "bit1" bitvector constants in SMT-LIB v1.2
49 * support for theory "alternates": new ability to prototype new decision
50 procedures that are selectable at runtime
51 * various bugfixes
52
53 Changes since 1.0
54 =================
55
56 * bit-vector solver now has a specialized decision procedure for unsigned bit-
57 vector inequalities
58 * numerous important bug fixes, performance improvements, and usability
59 improvements
60 * support for multiline input in interactive mode
61 * Win32-building support via mingw
62 * SMT-LIB get-model output now is easier to machine-parse: contains (model...)
63 * user patterns for quantifier instantiation are now supported in the
64 SMT-LIBv1.2 parser
65 * --finite-model-find was incomplete when using --incremental, now fixed
66 * the E-matching procedure is slightly improved
67 * Boolean terms are now supported in datatypes
68 * tuple and record support have been added to the compatibility library
69 * driver verbosity change: for printing all commands as they're executed, you
70 now need verbosity level >= 3 (e.g., -vvv) instead of level 1 (-v). This
71 allows tracing the solver's activities (with -v and -vv) without having too
72 much output.
73 * to make CVC4 quieter in abnormal (e.g., "warning" conditions), you can
74 use -q. Previously, this would silence all output (including "sat" or
75 "unsat") as well. Now, single -q silences messages and warnings, and
76 double -qq silences all output (except on exception or signal).
77
78 -- Morgan Deters <mdeters@cs.nyu.edu> Thu, 05 Dec 2013 14:22:26 -0500