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
let var = std::env::var("Z3_PYTHON_LIB").unwrap_or_else(|_| "/Users/maroed/RustroverProjects/jingle/jingle_python/.venv/lib/python3.13/site-packages/z3/lib/".to_string());
4
+
// Get the directory where Python's Z3 library is located
5
+
let z3_python_lib = std::path::Path::new(&var);
6
+
7
+
// Set the environment variable for Rust to use the same library
0 commit comments