Differences From Artifact [5d3829ae1b]:
- File src/solver.rs — part of check-in [8fb77f4bd8] at 2019-07-30 09:19:24 on branch async-separation — Copy `sync` to `asyn` module as a basis (user: fifr size: 858) [more...]
To Artifact [7be3579b36]:
- File src/solver.rs — part of check-in [43abfc4c67] at 2019-11-22 09:24:06 on branch result-sender — problem: make `ResultSender` a trait with implementation `ChannelSender` (user: fifr size: 873) [more...]
| ︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 | + + |
pub mod sync;
pub use sync::{DefaultSolver, NoBundleSolver};
pub mod asyn;
mod masterprocess;
mod channels;
|