You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A crab variable can contain a pointer (e.g., crab-llvm stores Value* in a crab variable and seahorn stores Expr). This is very useful when we want to map back crab results to the client. The boxes domain keeps a global map from variables to internal ids. If the destructor of the factory that created the pointer to Value or Expr is called before than the global map is released then it leaves the instance of the boxes domain in an inconsistent state.
Copied from original issue: caballa/crab#17
The text was updated successfully, but these errors were encountered:
From @caballa on June 25, 2017 21:40
A crab variable can contain a pointer (e.g., crab-llvm stores
Value*
in a crab variable and seahorn storesExpr
). This is very useful when we want to map back crab results to the client. The boxes domain keeps a global map from variables to internal ids. If the destructor of the factory that created the pointer toValue
orExpr
is called before than the global map is released then it leaves the instance of the boxes domain in an inconsistent state.Copied from original issue: caballa/crab#17
The text was updated successfully, but these errors were encountered: