forked from pool/gap-digraphs
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From d676b86fa817f21a826e8ec3ba9d949269b2dc67 Mon Sep 17 00:00:00 2001
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: Thu, 3 Jul 2025 11:09:38 +0200
|
|
Subject: [PATCH] build: support for EAPS 4
|
|
References: https://github.com/digraphs/Digraphs/pull/766
|
|
|
|
---
|
|
diff --git a/src/planar.c b/src/planar.c
|
|
index 1cdf94a7..72e5b304 100644
|
|
--- a/src/planar.c
|
|
+++ b/src/planar.c
|
|
@@ -34,14 +34,14 @@
|
|
#endif
|
|
#ifdef DIGRAPHS_WITH_INCLUDED_PLANARITY
|
|
#include "c/graph.h"
|
|
-#include "c/graphK23Search.h"
|
|
-#include "c/graphK33Search.h"
|
|
-#include "c/graphK4Search.h"
|
|
+#include "c/graphLib/homeomorphSearch/graphK23Search.h"
|
|
+#include "c/graphLib/homeomorphSearch/graphK33Search.h"
|
|
+#include "c/graphLib/homeomorphSearch/graphK4Search.h"
|
|
#else
|
|
#include "planarity/graph.h"
|
|
-#include "planarity/graphK23Search.h"
|
|
-#include "planarity/graphK33Search.h"
|
|
-#include "planarity/graphK4Search.h"
|
|
+#include "planarity/c/graphLib/homeomorphSearch/graphK23Search.h"
|
|
+#include "planarity/c/graphLib/homeomorphSearch/graphK33Search.h"
|
|
+#include "planarity/c/graphLib/homeomorphSearch/graphK4Search.h"
|
|
#endif
|
|
#if defined(__clang__)
|
|
#pragma clang diagnostic pop
|
|
--
|
|
2.50.0
|
|
|