Uses of Interface
jopt.csp.search.SearchLimit

Packages that use SearchLimit
jopt.csp.search The interfaces to all your searching needs. 
 

Uses of SearchLimit in jopt.csp.search
 

Methods in jopt.csp.search that return SearchLimit
 SearchLimit SearchLimits.timeLimit(long timeLimitMs)
          Creates a new time limit that will stop searching after a specified amount of time.
 SearchLimit SearchLimits.failLimit(int maxFailures)
          Creates a new failure search limit that will stop searching after a specified number of backtracking failures during searching.
 SearchLimit SearchLimits.choiceLimit(int maxChoices)
          Creates a new choicepoint search limit that will stop searching after a specified number of choicepoints have been evaluated during searching.
 SearchLimit SearchLimits.deadlineLimit(long endTime)
          Creates a new deadline limit search limiter
 SearchLimit SearchLimits.combinedLimit(SearchLimit[] limits)
          Creates a new combined limit search limit
 

Methods in jopt.csp.search with parameters of type SearchLimit
 SearchLimit SearchLimits.combinedLimit(SearchLimit[] limits)
          Creates a new combined limit search limit
 SearchAction SearchLimits.limitSearch(SearchLimit limit, SearchAction action)
          Special action that applies a limit to the search technique being used at this point in the search tree