An open API service indexing awesome lists of open source software.

https://github.com/lordmathis/prolog-bipartite-matching

Bipartite Matching through Network Flow
https://github.com/lordmathis/prolog-bipartite-matching

bipartite graph matching prolog

Last synced: 5 months ago
JSON representation

Bipartite Matching through Network Flow

Awesome Lists containing this project

README

          

# Bipartite Matching
This was a school assignment for Non-procedural Programming course. It's written in Prolog and implements Dinic's max-flow algorithm.

## Usage

```
parovanie(+N, -Matching)
```
where N is a number of bipartite graph from `testData.pl`

or

```
parovanie(+A, +B, +E, -Matching)
```
where the input graph is G=(V,E) and V=A∪B