UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
DirectedGraphAlgo.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
8
9namespace Audio
10{
11
16 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
18
22 struct UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace") FStronglyConnectedComponent
23 {
25 TArray<int32> Vertices;
26
31 };
32
34 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
36
38 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
42
44 {
50 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
54
62 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
66
77 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
79 static SIGNALPROCESSING_API void DepthFirstTraversal(int32 InInitialVertex, const FDirectedTree& InTree, TFunctionRef<bool (int32)> InVisitFunc);
81
93 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
95 static SIGNALPROCESSING_API void BreadthFirstTraversal(int32 InInitialVertex, const FDirectedTree& InTree, TFunctionRef<bool (int32)> InVisitFunc);
97
106 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
110
119 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
123
124
134 UE_DEPRECATED(5.5, "This has moved to the UE::MathCore::Graph namespace")
136 static SIGNALPROCESSING_API bool TarjanStronglyConnectedComponents(const TSet<FDirectedEdge>& InEdges, TArray<FStronglyConnectedComponent>& OutComponents, bool bExcludeSingleVertex = true);
138 };
139}
#define UE_DEPRECATED(Version, Message)
Definition CoreMiscDefines.h:302
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define PRAGMA_ENABLE_DEPRECATION_WARNINGS
Definition GenericPlatformCompilerPreSetup.h:12
#define PRAGMA_DISABLE_DEPRECATION_WARNINGS
Definition GenericPlatformCompilerPreSetup.h:8
Definition MathCore.Build.cs:6
Definition ArrayView.h:139
Definition Array.h:670
Definition AssetRegistryState.h:50
Definition UnrealString.h.inl:34
NO_LOGGING.
Definition AudioMixerPlatformAndroid.cpp:53
PRAGMA_DISABLE_DEPRECATION_WARNINGS typedef TMap< int32, FDirectedTreeElement > FDirectedTree
Definition DirectedGraphAlgo.h:40
Definition AdvancedWidgetsModule.cpp:13
Definition DirectedGraphAlgo.h:44
Definition Tuple.h:652
Definition DirectedGraphUtils.h:29