Ticket #57: full_bugfix_595de3a81389.patch
File full_bugfix_595de3a81389.patch, 559 bytes (added by , 16 years ago) |
---|
-
lemon/full_graph.h
# HG changeset patch # User Peter Kovacs <kpeter@inf.elte.hu> # Date 1225746783 -3600 # Node ID 595de3a81389b0410da04c615b1c3292e33bd2d5 # Parent 77c7868019b0164f7d30052ccdccb690a0b8bcad Bug fix in FullDigraph diff --git a/lemon/full_graph.h b/lemon/full_graph.h
a b 75 75 typedef True FindArcTag; 76 76 77 77 Arc findArc(Node s, Node t, Arc prev = INVALID) const { 78 return prev != INVALID ? arc(s, t) : INVALID;78 return prev == INVALID ? arc(s, t) : INVALID; 79 79 } 80 80 81 81 class Node {