demo/strongly_connected_orientation.lgf
author kpeter
Mon, 18 Feb 2008 03:32:06 +0000
changeset 2575 e866e288cba6
permissions -rw-r--r--
Major improvements in NetworkSimplex.

Main changes:
- Use -potenital[] instead of potential[] to conform to the usual
terminology.
- Use function parameter instead of #define commands to select pivot rule.
- Use much faster implementation for the candidate list pivot rule.
It is about 5-20 times faster now.
- Add a new pivot rule called "Limited Search" that is a modified
version of "Block Search". It is about 25 percent faster on rather
sparse graphs.
- By default "Limited Search" is used for sparse graphs and
"Block Search" is used otherwise. This combined method is the most
efficient on every input class.
- Change the name of private members to start with "_".
- Change the name of function parameters not to start with "_".
- Remove unnecessary documentation for private members.
- Many doc improvements.
deba@2084
     1
@nodeset 
deba@2084
     2
coords  	label	
deba@2084
     3
(12,6)	        9	
deba@2084
     4
(-12,3)	        8	
deba@2084
     5
(-34,6)	        7	
deba@2084
     6
(-23,22)	6	
deba@2084
     7
(16,26)	        5	
deba@2084
     8
(43,8)	        4	
deba@2084
     9
(24,-8)	        3	
deba@2084
    10
(-4,-14)	2	
deba@2084
    11
(-29,-11)	1	
deba@2084
    12
@uedgeset 
deba@2084
    13
		label	
deba@2084
    14
5	9	9	
deba@2084
    15
9	8	5	
deba@2084
    16
7	6	7	
deba@2084
    17
8	6	6	
deba@2084
    18
4	5	11	
deba@2084
    19
6	5	8	
deba@2084
    20
3	4	12	
deba@2084
    21
9	4	10	
deba@2084
    22
3	2	4	
deba@2084
    23
8	2	3	
deba@2084
    24
1	2	2	
deba@2084
    25
7	1	1	
deba@2084
    26
@end