Skip to content

Commit f99a564

Browse files
committed
Some minor cleanup and documentation.
1 parent 7b8c765 commit f99a564

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

INSTALL

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ CVC4 to use abc configure with --with-abc and --with-abc-dir=PATH, where
139139
PATH corresponds to the install path of ABC. To run CVC4 using ABC use
140140
the --bitblast-aig command line argument.
141141
Please visit http://www.eecs.berkeley.edu/~alanmi/abc/ for more details
142-
on ABC.
142+
on ABC.
143143

144144
The GNU Readline library is optionally used to provide command
145145
editing, tab completion, and history functionality at the CVC prompt

NEWS

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ This file contains a summary of important user-visible changes.
33
Changes since 1.3
44
=================
55

6+
* Building with libc++ instead of libstdc++ (on Mac especially).
67
* The LFSC proof checker has been incorporated into CVC4 sources.
78
* By default, CVC4 builds in "production" mode (optimized, with fewer
89
internal checks on). The common alternative is a "debug" build, which

src/printer/smt2/smt2_printer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ static void toStream(std::ostream& out, const DatatypeDeclarationCommand* c) thr
10491049

10501050
const Datatype & d = i->getDatatype();
10511051

1052-
out << "(" << maybeQuoteSymbol(d.getName()) << " ";
1052+
out << "(" << maybeQuoteSymbol(d.getName()) << " ";
10531053
for(Datatype::const_iterator ctor = d.begin(), ctor_end = d.end();
10541054
ctor != ctor_end; ++ctor){
10551055
if( ctor!=d.begin() ) out << " ";

test/unit/Makefile.am

-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ UNIT_TESTS += \
5858
main/interactive_shell_black
5959
endif
6060

61-
# disabled/failing:
62-
# theory/theory_bv_white \
63-
#
64-
6561
export VERBOSE = 1
6662

6763
# Things that aren't tests but that tests rely on and need to

0 commit comments

Comments
 (0)