Skip to content

Commit

Permalink
Remove outdated references to TLS (cvc5#2245)
Browse files Browse the repository at this point in the history
  • Loading branch information
4tXJ7f authored and ajreynol committed Aug 2, 2018
1 parent 7b81518 commit 551f82a
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 23 deletions.
10 changes: 2 additions & 8 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,8 @@ CVC4 contains MiniSAT code by Niklas Een and Niklas Sorensson.
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.
1 change: 0 additions & 1 deletion contrib/depgraph
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ for path in $paths; do
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 ;;
Expand Down
4 changes: 0 additions & 4 deletions src/base/configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,6 @@ bool Configuration::isBuiltWithReadline() {
return IS_READLINE_BUILD;
}

bool Configuration::isBuiltWithTlsSupport() {
return USING_TLS;
}

bool Configuration::isBuiltWithLfsc() {
return IS_LFSC_BUILD;
}
Expand Down
2 changes: 0 additions & 2 deletions src/base/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,6 @@ class CVC4_PUBLIC Configuration {

static bool isBuiltWithReadline();

static bool isBuiltWithTlsSupport();

static bool isBuiltWithLfsc();

static bool isBuiltWithSymFPU();
Expand Down
6 changes: 0 additions & 6 deletions src/base/configuration_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,6 @@ namespace CVC4 {
# 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 */
1 change: 0 additions & 1 deletion src/options/options_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1666,7 +1666,6 @@ void OptionsHandler::showConfiguration(std::string option) {
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);
}
Expand Down
1 change: 0 additions & 1 deletion src/smt/smt_engine_scope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#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"

Expand Down

0 comments on commit 551f82a

Please sign in to comment.