The CVC4 parser incorporates some code from ANTLR3, by Jim Idle, Temporal
Wave LLC.
-CVC4 contains the doxygen.m4 autoconf module by Oren Ben-Kiki.
-
-CVC4 contains the pkg.m4 autoconf module by Scott James Remnant.
-
-CVC4 contains the ax_tls.m4 autoconf module by Alan Woodland and Diego Elio
-Petteno`.
-
-CVC4 contains the boost.m4 autoconf module by Benoit Sigoure.
+CVC4 contains various autoconf modules in the config directory. Please refer to
+the individual files for more information on the authors.
CVC4 maintainer versions contain the script autogen.sh by Christopher Sean
Morrison, and copyright U.S. Army Research Laboratory.
if [ -n "$target" -a "$target" != "$package" ]; then continue; fi
for inc in $incs; do
case "$inc" in
- base/tls.h) inc=base/tls.h.in ;;
expr/expr.h) inc=expr/expr_template.h ;;
expr/expr_manager.h) inc=expr/expr_manager_template.h ;;
expr/kind.h) inc=expr/kind_template.h ;;
return IS_READLINE_BUILD;
}
-bool Configuration::isBuiltWithTlsSupport() {
- return USING_TLS;
-}
-
bool Configuration::isBuiltWithLfsc() {
return IS_LFSC_BUILD;
}
static bool isBuiltWithReadline();
- static bool isBuiltWithTlsSupport();
-
static bool isBuiltWithLfsc();
static bool isBuiltWithSymFPU();
# define IS_GPL_BUILD false
#endif /* CVC4_GPL_DEPS */
-#ifdef TLS
-# define USING_TLS true
-#else /* TLS */
-# define USING_TLS false
-#endif /* TLS */
-
}/* CVC4 namespace */
#endif /* __CVC4__CONFIGURATION_PRIVATE_H */
print_config_cond("lfsc", Configuration::isBuiltWithLfsc());
print_config_cond("readline", Configuration::isBuiltWithReadline());
print_config_cond("symfpu", Configuration::isBuiltWithSymFPU());
- print_config_cond("tls", Configuration::isBuiltWithTlsSupport());
exit(0);
}
#include "base/configuration_private.h"
#include "base/cvc4_assert.h"
#include "base/output.h"
-#include "base/tls.h"
#include "proof/proof.h"
#include "smt/smt_engine.h"