From b6ba1e4fead1e63faca6356e08c7c4a57de4339a Mon Sep 17 00:00:00 2001 From: ilgeco Date: Mon, 4 May 2026 10:58:51 +0200 Subject: [PATCH] Fix DCPTest using old constructor --- test/PIM/DCPTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/PIM/DCPTest.cpp b/test/PIM/DCPTest.cpp index 5687ac0..1b44123 100644 --- a/test/PIM/DCPTest.cpp +++ b/test/PIM/DCPTest.cpp @@ -477,7 +477,7 @@ int testDCPGraphCrossbarExhaustion() { const std::vector nodeWeights = {10, 10, 10}; const std::vector nodeCrossbarUsage = {1, 1, 1}; - GraphDCP graph(nodeWeights, {}, nodeCrossbarUsage); + GraphDCP graph(nodeWeights, {}, {},nodeCrossbarUsage); graph.setMaxCpuCount(3); graph.runDcp();