Packages

  • package root

    Welcome to the Graph for Scala API reference.

    Welcome to the Graph for Scala API reference. Some suggested navigation entry points:

    Definition Classes
    root
  • package scalax
    Definition Classes
    root
  • package collection

    Contains the base traits and objects needed to use Graph for Scala.

    Contains the base traits and objects needed to use Graph for Scala.

    See also the Graph for Scala Core User Guide.

    Definition Classes
    scalax
  • package config
    Definition Classes
    collection
  • AdjacencyListArrayConfig
  • CoreConfig
  • GraphConfig
  • package edge

    Predefined edges.

    Predefined edges.

    While basic edge types are defined in the object GraphEdge, the predefined edges in this package cover the following categories (prefixes, shortcuts):

    weighted (W, %), key-weighted (Wk, %#), labeled (L, +), key-labeled (Lk, +#), weighted and labeled (WL, %+), key-weighted and labeled (WkL, %#+), weighted and key-labeled (WLk, %+#) and key-weighted and key-labeled (WkLk, %#+#).

    These predefined edges provide alternatives for any edge extension taking the burden from the user to implement his/her custom edge class - but baring the disadvantage that user edge attributes must be part of a label class as opposed to being part of the edge class directly. It may also serve as a source for looking up how to implement custom edge classes.

    Definition Classes
    collection
  • package generator

    This package helps you to create random graphs with predefined metrics.

    This package helps you to create random graphs with predefined metrics. It is not only possible to create random graph instances but also Scalacheck generators.

    Definition Classes
    collection
  • package generic
    Definition Classes
    collection
  • package immutable
    Definition Classes
    collection
  • package mutable
    Definition Classes
    collection

package config

Content Hierarchy
Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait AdjacencyListArrayConfig extends AnyRef

    To be mixed in by any concrete class extending GraphConfig if the Graph implementation is based on adjacency lists using ArraySet.

  2. case class CoreConfig(orderHint: Int = GraphConfig.defaultOrder, adjacencyListHints: Hints = ArraySet.Hints.Default) extends GraphConfig with AdjacencyListArrayConfig with Product with Serializable

    Configuration options for Graph factory methods in the core module.

  3. trait GraphConfig extends AnyRef

    Base trait for Graph configuration and optimization hints.

    Base trait for Graph configuration and optimization hints. This type is used by the implicit parameter of Graph factory methods.

Value Members

  1. object GraphConfig

Ungrouped