3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-02 23:36:17 +00:00

Expose timestamp method in sls_context (#8347)

* Initial plan

* Expose timestamp method in sls_context

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
Copilot 2026-01-26 11:27:27 -08:00 committed by GitHub
parent 4a29326eaa
commit 0a68837ef2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 0 deletions

View file

@ -37,6 +37,7 @@ namespace bv {
void force_restart() override {}
std::ostream& display(std::ostream& out) override { return out; }
reslimit& rlimit() override { return m_limit; }
unsigned timestamp(sat::bool_var v) override { return 0; }
};
class sls_test {