source: grass/trunk/lib/vector/dglib/BUGS

Last change on this file was 68820, checked in by martinl, 8 years ago

Patch to fix various spelling errors (see #3088)

File size: 757 bytes
Line 
1Do not change bug numbers, these numbers are referred in Vlib/net.c
2
3BUG1 (24.2.2003):
4Cache for SP does not work properly. For examle:
5 3------4
6 / \
7 / \
81------------2
9If SP is called for 1->3 and then 1->4, the returned SP for 1->4 is 1,2,4
10(which is longer than 1,3,4). If cache is not used or 1->4 is called first
11result is OK (1,3,4).
12Note that even if cache is reset by application if 'from' is changed, SP is often incorrect.
13So the problem is not if cache is reset, but how cache is used inside dglib.
14
15BUG2 (24.2.2003):
16If 2 nodes are connected by more arcs, SP doesn't return the shortest
17one but the last arc (between these two nodes) inserted to graph.
18
19WISH1 (24.2.2003): Use type 'double' for costs instead of 'integer'.
Note: See TracBrowser for help on using the repository browser.