From 5c31147f976b16f44f514432dffa55f8e8276201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Simonis?= Date: Mon, 17 Nov 2025 17:31:39 +0100 Subject: [PATCH] Fix aligning on sync events --- preciceprofiling/merge.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/preciceprofiling/merge.py b/preciceprofiling/merge.py index 50dd49b..6db7a06 100755 --- a/preciceprofiling/merge.py +++ b/preciceprofiling/merge.py @@ -210,6 +210,8 @@ def alignEvents(con: sqlite3.Connection): INNER JOIN participants reqpart ON req.pid = reqpart.pid WHERE accname.name GLOB '*m2n.acceptPrimaryRankConnection.*' AND reqname.name GLOB '*m2n.requestPrimaryRankConnection.' || accpart.name + AND NOT accname.name GLOB '*.sync' + AND NOT reqname.name GLOB '*.sync' AND acc.rank = 0 AND req.rank = 0 """