Uses of Class
algorithm.Table
Packages that use Table
Package
Description
Search techniques based on B* and various utility classes used primarily by these search techniques.
Experiment classes which run individual experiments, as performed for the thesis, and the utility classes used by these experiments.
Various classes for storing and generating game trees for the use by algorithms and tree visualisation.
-
Uses of Table in algorithm
Modifier and TypeMethodDescriptionstatic TableTable.getTable()static TableTable.getTable(int keySize) static TableTable.getTable(SearchAlgorithm.Limits space_limit) Modifier and TypeMethodDescription<P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> DfBstar.search(P root, Table table, Duration time_limit, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) Deprecated.<P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> DfBstar2.search(P root, Table table, Duration time_limit, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) <P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> DfBstar3.search(P root, Table table, Duration time_limit, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) <P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> DfBstarDB.search(P root, Table table, Duration time_limit, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) default <P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> SearchAlgorithm.SearchWithTable.search(P root, Table table, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) Initiates the search of the provided game tree without time limits.default <P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> SearchAlgorithm.SearchWithTable.search(P root, Table table, MetricKeeper... metrics) Initiates the search of the provided game tree without time or spatial limits.<P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> SearchAlgorithm.SearchWithTable.search(P root, Table table, Duration time_limit, SearchAlgorithm.Limits space_limit, MetricKeeper... metrics) Initiates the search of the provided game tree with a given time limit and spatial limit.default <P extends IGamePosition<P>>
SearchAlgorithm.SearchResult<?, P> SearchAlgorithm.SearchWithTable.search(P root, Table table, Duration time_limit, MetricKeeper... metrics) Initiates the search of the provided game tree without spatial limits. -
Uses of Table in experiment
Methods in experiment that return TableModifier and TypeMethodDescription(package private) static TableCompareAlgorithms.waitForTable(int table_size, Table[] shared_tables, boolean[] table_occupied, int[] num_waiting_for_table, int[] tableID) Runs wait for a table to become available in this method.Methods in experiment with parameters of type TableModifier and TypeMethodDescription(package private) static voidCompareAlgorithms.freeTable(Table table, Table[] shared_tables, boolean[] table_occupied, int[] num_waiting_for_table, int table_ID) Frees the provided table.(package private) static TableCompareAlgorithms.waitForTable(int table_size, Table[] shared_tables, boolean[] table_occupied, int[] num_waiting_for_table, int[] tableID) Runs wait for a table to become available in this method. -
Uses of Table in gametree
Modifier and TypeMethodDescriptionbooleanDepthFirstNode.readFromTT(Table TT) Update the bounds of this node with information from a provided transposition table