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