changed output of unifyTest()

This commit is contained in:
NoName11234 2024-01-18 21:20:48 +01:00
parent bb4eaaccc5
commit 301e9143ec

View File

@ -88,7 +88,8 @@ public class UnifyTest {
ConstraintSet< Pair> cons = new ConstraintSet<>();
UnifyResultModel urm = new UnifyResultModel(cons, finiteClosure);
UnifyTaskModel tasks = new UnifyTaskModel();
urm = unifyAlgo.unifyParallel(undConstraints, oderConstraints, finiteClosure, new NullWriter(), false, urm, tasks);
Set<Set<UnifyPair>> solution = unifyAlgo.unify(undConstraints, oderConstraints, finiteClosure, new NullWriter(), false, urm, tasks);
System.out.println(solution.size());
}
/*
@Test