Package solvers
Interface Solver
-
- All Known Implementing Classes:
AbstractSolver
,BacktrackAllSolver
,BacktrackSolver
,HeuristicMACSolver
,MACSolver
public interface Solver
Interface permettant d'implémenter des solveurs de contraintes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<Variable,java.lang.Object>
solve()
Résout un problème à partir de contraintes et renvoie une solution.
-
-
-
Method Detail
-
solve
java.util.Map<Variable,java.lang.Object> solve()
Résout un problème à partir de contraintes et renvoie une solution.- Returns:
- solution au problème (instanciation complète) ou
null
si aucune solution n'a été trouvée
-
-