2589fda879687da922972b07a3c363f57b030991
[cvc5.git] / NEWS
1 This file contains a summary of important user-visible changes.
2
3 Changes since 1.4
4 =================
5
6 * Support for unsat cores.
7 * Simplification mode "incremental" no longer supported.
8
9 Changes since 1.3
10 =================
11
12 * CVC4 now supports libc++ in addition to libstdc++ (this especially
13 helps on Mac OS Mavericks).
14 * The LFSC proof checker has been incorporated into CVC4 sources.
15 * Theory of finite sets, handling the MLSS fragment (singleton, union,
16 intersection, set subtraction, membership and subset).
17 * By default, CVC4 builds in "production" mode (optimized, with fewer
18 internal checks on). The common alternative is a "debug" build, which
19 is much slower. By default, CVC4 builds with no GPL'ed dependences.
20 However, this is not the best-performing version; for that, you should
21 configure with "--enable-gpl --best", which links against GPL'ed
22 libraries that improve usability and performance. For details on
23 licensing and dependences, see the README file.
24 * Small API adjustments to Datatypes to even out the API and make it
25 function better in Java.
26 * Timed statistics are now properly updated even on process abort.
27 * Better automatic handling of output language setting when using CVC4
28 via API. Previously, the "automatic" language setting was sometimes
29 (though not always) defaulting to the internal "AST" language; it
30 should now (correctly) default to the same as the input language
31 (if the input language is supported as an output language), or the
32 "CVC4" native output language if no input language setting is applied.
33 * The SmtEngine cannot be safely copied with the copy constructor.
34 Previous versions inadvertently permitted clients to do this via the
35 API. This has been corrected, copy and assignment of the SmtEngine
36 is no longer permitted.
37
38 Changes since 1.2
39 =================
40
41 New features:
42 * SMT-LIB-compliant support for abs, to_real, to_int, is_int, which were
43 previously missing
44 * New bv2nat/int2bv operators for bitvector/integer inter-compatibility.
45 * Support in linear logics for /, div, and mod by constants (with the
46 --rewrite-divk command line option).
47 * Parsing support for TPTP's TFF and TFA formats.
48 * A new theory of strings: word (dis-)equations, length constraints,
49 regular expressions.
50 * Increased compliance to SMT-LIBv2, numerous bugs and usability issues
51 resolved.
52 * New :command-verbosity SMT option to silence success and error messages
53 on a per-command basis, and API changes to Command infrastructure to
54 support this.
55
56 Behavioral changes:
57 * It is no longer permitted to request model or proof generation if there's
58 been an intervening push/pop.
59 * User-defined symbols (define-funs) are no longer reported in the output
60 of get-model commands.
61 * Exit codes are now more standard for UNIX command-line tools. Exit code
62 zero means no error---but the result could be sat, unsat, or unknown---and
63 nonzero means error.
64
65 API changes:
66 * Expr::substitute() now capable of substituting operators (e.g.,
67 function symbols under an APPLY_UF)
68 * Numerous improvements to the Java language bindings
69
70 Changes since 1.1
71 =================
72
73 * Real arithmetic now has three simplex solvers for exact precision linear
74 arithmetic: the classical dual solver and two new solvers based on
75 techniques for minimizing the sum of infeasibilities. GLPK can now be used
76 as a heuristic backup to the exact precision solvers. GLPK must be enabled
77 at configure time. See --help for more information on enabling these solvers.
78 * added support for "bit0" and "bit1" bitvector constants in SMT-LIB v1.2
79 * support for theory "alternates": new ability to prototype new decision
80 procedures that are selectable at runtime
81 * various bugfixes
82
83 Changes since 1.0
84 =================
85
86 * bit-vector solver now has a specialized decision procedure for unsigned bit-
87 vector inequalities
88 * numerous important bug fixes, performance improvements, and usability
89 improvements
90 * support for multiline input in interactive mode
91 * Win32-building support via mingw
92 * SMT-LIB get-model output now is easier to machine-parse: contains (model...)
93 * user patterns for quantifier instantiation are now supported in the
94 SMT-LIBv1.2 parser
95 * --finite-model-find was incomplete when using --incremental, now fixed
96 * the E-matching procedure is slightly improved
97 * Boolean terms are now supported in datatypes
98 * tuple and record support have been added to the compatibility library
99 * driver verbosity change: for printing all commands as they're executed, you
100 now need verbosity level >= 3 (e.g., -vvv) instead of level 1 (-v). This
101 allows tracing the solver's activities (with -v and -vv) without having too
102 much output.
103 * to make CVC4 quieter in abnormal (e.g., "warning" conditions), you can
104 use -q. Previously, this would silence all output (including "sat" or
105 "unsat") as well. Now, single -q silences messages and warnings, and
106 double -qq silences all output (except on exception or signal).
107
108 -- Morgan Deters <mdeters@cs.nyu.edu> Wed, 02 Jul 2014 14:45:05 -0400