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