RsBundle  Diff

Differences From Artifact [4ec9bb0e48]:

  • File src/mcf/mod.rs — part of check-in [3388440148] at 2016-09-28 06:15:44 on branch trunk — Add MMCF problem and solver. (user: fifr size: 814)

To Artifact [1cc1c3fd14]:

  • File src/mcf/mod.rs — part of check-in [07f16d6a13] at 2016-09-28 08:42:58 on branch trunk — Document some modules (user: fifr size: 862)

10
11
12
13
14
15
16


17
18
19
20
21
22
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see  <http://www.gnu.org/licenses/>
 */



mod solver;
pub use mcf::solver::Solver;

mod problem;
pub use mcf::problem::MMCFProblem;







>
>






10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see  <http://www.gnu.org/licenses/>
 */

//! Multi-commodity min-cost-flow subproblems.

mod solver;
pub use mcf::solver::Solver;

mod problem;
pub use mcf::problem::MMCFProblem;