Package net.sourceforge.plantuml.graph
Class BoardCollection
- java.lang.Object
-
- net.sourceforge.plantuml.graph.BoardCollection
-
public class BoardCollection extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BoardCollection(CostComputer costComputer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Board b)
boolean
contains(Board b)
Board
getAndSetExploredSmallest()
Board
getBestBoard()
double
getBestCost()
java.util.List<java.lang.Double>
getCosts()
int
size()
-
-
-
Constructor Detail
-
BoardCollection
public BoardCollection(CostComputer costComputer)
-
-
Method Detail
-
size
public int size()
-
getAndSetExploredSmallest
public Board getAndSetExploredSmallest()
-
getBestCost
public double getBestCost()
-
getBestBoard
public Board getBestBoard()
-
getCosts
public java.util.List<java.lang.Double> getCosts()
-
add
public void add(Board b)
-
contains
public boolean contains(Board b)
-
-