Interface IEvidenceReaderCommandFactory
Creates evidence reader commands, for repeated iterating of a data set/partition of a data set.
Namespace: BayesServer.Data
Assembly: BayesServer.Data.dll
Syntax
public interface IEvidenceReaderCommandFactory
  Methods
Create(Network)
Create an evidence reader command, based on a specific network which may be a copy of the original.
Declaration
IEvidenceReaderCommand Create(Network network)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Network | network | The network to base the reader on.  | 
      
Returns
| Type | Description | 
|---|---|
| IEvidenceReaderCommand | A new evidence reader command.  | 
      
CreatePartitioned(Network, DataPartitioning, Int32)
Create an evidence reader command on a partition, based on a specific network which may be a copy of the original.
Declaration
IEvidenceReaderCommand CreatePartitioned(Network network, DataPartitioning dataPartitioning, int partitionCount)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Network | network | The network to base the reader on.  | 
      
| DataPartitioning | dataPartitioning | The partition number and method such as include/exclude.  | 
      
| System.Int32 | partitionCount | The total number of partitions.  | 
      
Returns
| Type | Description | 
|---|---|
| IEvidenceReaderCommand | A new evidence reader command.  |