Uses of Interface
edu.duke.cs.banjo.bayesnet.EdgesI

Packages that use EdgesI
edu.duke.cs.banjo.bayesnet   
edu.duke.cs.banjo.utility   
 

Uses of EdgesI in edu.duke.cs.banjo.bayesnet
 

Subinterfaces of EdgesI in edu.duke.cs.banjo.bayesnet
 interface EdgesWithCachedStatisticsI
          Documents the interface for creating an EdgesAsMatrixWithCachedStatistics implementation.
 

Classes in edu.duke.cs.banjo.bayesnet that implement EdgesI
 class EdgesAsArray
          Contains the basic adjacency matrix implementation, using a 1-dimensional array.
 class EdgesAsArrayWithCachedStatistics
          Contains the data structures built around an adjacency matrix-approach for storing the network structure, using a 1-dimensional array.
 class EdgesAsMatrix
          Contains the basic adjacency matrix implementation.
 class EdgesAsMatrixWithCachedStatistics
          Contains the data structures built around an adjacency matrix-approach for storing the network structure.
 

Methods in edu.duke.cs.banjo.bayesnet that return EdgesI
 EdgesI BayesNetStructureI.getNetworkStructure()
           
 EdgesI BayesNetStructure.getNetworkStructure()
           
 

Methods in edu.duke.cs.banjo.bayesnet with parameters of type EdgesI
 void EdgesI.assignMatrix(EdgesI edges)
           
 boolean EdgesI.hasIdenticalEntries(EdgesI otherEdges)
           
 boolean EdgesAsMatrixWithCachedStatistics.hasIdenticalEntries(EdgesI _otherMatrix)
           
 void EdgesAsMatrix.assignMatrix(EdgesI _edges)
           
 boolean EdgesAsMatrix.hasIdenticalEntries(EdgesI _otherMatrix)
           
 boolean EdgesAsArrayWithCachedStatistics.hasIdenticalEntries(EdgesI _otherMatrix)
           
 void EdgesAsArray.assignMatrix(EdgesI _edgeMatrix)
           
 boolean EdgesAsArray.hasIdenticalEntries(EdgesI _otherMatrix)
           
 void BayesNetStructureI.assignBayesNetStructure(EdgesI networkStructure, double networkScore, long searchLoopIndex)
           
 void BayesNetStructureI.setNetworkStructure(EdgesI networkStructure)
           
 void BayesNetStructure.assignBayesNetStructure(EdgesI _networkStructure, double _networkScore, long _searchLoopIndex)
           
 void BayesNetStructure.setNetworkStructure(EdgesI networkStructure)
           
 

Uses of EdgesI in edu.duke.cs.banjo.utility
 

Methods in edu.duke.cs.banjo.utility that return EdgesI
 EdgesI PostProcessor.computeConsensusGraph(java.util.TreeSet nBestStructures)
           
 

Methods in edu.duke.cs.banjo.utility with parameters of type EdgesI
 java.lang.StringBuffer PostProcessor.composeDotGraph(EdgesI _bayesNetStructure, java.lang.String _networkLabel, double _networkScore)
           
 java.lang.String PostProcessor.createLabel(EdgesI _bayesNetStructure, java.lang.String _networkLabel, double _networkScore)
           
 java.lang.StringBuffer InfluenceScorer.computeInfluenceScoreForNode(EdgesI _edges, int _currentNodeID)