diff --git a/Project.toml b/Project.toml index d39c72a..bf2f287 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GraphDynamicalSystems" uuid = "13529e2e-ed53-56b1-bd6f-420b01fca819" authors = ["Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com>"] -version = "0.0.3" +version = "0.0.4" [deps] AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" diff --git a/src/GraphDynamicalSystems.jl b/src/GraphDynamicalSystems.jl index 8f0f1de..baa69dd 100644 --- a/src/GraphDynamicalSystems.jl +++ b/src/GraphDynamicalSystems.jl @@ -3,7 +3,16 @@ module GraphDynamicalSystems using DocStringExtensions include("gds_interface.jl") -export ScheduleStyle, Asynchronous, Synchronous, get_schedule, get_state, get_graph +export GraphDynamicalSystem, + GDS, + ScheduleStyle, + Asynchronous, + Synchronous, + get_n_entities, + entities, + get_schedule, + get_state, + get_graph include("qualitative_networks.jl") export QualitativeNetwork, @@ -11,7 +20,6 @@ export QualitativeNetwork, build_qn_grammar, update_functions_to_interaction_graph, sample_qualitative_network, - entities, get_domain, target_functions, interpret,