build-signed-interaction-graph: Use _.
This commit is contained in:
parent
32b2e41634
commit
6c707ddba7
1 changed files with 2 additions and 2 deletions
|
@ -316,8 +316,8 @@
|
||||||
(define (build-signed-interaction-graph network doms)
|
(define (build-signed-interaction-graph network doms)
|
||||||
(weighted-graph/directed
|
(weighted-graph/directed
|
||||||
(for*/fold ([edges '()])
|
(for*/fold ([edges '()])
|
||||||
([(x x-val) (in-hash network)]
|
([(x _) (in-hash network)]
|
||||||
[(y y-val) (in-hash network)])
|
[(y _) (in-hash network)])
|
||||||
(match (get-interaction-sign network doms x y)
|
(match (get-interaction-sign network doms x y)
|
||||||
['0 edges]
|
['0 edges]
|
||||||
[sign (cons (list sign x y) edges)]))))
|
[sign (cons (list sign x y) edges)]))))
|
||||||
|
|
Loading…
Reference in a new issue