From 9aa800420a681b3a7404416ec45155ae6b44400e Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Sat, 14 Mar 2026 11:27:51 +0100 Subject: [PATCH 1/2] Loosen restrictions on the type of an entity in a QN --- src/qualitative_networks.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qualitative_networks.jl b/src/qualitative_networks.jl index 9530c39..c09cc11 100644 --- a/src/qualitative_networks.jl +++ b/src/qualitative_networks.jl @@ -96,7 +96,7 @@ function QualitativeNetwork{GraphType}( graph = GraphType() Graphs.add_vertices!(graph, length(entity_keys)) Graphs.add_edge!.((graph,), Graphs.Edge.(edges)) - vertices_description = Pair{Symbol,QNEntity}[ + vertices_description = Pair{E,QNEntity}[ (e => QNEntity(fn, 0, d)) for (e, fn, d) in zip(entity_keys, entity_fns, entity_domains) ] From 2559e9b090982c17b292ce008d502f4033d4d5af Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Sun, 15 Mar 2026 09:43:58 +0100 Subject: [PATCH 2/2] chore: bump patch version number --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3242037..459f984 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "GraphDynamicalSystems" uuid = "13529e2e-ed53-56b1-bd6f-420b01fca819" -version = "0.0.7" +version = "0.0.8" authors = ["Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com>"] [deps]