Skip to content

Commit e72562e

Browse files
committed
Minor cleanup and doc entrypoint
1 parent 1dd2908 commit e72562e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

docs/src/func_ref.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ getSubgraphAroundNode
5858
getSubgraph
5959
```
6060

61-
### Visualization
61+
### Visualization and Plotting
6262
```@docs
6363
toDot
6464
toDotFile
65+
dfgplot
6566
```

src/entities/DFGFactor.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,3 @@ const PackedFunctionNodeData{T} = GenericFunctionNodeData{T, <: AbstractString}
8181
PackedFunctionNodeData(x1, x2, x3, x4, x5::S, x6::T, x7::String="", x8::Vector{Int}=Int[]) where {T <: PackedInferenceType, S <: AbstractString} = GenericFunctionNodeData(x1, x2, x3, x4, x5, x6, x7, x8)
8282
const FunctionNodeData{T} = GenericFunctionNodeData{T, Symbol}
8383
FunctionNodeData(x1, x2, x3, x4, x5::Symbol, x6::T, x7::String="", x8::Vector{Int}=Int[]) where {T <: Union{FunctorInferenceType, ConvolutionObject}}= GenericFunctionNodeData{T, Symbol}(x1, x2, x3, x4, x5, x6, x7, x8)
84-
85-
"""
86-
$SIGNATURES
87-
88-
Retrieve data structure stored in a node.
89-
"""
90-
getData(v::DFGFactor)::GenericFunctionNodeData = v.data

0 commit comments

Comments
 (0)