Fix dynamic array handling in solve...before (#7922)

This commit is contained in:
Kornel Uriasz
2026-07-15 10:48:54 -04:00
committed by GitHub
parent baf012cf6a
commit 232b2eb04c
5 changed files with 224 additions and 19 deletions
+9
View File
@@ -758,4 +758,13 @@ public:
bool next() { return VlRandomizer::next(m_rng); }
};
//======================================================================
//Helper method for dynamic array handling in SMT expressions
inline std::string vlToSolverHex(const IData& value) {
std::ostringstream oss;
oss << std::hex << std::setfill('0') << std::setw(8) << value;
return oss.str();
}
#endif // Guard