-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlicense.txt
executable file
·40 lines (35 loc) · 1.66 KB
/
license.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
#########################################################
# #
# IBFSGraph - Software for solving #
# Maximum s-t Flow / Minimum s-t Cut #
# using the IBFS algorithm #
# #
# http://www.cs.tau.ac.il/~sagihed/ibfs/ #
# #
# Haim Kaplan ([email protected]) #
# Sagi Hed ([email protected]) #
# #
#########################################################
This software implements the IBFS (Incremental Breadth First Search) maximum flow algorithm from
"Faster and More Dynamic Maximum Flow
by Incremental Breadth-First Search"
Andrew V. Goldberg, Sagi Hed, Haim Kaplan, Pushmeet Kohli,
Robert E. Tarjan, and Renato F. Werneck
In Proceedings of the 23rd European conference on Algorithms, ESA'15
2015
and from
"Maximum flows by incremental breadth-first search"
Andrew V. Goldberg, Sagi Hed, Haim Kaplan, Robert E. Tarjan, and Renato F. Werneck.
In Proceedings of the 19th European conference on Algorithms, ESA'11, pages 457-468.
ISBN 978-3-642-23718-8
2011
Copyright Haim Kaplan ([email protected]) and Sagi Hed ([email protected])
###########
# LICENSE #
###########
This software can be used for research purposes only.
If you use this software for research purposes, you should cite the aforementioned papers
in any resulting publication and appropriately credit it.
If you require another license, please contact the above.
*/