Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore
Functions for detecting issues and errors in an IGraph.
| Name | FGraphLinter |
| Type | class |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundGraphLinter.h |
| Include Path | #include "MetasoundGraphLinter.h" |
Syntax
class FGraphLinter
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| FBuildErrorPtr | TUniquePtr< IOperatorBuildError > | MetasoundGraphLinter.h |
Functions
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool ValidateEdgeDataTypesMatch
(
const IGraph& InGraph, |
Validate each FDataEdge in the IGraph by checking that the FInputDataSource and FOutputDataDestination data types are equal. | MetasoundGraphLinter.h | |
static bool ValidateNoCyclesInGraph
(
const IGraph& InGraph, |
Validate the IGraph by checking for cycles. | MetasoundGraphLinter.h | |
static bool ValidateNoCyclesInGraph
(
const FDirectedGraphAlgoAdapter& InAdapter, |
Validate the IGraph by checking for cycles. | MetasoundGraphLinter.h | |
static bool ValidateNoDuplicateInputs
(
const IGraph& InGraph, |
Validate the IGraph by checking for duplicate inputs connected to an individual vertex on a given node. | MetasoundGraphLinter.h | |
static bool ValidateVerticesExist
(
const IGraph& InGraph, |
Validate each FDataEdge in the IGraph by checking that the corresponding INodes contain matching FDataVertex information as described by the FDataEdge. | MetasoundGraphLinter.h |