From 24452fefb47156217124052b00dc9e8dd2e0c183 Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Mon, 28 Oct 2024 21:40:08 +0100 Subject: [PATCH] fix type instability in DataFlowGraph --- src/scheduling.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scheduling.jl b/src/scheduling.jl index c8a59e3..bda2057 100644 --- a/src/scheduling.jl +++ b/src/scheduling.jl @@ -28,7 +28,7 @@ function get_name(alg::BoundAlgorithm) end struct DataFlowGraph - graph::MetaDiGraph + graph::MetaDiGraph{Int, Float64} algorithm_indices::Vector{Int} function DataFlowGraph(graph::MetaDiGraph) alg_vertices = MetaGraphs.filter_vertices(graph, :type, "Algorithm")