mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Implement uninterpreted functions and use it for blockhash()
This commit is contained in:
@@ -37,6 +37,11 @@ SymbolicVariable::SymbolicVariable(
|
||||
{
|
||||
}
|
||||
|
||||
string SymbolicVariable::currentName() const
|
||||
{
|
||||
return uniqueSymbol(m_ssa->index());
|
||||
}
|
||||
|
||||
string SymbolicVariable::uniqueSymbol(unsigned _index) const
|
||||
{
|
||||
return m_uniqueName + "_" + to_string(_index);
|
||||
|
||||
Reference in New Issue
Block a user