Skip to content

Commit ccb1ab7

Browse files
committed
feat: add default_target_function
Create a default target function as described in Eq. 3 from the QN paper (https://doi.org/10.1186/1752-0509-1-4).
1 parent 4a5f28d commit ccb1ab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/qn_test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ end
8585
qn_size,
8686
domains,
8787
max_eq_depth;
88-
schedule = Asynchronous,
88+
schedule=Asynchronous,
8989
)
9090
async_qn_system = create_qn_system(async_qn)
9191
step!(async_qn_system, 100)
@@ -103,7 +103,7 @@ end
103103
domains = [1:N for _ = 1:qn_size]
104104

105105
async_qn =
106-
sample_qualitative_network(qn_size, domains, max_eq_depth; schedule = Asynchronous)
106+
sample_qualitative_network(qn_size, domains, max_eq_depth; schedule=Asynchronous)
107107
async_qn_system = create_qn_system(async_qn)
108108

109109
grid = Tuple(range(0, 1) for _ = 1:qn_size)

0 commit comments

Comments
 (0)