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

Use nullptr.

This commit is contained in:
Bruce Mitchener 2018-02-12 14:05:55 +07:00
parent f01328c65f
commit 76eb7b9ede
625 changed files with 4639 additions and 4639 deletions

View file

@ -55,7 +55,7 @@ static void init_vars(sat::solver& s) {
static void check_coherence(sat::solver& s1, trail_t& t) {
params_ref p;
reslimit rlim;
sat::solver s2(p, rlim, 0);
sat::solver s2(p, rlim, nullptr);
init_vars(s2);
sat::literal_vector cls;
for (unsigned i = 0; i < t.size(); ++i) {
@ -81,7 +81,7 @@ void tst_sat_user_scope() {
trail_t trail;
params_ref p;
reslimit rlim;
sat::solver s(p, rlim, 0); // incremental solver
sat::solver s(p, rlim, nullptr); // incremental solver
init_vars(s);
while (true) {
for (unsigned i = 0; i < s_num_frames; ++i) {