Skip to content

Commit 40b896e

Browse files
committed
Rel 0.1.1
1 parent 0257ff5 commit 40b896e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "StructuralCausalModels"
22
uuid = "a41e6734-49ce-4065-8b83-aff084c01dfd"
33
authors = ["Rob J Goedman <goedman@mac.com>"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

research/ops.jl

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using StructuralCausalModels
2+
import StructuralCausalModels.SymbolList
3+
4+
5+
import Base.-
6+
7+
-(x::SymbolList, y::SymbolList) = (type=:line, x=x, y=y)
8+
9+
(x, y) = (type=:darrow, x=x, y=y)
10+
11+
(x, y) = (type=:rarrow, x=x, y=y)
12+
13+
println(:b - :A)
14+
println(:b [:A, :D])
15+
println([:X, :T] :A)
16+
17+
m = (:b - :A, [:X, :T] :A, :b [:A, :D])
18+
19+
m[3] |> display

0 commit comments

Comments
 (0)