Remove links field in all toml files (#4201)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Mon, 6 Apr 2020 21:44:01 +0000 (16:44 -0500)
committerGitHub <noreply@github.com>
Mon, 6 Apr 2020 21:44:01 +0000 (16:44 -0500)
commit45e489e2d48e3edde15be2187e32893fc35d859b
tree6a6d267aefc48283a6c5de4b4f7b2f87abd23367
parent49c5a2aef84d1c17b4401eae9c60a92190b0b5a7
Remove links field in all toml files (#4201)

This includes:

All options pertaining to SMTEngine are now handled at the top of setDefaults.
smtlibStrict was deleted in favor of a script.
statsEveryQuery enables stats by modifying a public option function. This is a slight hack but this code will likely get refactored as well soon.
A few other changes:

Fix a bug in SMTEngine: defineFunction should finalize options.
Call setDefaults before initilizing the TheoryEngine and ProofManager. This is necessary so that the PROOF(...) macro works earlier during initialization.
The next step will be to remove the links infrastructure for the options infrastructure. This will enable further detangling of our options dependencies.
contrib/cvc4_strict_smtlib [new file with mode: 0644]
src/options/base_options.toml
src/options/bv_options.toml
src/options/options_public_functions.cpp
src/options/smt_options.toml
src/smt/set_defaults.cpp
src/smt/smt_engine.cpp