T - type of variables used in this search.public class DepthFirstSearch<T extends Var> extends Object implements Search<T>
| Modifier and Type | Field and Description |
|---|---|
Search<? extends Var>[] |
childSearches
It stores searches which will be executed when this one has assign all
its variables.
|
ConsistencyListener |
consistencyListener
It is invoked when consistency function has been executed.
|
int |
costValue
It represents the cost value of currently best solution for IntVar cost.
|
double |
costValueFloat
It represents the cost value of currently best solution for FloatVar cost.
|
Var |
costVariable
It represents the cost variable.
|
int |
currentChildSearch
It remembers what child search has been already examined.
|
boolean |
einAinleftTree
It specifies if for setVar based search the left branch should impose EinA constraint.
|
ExitChildListener<T> |
exitChildListener
It is invoked when returning from left or right child.
|
String |
id
It specifies the id of the search.
|
InitializeListener |
initializeListener
It is executed when search is started, before entering the search.
|
Search<? extends Var> |
masterSearch
If this search is a sub-search then this pointer will point out to the
master search (i.e.
|
boolean |
respectSolutionListenerAdvice
If it is set to true then the optimizing search will
quit the search if this action is indicated by the solution
listener.
|
SolutionListener<T> |
solutionListener
It is executed when a solution is found.
|
Store |
store
It represents store within which a search is performed.
|
boolean |
timeOutOccured
It specifies that the time-out has occured
|
| Constructor and Description |
|---|
DepthFirstSearch()
It specifies current child search.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addChildSearch(Search<? extends Var> child)
It adds another child search to this one.
|
boolean |
assignSolution()
It assigns the last solution.
|
boolean |
assignSolution(int no)
The first solution has index 0.
|
int |
getBacktracks()
It returns number of backtracks performed by the search.
|
ConsistencyListener |
getConsistencyListener()
It returns the root of the Consistency Listener.
|
int |
getCostValue()
It returns the value of the cost int variable for the best solution.
|
double |
getCostValueFloat()
It returns the value of the cost float variable for the best solution.
|
Var |
getCostVariable()
It returns the cost variable.
|
int |
getDecisions()
It returns number of decisions performed by the search.
|
ExitChildListener<T> |
getExitChildListener()
It returns the root of the ExitChildListener.
|
ExitListener |
getExitListener()
It returns the root of the ExitListener.
|
InitializeListener |
getInitializeListener()
It returns the root of the InitializationListener.
|
int |
getMaximumDepth()
It returns the maximum depth reached by a search.
|
int |
getNodes()
It returns number of search nodes explored by the search.
|
Domain[] |
getSolution()
It returns the solution (an assignment of values to variables).
|
Domain[] |
getSolution(int no)
It returns the solution specified by the search.
|
SolutionListener<T> |
getSolutionListener()
It returns the root Solution Listener.
|
TimeOutListener |
getTimeOutListener()
It returns the root of the TimeOutListener.
|
T[] |
getVariables()
It returns the order of variables used by functions returning a solution
in terms of the values.
|
int |
getWrongDecisions()
It returns number of wrong decisions performed by the search.
|
String |
id()
It returns the string id of the search.
|
boolean |
label(int firstVariable)
This function is called recursively to assign variables one by one.
|
boolean |
labeling()
It is a labeling function called if the search is a sub-search being
called from the parent search.
|
boolean |
labeling(Store store,
SelectChoicePoint<T> select)
It performs search using supplied choice point selection heuristic.
|
boolean |
labeling(Store store,
SelectChoicePoint<T> select,
Var costVar)
It performs search using supplied choice point selection heuristic,
as well as costVariable as aim at finding an optimal solution.
|
void |
printAllSolutions()
It prints all solutions.
|
void |
setAssignSolution(boolean value)
It decides if a solution is assigned to store after search exits.
|
void |
setBacktracksOut(long out)
It turns on the backtrack out.
|
void |
setChildSearch(Search<? extends Var>[] child)
It specifies the sub-searches for the current search.
|
void |
setConsistencyListener(ConsistencyListener listener)
It sets the root of the Consistency Listener.
|
void |
setCostVar(Var cost)
It sets the reference to the cost variable.
|
void |
setDecisionsOut(long out)
It turns on the decisions out.
|
void |
setExitChildListener(ExitChildListener<T> listener)
It sets the root of the ExitChild listener.
|
void |
setExitListener(ExitListener listener)
It sets the root of the Exit Listener.
|
void |
setID(String name)
It sets the id of the store.
|
void |
setInitializeListener(InitializeListener listener)
It sets the root of the InitializeListener.
|
void |
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.
|
void |
setNodesOut(long out)
It turns on the nodes out.
|
void |
setOptimize(boolean value)
It sets the optimization flag.
|
void |
setPrintInfo(boolean value)
It decides if information about search is printed.
|
void |
setSelectChoicePoint(SelectChoicePoint<T> select)
It sets the select choice point object.
|
void |
setSolutionListener(SolutionListener<T> listener)
It returns the root of the SolutionListener.
|
void |
setStore(Store store)
It sets the reference to the store in the context of which the search operates.
|
void |
setTimeOut(long out)
It turns on the timeout.
|
void |
setTimeOutListener(TimeOutListener listener)
It sets the root of the TimeOutListener.
|
void |
setTimeOutMilliseconds(long out)
It turns on the timeout.
|
void |
setWrongDecisionsOut(long out)
It turns on the wrong decisions out.
|
String |
toString() |
String |
toStringFull() |
public boolean respectSolutionListenerAdvice
public int costValue
public double costValueFloat
public Var costVariable
public ExitChildListener<T extends Var> exitChildListener
public ConsistencyListener consistencyListener
public SolutionListener<T extends Var> solutionListener
public InitializeListener initializeListener
public Search<? extends Var>[] childSearches
public Search<? extends Var> masterSearch
public Store store
public boolean timeOutOccured
public String id
public boolean einAinleftTree
public int currentChildSearch
public void setID(String name)
name - the id of the store object.public String id()
Searchpublic void setChildSearch(Search<? extends Var>[] child)
SearchsetChildSearch in interface Search<T extends Var>child - the array containing all children searches.public void addChildSearch(Search<? extends Var> child)
SearchaddChildSearch in interface Search<T extends Var>child - the search which is being added as child search.public void setSelectChoicePoint(SelectChoicePoint<T> select)
SearchsetSelectChoicePoint in interface Search<T extends Var>select - the choice point heuristic used by search.public int getBacktracks()
getBacktracks in interface Search<T extends Var>public int getDecisions()
getDecisions in interface Search<T extends Var>public int getMaximumDepth()
getMaximumDepth in interface Search<T extends Var>public int getNodes()
public int getWrongDecisions()
getWrongDecisions in interface Search<T extends Var>public Domain[] getSolution()
SearchgetSolution in interface Search<T extends Var>public Domain[] getSolution(int no)
SearchgetSolution in interface Search<T extends Var>no - the solution we are interested in.public T[] getVariables()
SearchgetVariables in interface Search<T extends Var>public SolutionListener<T> getSolutionListener()
SearchgetSolutionListener in interface Search<T extends Var>public boolean label(int firstVariable)
public void setStore(Store store)
Searchpublic void setCostVar(Var cost)
SearchsetCostVar in interface Search<T extends Var>cost - variable used as a cost metric.public boolean labeling()
public boolean labeling(Store store, SelectChoicePoint<T> select)
Searchpublic boolean labeling(Store store, SelectChoicePoint<T> select, Var costVar)
Searchpublic void setAssignSolution(boolean value)
setAssignSolution in interface Search<T extends Var>value - defines if solution is assigned.public void setBacktracksOut(long out)
setBacktracksOut in interface Search<T extends Var>out - defines how many backtracks are performed before the search
exits.public void setDecisionsOut(long out)
setDecisionsOut in interface Search<T extends Var>out - defines how many decisions are made before the search exits.public void setNodesOut(long out)
setNodesOut in interface Search<T extends Var>out - defines how many nodes are visited before the search exits.public void setPrintInfo(boolean value)
setPrintInfo in interface Search<T extends Var>value - defines if info is printed to standard output.public void setTimeOut(long out)
setTimeOut in interface Search<T extends Var>out - defines how many seconds before the search exits.public void setTimeOutMilliseconds(long out)
SearchsetTimeOutMilliseconds in interface Search<T extends Var>out - defines how many miliseconds before the search exits.public void setWrongDecisionsOut(long out)
setWrongDecisionsOut in interface Search<T extends Var>out - defines how many wrong decisions are made before the search
exits.public void setMasterSearch(Search<? extends Var> master)
SearchsetMasterSearch in interface Search<T extends Var>master - master search which will be/is calling that slave search.public String toString()
public String toStringFull()
public boolean assignSolution()
SearchassignSolution in interface Search<T extends Var>public boolean assignSolution(int no)
SearchassignSolution in interface Search<T extends Var>no - the solution number which we want to enforce in the store.public ConsistencyListener getConsistencyListener()
SearchgetConsistencyListener in interface Search<T extends Var>public ExitChildListener<T> getExitChildListener()
SearchgetExitChildListener in interface Search<T extends Var>public ExitListener getExitListener()
SearchgetExitListener in interface Search<T extends Var>public TimeOutListener getTimeOutListener()
SearchgetTimeOutListener in interface Search<T extends Var>public void setSolutionListener(SolutionListener<T> listener)
SearchsetSolutionListener in interface Search<T extends Var>listener - the root of the SolutionListener.public void setConsistencyListener(ConsistencyListener listener)
SearchsetConsistencyListener in interface Search<T extends Var>listener - the new root.public void setExitChildListener(ExitChildListener<T> listener)
SearchsetExitChildListener in interface Search<T extends Var>listener - the new root.public void setExitListener(ExitListener listener)
SearchsetExitListener in interface Search<T extends Var>listener - the new root.public void setTimeOutListener(TimeOutListener listener)
SearchsetTimeOutListener in interface Search<T extends Var>listener - the new root.public InitializeListener getInitializeListener()
SearchgetInitializeListener in interface Search<T extends Var>public void setInitializeListener(InitializeListener listener)
SearchsetInitializeListener in interface Search<T extends Var>listener - the new root.public void printAllSolutions()
SearchprintAllSolutions in interface Search<T extends Var>public Var getCostVariable()
SearchgetCostVariable in interface Search<T extends Var>public int getCostValue()
SearchgetCostValue in interface Search<T extends Var>public double getCostValueFloat()
SearchgetCostValueFloat in interface Search<T extends Var>public void setOptimize(boolean value)
SearchsetOptimize in interface Search<T extends Var>value - true if the search should optimize, false otherwise.Copyright © 2022. All rights reserved.