Differences From Artifact [b4051a484d]:
- File src/solver.rs — part of check-in [d5eed55bb2] at 2019-07-30 08:01:24 on branch restructure — Rearrange master problem module (user: fifr size: 843) [more...]
To 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...]
| ︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 |
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
//! The basic solver implementation.
pub mod sync;
pub use sync::{DefaultSolver, NoBundleSolver};
mod masterprocess;
| > > | 15 16 17 18 19 20 21 22 23 24 25 |
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
//! The basic solver implementation.
pub mod sync;
pub use sync::{DefaultSolver, NoBundleSolver};
pub mod asyn;
mod masterprocess;
|