Skip to content

Commit 85b56be

Browse files
committed
User OrderedDict to store variable and factors
1 parent 1b44e72 commit 85b56be

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
*.mem
45
deps/deps.jl
56
docs/build
67
Manifest.toml

Project.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
1515
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1616
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb"
1717
Neo4j = "d2adbeaf-5838-5367-8a2f-e46d570981db"
18+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
1819
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1920
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2021
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
@@ -29,8 +30,8 @@ Unmarshal = "cbff2730-442d-58d7-89d1-8e530c41eb02"
2930
Colors = "0.10, 0.11, 0.12"
3031
Distributions = "0.23, 0.24, 0.25"
3132
DocStringExtensions = "0.8, 0.9"
32-
Graphs = "1.4"
3333
GraphPlot = "0.5.0"
34+
Graphs = "1.4"
3435
JSON = "0.21"
3536
JSON2 = "0.3.1"
3637
LightGraphs = "1.2, 1.3"

src/GraphsDFG/FactorGraphs/FactorGraphs.jl

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module FactorGraphs
22
using Graphs
33

4+
using OrderedCollections
5+
46
import Base:
57
eltype, show, ==, Pair,
68
Tuple, copy, length, size,
@@ -42,18 +44,18 @@ include("BiMaps.jl")
4244
struct FactorGraph{T <: Integer,V <: AbstractVariableType, F <: AbstractFactorType} <: AbstractGraph{T}
4345
graph::SimpleGraph{T}
4446
labels::BiDictMap{T}
45-
variables::Dict{Symbol,V}
46-
factors::Dict{Symbol,F}
47+
variables::OrderedDict{Symbol,V}
48+
factors::OrderedDict{Symbol,F}
4749
end
4850

4951
function FactorGraph{T, V, F}(nv::Int=100, nf::Int=100) where {T <: Integer, V <: AbstractVariableType, F <: AbstractFactorType}
5052
fadjlist = Vector{Vector{T}}()
5153
sizehint!(fadjlist, nv + nf)
5254
g = SimpleGraph{T}(0, fadjlist)
5355
labels = BiDictMap{T}(sizehint=nv+nf)
54-
variables = Dict{Symbol,V}()
56+
variables = OrderedDict{Symbol,V}()
5557
sizehint!(variables, nv)
56-
factors = Dict{Symbol,F}()
58+
factors = OrderedDict{Symbol,F}()
5759
sizehint!(factors, nf)
5860
return FactorGraph{T, V, F}(g, labels, variables, factors)
5961
end

src/LightDFG/entities/LightDFG.jl

+1-8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Create an in-memory LightDFG with the following parameters:
2929
- V: Variable type
3030
- F: Factor type
3131
"""
32+
function LightDFG end
3233
function LightDFG{T,V,F}(g::FactorGraph{Int,V,F}=FactorGraph{Int,V,F}();
3334
description::String="LightGraphs.jl implementation",
3435
userId::String="DefaultUser",
@@ -48,14 +49,6 @@ end
4849

4950
# LightDFG{T}(; kwargs...) where T <: AbstractParams = LightDFG{T,DFGVariable,DFGFactor}(;kwargs...)
5051

51-
"""
52-
$(SIGNATURES)
53-
54-
Create an in-memory LightDFG with the following parameters:
55-
- T: Solver parameters (defaults to `NoSolverParams()`)
56-
- V: Variable type
57-
- F: Factor type
58-
"""
5952
function LightDFG{T}(g::FactorGraph{Int,DFGVariable,DFGFactor}=FactorGraph{Int,DFGVariable,DFGFactor}();
6053
kwargs...) where T <: AbstractParams
6154
return LightDFG{T,DFGVariable,DFGFactor}(g; kwargs...)

0 commit comments

Comments
 (0)