mirror of
https://github.com/Z3Prover/z3
synced 2026-02-22 00:07:36 +00:00
Migrate codebase to std::string_view (except z3++.h) (#8266)
* 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>
This commit is contained in:
parent
260db09e25
commit
671faf8f1c
20 changed files with 85 additions and 70 deletions
|
|
@ -40,7 +40,7 @@ namespace sat {
|
|||
|
||||
struct hash {
|
||||
unsigned operator()(literal_vector const& v) const {
|
||||
return string_hash((char const*)v.begin(), v.size()*sizeof(literal), 3);
|
||||
return string_hash(std::string_view((char const*)v.begin(), v.size()*sizeof(literal)), 3);
|
||||
}
|
||||
};
|
||||
struct eq {
|
||||
|
|
|
|||
|
|
@ -711,7 +711,7 @@ namespace bv {
|
|||
hash(solver& s) :s(s) {}
|
||||
bool operator()(theory_var v) const {
|
||||
literal_vector const& a = s.m_bits[v];
|
||||
return string_hash(reinterpret_cast<char*>(a.data()), a.size() * sizeof(sat::literal), 3);
|
||||
return string_hash(std::string_view(reinterpret_cast<char*>(a.data()), a.size() * sizeof(sat::literal)), 3);
|
||||
}
|
||||
};
|
||||
eq eq_proc(*this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue