• Github
Table of Contents
0.17.0.0
  • Welcome to PsyNeuLink
  • Basics and Primer
  • Quick Reference
  • Core
  • Library
  • Contributors Guide
  • Docs >
  • Graph
Shortcuts

Graph¶

class psyneulink.core.globals.graph.EdgeType(value)¶
NON_FEEDBACK¶

A standard edge that if it exists in a cycle will only be flattened, not pruned

FEEDBACK¶

A “feedbacK” edge that will be immediately pruned to create an acyclic graph

FLEXIBLE¶

An edge that will be pruned only if it exists in a cycle

classmethod from_any(value)¶
Returns:

an EdgeType corresponding to value if it exists

Return type:

EdgeType

classmethod has(value)¶
Returns:

True if value corresponds to an EdgeType, or False otherwise

Return type:

bool

exception psyneulink.core.globals.graph.GraphError¶

© Copyright 2016, Jonathan D. Cohen.

Built with Sphinx using a theme provided by Read the Docs.
  • Graph
    • EdgeType
      • EdgeType.NON_FEEDBACK
      • EdgeType.FEEDBACK
      • EdgeType.FLEXIBLE
      • EdgeType.from_any()
      • EdgeType.has()
    • GraphError
  • Github