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)
|
||||
(weighted-graph/directed
|
||||
(for*/fold ([edges '()])
|
||||
([(x x-val) (in-hash network)]
|
||||
[(y y-val) (in-hash network)])
|
||||
([(x _) (in-hash network)]
|
||||
[(y _) (in-hash network)])
|
||||
(match (get-interaction-sign network doms x y)
|
||||
['0 edges]
|
||||
[sign (cons (list sign x y) edges)]))))
|
||||
|
|
Loading…
Reference in a new issue