fix(factor): move N_INF import to test module in team_sum

This commit is contained in:
2026-04-24 08:17:54 +02:00
parent cee70c6272
commit 1210a34a64

View File

@@ -1,5 +1,5 @@
use crate::{
N_INF, N00,
N00,
factor::{Factor, VarId, VarStore},
gaussian::Gaussian,
};
@@ -27,6 +27,7 @@ impl Factor for TeamSumFactor {
#[cfg(test)]
mod tests {
use super::*;
use crate::N_INF;
#[test]
fn single_player_unit_weight() {