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
{{ message }}
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
Rust's lazy statics potentially have the opposite problem: deferring construction of an object until after a path split - which requires every path to repeat the effort of creating the object for itself. Perhaps the initialize method would help with this?
Lazy construction will work better with concolic execution because it defers path splitting to the point where a value is accessed.
This cannot be done for types like Option
But it can possibly be done for abstract Types like BTreeMap - possibly depending mutability?
The text was updated successfully, but these errors were encountered: