Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cola/libavoid/orthogonal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2795,7 +2795,8 @@ void ImproveOrthogonalRoutes::nudgeOrthogonalRoutes(size_t dimension,
}
else if (!nudgeSharedPathsWithCommonEnd &&
(m_shared_path_connectors_with_common_endpoints.count(
UnsignedPair(currSegment->connRef->id(), prevSeg->connRef->id())) > 0))
UnsignedPair(currSegment->connRef->id(), prevSeg->connRef->id())) > 0) &&
currSegment->variable->desiredPosition == prevSeg->variable->desiredPosition)
{
// We don't want to nudge apart these two segments
// since they are from a shared path with a common
Expand Down
5 changes: 4 additions & 1 deletion cola/libavoid/tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ check_PROGRAMS = \
nudgingSkipsCheckpoint01 \
nudgingSkipsCheckpoint02 \
hola01 \
hyperedgeRerouting01
hyperedgeRerouting01 \
nudgingNoLeftBdry

# problem_SOURCES = problem.cpp

Expand Down Expand Up @@ -213,5 +214,7 @@ junction02_SOURCES = junction02.cpp
junction03_SOURCES = junction03.cpp
junction04_SOURCES = junction04.cpp

nudgingNoLeftBdry_SOURCES = nudgingNoLeftBdry.cpp

TESTS = $(check_PROGRAMS)

Loading