-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rust Integration: Full Rust Integration #3
base: lowtime-rust
Are you sure you want to change the base?
Conversation
(just noting down some things for myself) Cost Model Issues
|
This PR follows #1 . (And replaces #2 )
#1 : Sets up pyo3 integration and replaces calls to nx.maximum_flow with a Rust implementation.
In particular, #1 constructs and destructs a Rust-side PhillipsDessouky object every iteration, and therefore incurs interop overhead at every iteration.
This PR seeks to replace all (or most of) solver.py such that all the iterations can be performed in Rust without having to go back to Python.
TODO: more information