Skip to content

Commit

Permalink
Merge pull request #280 from MeikeWeiss/path
Browse files Browse the repository at this point in the history
Wrong check in `EdgeFacePathByFaces`
  • Loading branch information
aniemeyer authored Sep 12, 2024
2 parents f825081 + b18e577 commit 497408d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gap/Paths/paths.gi
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ InstallMethod( EdgeFacePathByFaces,
local i;

__SIMPLICIAL_CheckEdge(complex, firstEdge, "EdgeFacePathByFaces");
__SIMPLICIAL_CheckFace(complex, lastEdge, "EdgeFacePathByFaces");
__SIMPLICIAL_CheckEdge(complex, lastEdge, "EdgeFacePathByFaces");
if Length(faceList) > 0 then
__SIMPLICIAL_CheckFace(complex, faceList[1], "EdgeFacePathByFaces");
for i in [2..Length(faceList)] do
Expand Down

0 comments on commit 497408d

Please sign in to comment.