Uses of Interface
org.jacop.search.Search
-
-
Uses of Search in org.jacop.examples.cpviz
Fields in org.jacop.examples.cpviz declared as Search Modifier and Type Field Description (package private) Search<IntVar>
CPvizSendMoreMoney. search
Methods in org.jacop.examples.cpviz with parameters of type Search Modifier and Type Method Description boolean
CPvizNetworkFlow.NetListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
-
Uses of Search in org.jacop.examples.fd
Fields in org.jacop.examples.fd declared as Search Modifier and Type Field Description Search<IntVar>
ExampleFD. search
It specifies the search procedure used by a given example.Methods in org.jacop.examples.fd that return Search Modifier and Type Method Description Search<IntVar>
ExampleFD. getSearch()
It returns the search used within an example. -
Uses of Search in org.jacop.examples.fd.crosswords
Methods in org.jacop.examples.fd.crosswords with parameters of type Search Modifier and Type Method Description boolean
CrossWord.PrintListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
-
Uses of Search in org.jacop.examples.set
Fields in org.jacop.examples.set declared as Search Modifier and Type Field Description Search<SetVar>
ExampleSet. search
It specifies the search procedure used by a given example.Methods in org.jacop.examples.set that return Search Modifier and Type Method Description Search<SetVar>
ExampleSet. getSearch()
It returns the search used within an example. -
Uses of Search in org.jacop.floats.search
Methods in org.jacop.floats.search with parameters of type Search Modifier and Type Method Description boolean
Optimize.ResultListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
-
Uses of Search in org.jacop.fz
Fields in org.jacop.fz declared as Search Modifier and Type Field Description (package private) Search<Var>
Solve. final_search_seq
Fields in org.jacop.fz with type parameters of type Search Modifier and Type Field Description (package private) java.util.ArrayList<Search<Var>>
Solve. list_seq_searches
Methods in org.jacop.fz with parameters of type Search Modifier and Type Method Description boolean
Solve.CostListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
Method parameters in org.jacop.fz with type arguments of type Search Modifier and Type Method Description (package private) boolean
Solve. anyTimeOutOccured(java.util.ArrayList<Search<Var>> list_seq_searches)
-
Uses of Search in org.jacop.search
Classes in org.jacop.search that implement Search Modifier and Type Class Description class
DepthFirstSearch<T extends Var>
Implements Depth First Search with number of possible plugins (listeners) to be attached to modify the search.class
PrioritySearch<T extends Var>
PrioritySearch selects first a row in the matrix based on metric of the variable at the pririty vector.(package private) class
PrioritySearch.LinkingSearch<T extends Var>
Fields in org.jacop.search declared as Search Modifier and Type Field Description Search<? extends Var>[]
DepthFirstSearch. childSearches
It stores searches which will be executed when this one has assign all its variables.Search<? extends Var>
DepthFirstSearch. masterSearch
If this search is a sub-search then this pointer will point out to the master search (i.e.Methods in org.jacop.search with parameters of type Search Modifier and Type Method Description void
DepthFirstSearch. addChildSearch(Search<? extends Var> child)
void
Search. addChildSearch(Search<? extends Var> child)
It adds another child search to this one.boolean
OneSolution. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
boolean
PrintOutListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
It is executed right after consistency of the current search node.boolean
SimpleSolutionListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
boolean
SolutionListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
It is executed by search after a solution is found.void
DepthFirstSearch. setChildSearch(Search<? extends Var>[] child)
void
Search. setChildSearch(Search<? extends Var>[] child)
It specifies the sub-searches for the current search.void
DepthFirstSearch. setMasterSearch(Search<? extends Var> master)
void
Search. setMasterSearch(Search<? extends Var> master)
If the search is called by a master search then the search may need to obtain some information about the master search.Constructors in org.jacop.search with parameters of type Search Constructor Description TraceGenerator(Search<T> search, SelectChoicePoint<T> select)
It creates a CPviz trace generator around proper select choice point object.TraceGenerator(Search<T> search, SelectChoicePoint<T> select, java.lang.String treeFilename, java.lang.String visFilename)
It creates a CPviz trace generator around proper select choice point object.TraceGenerator(Search<T> search, SelectChoicePoint<T> select, Var[] vars)
It creates a CPviz trace generator around proper select choice point object.TraceGenerator(Search<T> search, SelectChoicePoint<T> select, Var[] vars, java.lang.String treeFilename, java.lang.String visFilename)
It creates a CPviz trace generator around proper select choice point object. -
Uses of Search in org.jacop.search.restart
Fields in org.jacop.search.restart declared as Search Modifier and Type Field Description (package private) Search<T>
RestartSearch. lastNotNullSearch
Methods in org.jacop.search.restart with parameters of type Search Modifier and Type Method Description boolean
RestartSearch.CostListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
-
Uses of Search in org.jacop.search.sgmpcs
Methods in org.jacop.search.sgmpcs with parameters of type Search Modifier and Type Method Description boolean
SimpleImprovementSearch.CostListener. executeAfterSolution(Search<T> search, SelectChoicePoint<T> select)
-