Uses of Interface
org.jacop.search.SolutionListener
-
Packages that use SolutionListener Package Description org.jacop.examples.cpviz org.jacop.examples.fd.crosswords org.jacop.floats.search org.jacop.fz org.jacop.search org.jacop.search.restart org.jacop.search.sgmpcs -
-
Uses of SolutionListener in org.jacop.examples.cpviz
Classes in org.jacop.examples.cpviz that implement SolutionListener Modifier and Type Class Description classCPvizNetworkFlow.NetListener<T extends Var> -
Uses of SolutionListener in org.jacop.examples.fd.crosswords
Classes in org.jacop.examples.fd.crosswords that implement SolutionListener Modifier and Type Class Description classCrossWord.PrintListener<T extends Var>It is a simple print listener to print every tenth solution encountered. -
Uses of SolutionListener in org.jacop.floats.search
Classes in org.jacop.floats.search that implement SolutionListener Modifier and Type Class Description classOptimize.ResultListener<T extends Var> -
Uses of SolutionListener in org.jacop.fz
Classes in org.jacop.fz that implement SolutionListener Modifier and Type Class Description classSolve.CostListener<T extends Var> -
Uses of SolutionListener in org.jacop.search
Classes in org.jacop.search that implement SolutionListener Modifier and Type Class Description classOneSolution<T extends Var>Defines functionality for OneSolution plug-in, that is the search with this plug-in will stop after funding first solution.classPrintOutListener<T extends Var>It is a simple example how it is possible to extend existing listeners to add your own functionality.classSimpleSolutionListener<T extends Var>It defines a simple solution listener which should be used if some basic functionality of search when a solution is encountered are required.Fields in org.jacop.search declared as SolutionListener Modifier and Type Field Description SolutionListener<T>[]SimpleSolutionListener. childrenSolutionListenersIt contains children of the solution listener.SolutionListener<? extends Var>SimpleSolutionListener. parentSolutionListenerIf this search is a slave search than each solution within this search must be connected to a solution of the master search.SolutionListener<T>DepthFirstSearch. solutionListenerIt is executed when a solution is found.Methods in org.jacop.search that return SolutionListener Modifier and Type Method Description SolutionListener<T>DepthFirstSearch. getSolutionListener()SolutionListener<T>Search. getSolutionListener()It returns the root Solution Listener.Methods in org.jacop.search with parameters of type SolutionListener Modifier and Type Method Description voidSimpleSolutionListener. setChildrenListeners(SolutionListener<T> child)voidSimpleSolutionListener. setChildrenListeners(SolutionListener<T>[] children)voidSolutionListener. setChildrenListeners(SolutionListener<T> child)It sets the child listener for this solution listener.voidSolutionListener. setChildrenListeners(SolutionListener<T>[] children)It sets the children listeners for this solution listener.voidSimpleSolutionListener. setParentSolutionListener(SolutionListener<? extends Var> parent)voidSolutionListener. setParentSolutionListener(SolutionListener<? extends Var> parent)It allows to inform sub-search of what is the current number of the solution in master search.voidDepthFirstSearch. setSolutionListener(SolutionListener<T> listener)voidSearch. setSolutionListener(SolutionListener<T> listener)It returns the root of the SolutionListener. -
Uses of SolutionListener in org.jacop.search.restart
Classes in org.jacop.search.restart that implement SolutionListener Modifier and Type Class Description classRestartSearch.CostListener<T extends Var>Fields in org.jacop.search.restart declared as SolutionListener Modifier and Type Field Description (package private) SolutionListenerRestartSearch. lastSolutionListener -
Uses of SolutionListener in org.jacop.search.sgmpcs
Classes in org.jacop.search.sgmpcs that implement SolutionListener Modifier and Type Class Description classSimpleImprovementSearch.CostListener<T extends IntVar>Saves the cost produced by a given search
-