LazyGraph

problemutils.classes.graphs.LazyGraph$
See theLazyGraph companion class
object LazyGraph

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
LazyGraph.type

Members list

Value members

Concrete methods

def apply[V](adjacencyFunction: V => IterableOnce[V]): LazyGraph[V]
def from[V](adjacencyFunction: V => Set[Edge[V]]): LazyGraph[V]
def fromCost[V](adjacencyFunction: V => IterableOnce[(V, Double)]): LazyGraph[V]