Skip to content

Commit 3ce7363

Browse files
committed
Rel 0.1.0
1 parent 01f7707 commit 3ce7363

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

docs/src/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,24 @@ adjacency_matrix(e::NamedArray)
5050
adjacency_matrix_to_dict(ea::NamedArray)
5151
ancester_graph(e::NamedArray)
5252
ancestral_graph(a::NamedArray{Int, 2}; m=Symbol[], c=Symbol[])
53+
check_open(d::DAG, path::Vector{Symbol}, conditioning_set::SymbolList; debug=false)
54+
DAG
5355
dag_show(io::IO, d::DAG)
5456
dag_vars(d::OrderedDict)
5557
edge_matrix(d::OrderedDict)
5658
edge_matrix(a::NamedArray, inv=false)
5759
indicator_matrix(e::NamedArray)
5860
induced_covariance_graph(d::DAG, sel::Vector{Symbol}, cond::SymbolList; debug=false)
5961
node_edges(p::Path, s::Symbol, l::Symbol)
62+
open_paths(d::DAG, paths::Vector{Vector{Symbol}}, cond::Vector{Symbol};debug=false)
6063
pcor(d::DAG, u::SymbolList)
64+
pcor_test(d::DAG, u::SymbolList, q, n)
65+
sym_in_all_paths(paths, sym)
66+
syms_in_paths(paths, f, l)
6167
topological_order(a::NamedArray)
6268
topological_sort(a::NamedArray)
69+
topological_sort(dag::DAG)
70+
topological_sort!(dag::DAG)
6371
transitive_closure(a::NamedArray)
6472
set_dag_df!(d::DAG, df::DataFrameOrNothing; force=false)
6573
set_dag_cov_matrix!(d::DAG, cm::NamedArrayOrNothing; force=false)

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ include("test_descendents_01.jl")
1717
include("test_descendents_02.jl")
1818
include("test_descendents_03.jl")
1919

20-
include("test_sr6_4_3b.jl")
21-
22-
include("test_ag.jl")
23-
2420
include("test_open_paths_01.jl")
2521
include("test_open_paths_02.jl")
2622
include("test_open_paths_03.jl")
2723
include("test_open_paths_04.jl")
2824

25+
include("test_ag.jl")
26+
2927
include("test_sr6_4_2.jl")
3028

3129
include("test_sr6_4_3.jl")
3230

31+
include("test_sr6_4_3b.jl")
32+

0 commit comments

Comments
 (0)