fix bug 22 (remove tracing from non-trace builds; remove all output
authorMorgan Deters <mdeters@gmail.com>
Mon, 22 Feb 2010 01:10:58 +0000 (01:10 +0000)
committerMorgan Deters <mdeters@gmail.com>
Mon, 22 Feb 2010 01:10:58 +0000 (01:10 +0000)
commit65fa7fd4d674e00624657255c24748e580ef50d6
tree1a5591fca4c3a9ab24d576c282f36607cb81a7f5
parent7697b5218118d71800318472a7423a5b42bee469
fix bug 22 (remove tracing from non-trace builds; remove all output
from muzzled builds)

add public-facing CVC4::Configuration class that gives CVC4's (static)
configuration (whether debugging is enabled, assertions, version
information, etc...)

add some whitebox tests for assertions, output classes, and new
CVC4::Configuration class

main driver now gets about() information from CVC4::Configuration.

configure.ac now more flexible at specifying major/minor/release
versions of CVC4

add --show-config option that dumps CVC4's static configuration

commented option processing strings in src/main/getopt.cpp

fixed some compilation problems for muzzled builds.

fixed some test code for non-assertion builds (where no assertions are expected)
17 files changed:
config.h.in
configure.ac
src/expr/expr.cpp
src/expr/node.cpp
src/main/Makefile.am
src/main/about.h [deleted file]
src/main/getopt.cpp
src/main/usage.h
src/util/Makefile.am
src/util/configuration.h [new file with mode: 0644]
src/util/output.cpp
src/util/output.h
test/unit/Makefile.am
test/unit/expr/node_black.h
test/unit/util/assert_white.h [new file with mode: 0644]
test/unit/util/configuration_white.h [new file with mode: 0644]
test/unit/util/output_white.h [new file with mode: 0644]