mirror of
https://github.com/Z3Prover/z3
synced 2026-04-02 01:49:03 +00:00
* Initial plan * Update z3 codebase to use std::string_view (except z3++.h) - Updated params.cpp/h to use string_view internally for parameter descriptions - Updated trace.h/cpp to accept string_view for trace tag functions - Updated hash.h/cpp to use string_view for string_hash function - Updated all callers of string_hash to use string_view - Properly handled nullptr to empty string_view conversions - All tests passing Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Add missing string_view includes to headers 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>
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cached_var_subst.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2009-01-23.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "ast/rewriter/var_subst.h"
|
|
#include "util/map.h"
|
|
|
|
class cached_var_subst {
|
|
struct key {
|
|
quantifier * m_qa;
|
|
unsigned m_num_bindings;
|
|
expr * m_bindings[0];
|
|
};
|
|
struct key_hash_proc {
|
|
unsigned operator()(key * k) const {
|
|
return string_hash(std::string_view(reinterpret_cast<char const *>(k->m_bindings), sizeof(expr *) * k->m_num_bindings), k->m_qa->get_id());
|
|
}
|
|
};
|
|
struct key_eq_proc {
|
|
bool operator()(key * k1, key * k2) const;
|
|
};
|
|
typedef map<key *, expr *, key_hash_proc, key_eq_proc> instances;
|
|
ast_manager& m;
|
|
var_subst m_proc;
|
|
expr_ref_vector m_refs;
|
|
instances m_instances;
|
|
region m_region;
|
|
ptr_vector<key> m_new_keys; // mapping from num_bindings -> next key
|
|
key* m_key { nullptr };
|
|
public:
|
|
cached_var_subst(ast_manager & m);
|
|
expr** operator()(quantifier * qa, unsigned num_bindings);
|
|
expr_ref operator()();
|
|
void reset();
|
|
};
|
|
|
|
|