summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-11-05Merging the google branch back into master.Tim King
2015-11-05Fixes some initialization and desctruction problems in quantifiers. Also ↵Tim King
restricts the desctructors of some components to not throw exceptions for pickier compiliers. Also changes some formatting of regression scripts.
2015-11-05This commit slightly generalizes the scripts for generating the _tags files.Tim King
2015-11-04Better combination of UF with cbqi, refactor quantifiers intialization.ajreynol
2015-11-03Fixing typo.Tim King
2015-11-03Adding a test to ensure the <build>/src/theory directory is available to the ↵Tim King
scripts in src/Makefile.am. This should fix a bug in building the debian packages.
2015-10-31Improvements to handling of mixed Int/Real quantifiers.ajreynol
2015-10-29Removes an extra dollar sign from src/options/mktagheaders. The extra dollar ↵Tim King
sign came in as a copy paste from a Makefile. This was not proper bash.
2015-10-27Adding the new mkdirs script to EXTRA_DIST. This should fix the failing ↵Tim King
nightly distcheck.
2015-10-26This commit fixes a bug related to a public header depending on a compiler ↵Tim King
flag. This resulted in user code seeing a different size for the SmtEngine class than what was compiled in the library. Proofs are enabled by default again. See http://cvc4.cs.nyu.edu/bugs/show_bug.cgi?id=688 for more information.
2015-10-26This commit removes using absolute paths in the generation of the .subdirs ↵Tim King
file. This also rearranges generation of the file so that one .subdirs file is generated once per Makefile.am file. This keeps using relative paths clean.
2015-10-26This commit moves the scripts for building the Debug_tags, Traces_tags, ↵Tim King
Debug_tags.h and Trace_tags.h out of options/Makefile.am and into seperate scripts. This also enables these files always being created.
2015-10-26This fixes a one definition rule violation for reduceDB_lt in Solver.cc in ↵Tim King
minisat and bvminisat. This also moves BVMinisat into CVC4. This also wrapped code in cpp files into the namespaces instead of having using namespace *.
2015-10-26Promote InstStrategyCbqi to quantifier module. Cleanup unused code.ajreynol
2015-10-26Extend counterexample-guided instantiation to extended theory of Int/Real, ↵ajreynol
mixed Int/Real. Bug fixes. Updates to quantifiers rewriter.
2015-10-24Fixes related to string contains.ajreynol
2015-10-23This removes a bug for reading data that has been popped from the back of a ↵Tim King
vector using a stale reference in the unconstrained simplifier.
2015-10-23Specify that the default initialization must always be done for ↵Tim King
CDOhash_map's data field. Without doing this, there exists a loop where uninitialized data can be read. This can happen if T is a type like bool. The trace goes: CDOhash_map::set(data) calls ContextObj::make_current(). Now (d_pScope->isCurrent()) is false. So ContextObj::make_current() calls ContextObj::update(). ContextObj::update() calls CDOhash_map::save(). CDOhash_map::save() calls return new(pCMM) CDOhash_map(*this) which calls the copy constructor which reads the data using d_data(other.d_data).
2015-10-23Switching Options::current() to return a pointer. This helps avoid undefined ↵Tim King
behavior due to dereferencing a null pointer in the future.
2015-10-23This patch slightly generalizes how the std::isfinite function in <cmath> is ↵Tim King
referred.
2015-10-22Enable counterexample-guided quantifier instantiation by default for ↵ajreynol
quantified logics that include at least one relevant theory. Enforce restriction on model building to last call. Update options, refactor. Update regressions.
2015-10-21Minor refactoring in strings related to length.ajreynol
2015-10-20Refactor strings, remove old cycle checks in normalize eqc.ajreynol
2015-10-20Clean up explanations involving string length. Add regression.ajreynol
2015-10-19Improve stratification of strings extended function reductions, add ↵ajreynol
regressions. Eliminate preprocess for regexp.
2015-10-19Improve regexp rewriter, simplify regexp preprocess, add basic trans closure ↵ajreynol
for string contains, refactoring.
2015-10-18Fix for no condense func values.ajreynol
2015-10-16Add option to interleave enumerative instantiation with other strategies.ajreynol
2015-10-16Throw error for recursively defined types involving Boolean.ajreynol
2015-10-16Fix for codatatype constant rewrite, add regression.ajreynol
2015-10-15Fix congruence check in strings, fixes bug 686.ajreynol
2015-10-15Change semantics of str.substr to allow endpoint out of bounds, and return ↵ajreynol
empty string for error conditions. Improve rewriter for str.substr.
2015-10-15Decompose string contains, minor refactoring.ajreynol
2015-10-13remove options infrastructure code which depended on undefined behaviorKshitij Bansal
appears to be source of crashes on mac
2015-10-11fix regression tests, support fallback mode for proofsKshitij Bansal
2015-10-11Fix strings preprocessing + incremental, fixes bug 682. Add initial ↵ajreynol
infrastructure for str.contains inferences.
2015-10-08Minor improvements to strings. Refactor rewriter. Enable fairness for ↵ajreynol
multiple sorts in UF finite model finding by default.
2015-10-07Disabled donePPSimpITE when unsat-cores are enabled (fixes bug648)Liana Hadarean
2015-10-07Minor improvements, add endpoint eq inference to strings.ajreynol
2015-10-06More improvements to strings rewriter for regexps, contains, indexof, ↵ajreynol
replace and others. Enable non-recursive flat form inferences in strings theory solver. Refactor extf reductions. Use non-constant length terms when checking length equality. Add option --strings-eager-len.
2015-10-02Fixes related to explanations for cycles, sym inferences. Minor fixes and ↵ajreynol
improvements.
2015-10-02Improvements to rewriter for regexp, contains, indexof. Improvements and ↵ajreynol
fixes for reduction of indexof. Fixes bugs 612 and 615. Fix bug in find+offset in strings util. Add regressions.
2015-10-01Evaluate extended operators on partially concrete arguments. More aggressive ↵ajreynol
rewriting. Bug fix explanations for inferences. Avoid spurious cardinality splits. Do not do disequality splits for non-disequal terms. Work towards non-recursive handling of flat forms.
2015-10-01More improvements to strings. More aggressive inference of constant eqc, ↵ajreynol
reductions based on congruence, precheck for cycles.
2015-09-30Refactor strings, bug fix inferences vs lemmas.ajreynol
2015-09-29Fix for fmf+incremental. Restrict cbqi to literals from ce body. Add ↵ajreynol
regressions.
2015-09-28Improve quantifiers engine wrt incremental presolve. Add regressions.ajreynol
2015-09-28Minor fixajreynol
2015-09-28Minor fixes to strings, add regressions.ajreynol
2015-09-28Fix bug for trivial extf inferences in strings. Improve caching for splits ↵ajreynol
in strings. Other improvements.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback