Package solvers
Interface Solver
-
- All Known Implementing Classes:
AbstractSolver,BacktrackAllSolver,BacktrackSolver,HeuristicMACSolver,MACSolver
public interface SolverInterface 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
nullsi aucune solution n'a été trouvée
-
-