Uses of Class
com.bayesserver.Link
-
Packages that use Link Package Description com.bayesserver com.bayesserver.learning.structure -
-
Uses of Link in com.bayesserver
Methods in com.bayesserver that return Link Modifier and Type Method Description Link
Link. copy(Node from, Node to, int temporalOrder)
Creates a new link, copying the properties from this instance, such asgetDescription()
andgetCustomProperties()
.Link
NetworkLinkCollection. find(Node from, Node to)
Finds a link from one node to another if it exists, otherwise returns null.Link
NetworkLinkCollection. find(Node from, Node to, int temporalOrder)
Finds a link from one node to another if it exists, otherwise returns null.Link
NetworkLinkCollection. get(int index)
Gets theLink
object at the specified index.Link
NodeLinkCollection. get(int index)
Link
NetworkLinkCollection. remove(int index)
Removes an element from the collection at the specified index.Link
NetworkLinkCollection. set(int index, Link value)
Sets theLink
object at the specified index.Methods in com.bayesserver with parameters of type Link Modifier and Type Method Description void
NetworkLinkCollection. add(int index, Link item)
Inserts an element into the collection at the specified index.void
NetworkMonitor. linkCollectionChange(int index, Link add, Link remove, CollectionAction action, boolean complete)
For internal use.void
NetworkMonitor. noisyOrderChanged(Link link, NoisyOrder newNoisyOrder, NoisyOrder oldNoisyOrder)
For internal use.boolean
NetworkLinkCollection. remove(Link item)
Removes theLink
from the collection.static void
ArcReversal. reverse(Link link)
Reverse the direction of aLink
(known as arc reversal).Link
NetworkLinkCollection. set(int index, Link value)
Sets theLink
object at the specified index.Method parameters in com.bayesserver with type arguments of type Link Modifier and Type Method Description static boolean
Dag. isDag(Network network, Iterable<Link> ignore, Iterable<Link> extra)
Determines if a network is a DAG (Directed Acyclic Graph). -
Uses of Link in com.bayesserver.learning.structure
Methods in com.bayesserver.learning.structure that return Link Modifier and Type Method Description Link
ChowLiuLinkOutput. getLink()
Gets the new link.Link
ClusteringLinkOutput. getLink()
Gets the new link.Link
HierarchicalLinkOutput. getLink()
Gets the new link.Link
LinkOutput. getLink()
Gets the new link.Link
PCLinkOutput. getLink()
Gets the new link.Link
SearchLinkOutput. getLink()
Gets the new link.Link
TANLinkOutput. getLink()
Gets the new link.
-