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
It is tempting to move to using a thread_local!(static CONTEXT: Option<z3::Context> = None) and some helper functions to have a scoped Context ... this would let us remove a bunch (all?) of the Context parameters to the various functions in the z3 crate.
This would help make the API look more like the Python or JS APIs, while still letting people have multiple contexts if they need them.
The text was updated successfully, but these errors were encountered:
It is tempting to move to using a
thread_local!(static CONTEXT: Option<z3::Context> = None)
and some helper functions to have a scoped Context ... this would let us remove a bunch (all?) of theContext
parameters to the various functions in thez3
crate.This would help make the API look more like the Python or JS APIs, while still letting people have multiple contexts if they need them.
The text was updated successfully, but these errors were encountered: