Method and Description |
---|
com.bayesia.api.APIModeling.addChanceIntervalNode(String, String[], double[][])
As of release 3.1, replaced by
APIModeling.addIntervalNode(String, String[], double[][])
Creates a new continuous (interval) chance node with the specified states and the specified limits for each interval and add it to the network. The number of intervals is equal to the number of states. The intervals are given in an array containing, for each one, an array storing the minimum and the maximum of this interval. The intervals are contiguous, i.e. the maximum of an interval is equal to the minimum of the following interval. Its conditional probability table is automatically
generated and initialized with default probabilities. Its name must not exist in the network and must not be "t". "t" is a reserved name for the time counter. |
com.bayesia.api.APIModeling.addChanceLabelNode(String, String[])
As of release 3.1, replaced by
APIModeling.addLabelNode(String, String[])
Creates a new discrete chance node with the specified states and add it to the network. Its conditional probability table is automatically generated and initialized with default probabilities. Its name must not exist in the network and must not be "t". "t" is a reserved name for the time counter. |
com.bayesia.api.APIModeling.getChanceNodeNames()
As of release 3.1, removed
Return an array containing the name of the chance nodes in the network
|
com.bayesia.api.APIModeling.getChanceNodeNumber()
As of release 3.1, removed
Return the number of chance nodes in the network
|
com.bayesia.api.APIModeling.getSortedChanceNodeNames(APIUtils.NODE_SORTING_METHOD, boolean)
As of release 3.1, replaced by
APIModeling.sortNodeNames(String[], APIUtils.NODE_SORTING_METHOD, boolean)
Return an array containing the name of the chance nodes in the network sorted according to the APIUtils.NODE_SORTING_METHOD |
com.bayesia.api.APIModeling.getSortedFunctionNodeNames(APIUtils.NODE_SORTING_METHOD, boolean)
As of release 3.1, replaced by
APIModeling.sortNodeNames(String[], APIUtils.NODE_SORTING_METHOD, boolean)
Return an array containing the name of the function nodes in the network sorted according to the APIUtils.NODE_SORTING_METHOD |
com.bayesia.api.APIModeling.getSortedNodeNames(APIUtils.NODE_SORTING_METHOD, boolean)
As of release 3.1, replaced by
APIModeling.sortNodeNames(String[], APIUtils.NODE_SORTING_METHOD, boolean)
Return an array containing the name of the nodes in the network sorted according to the APIUtils.NODE_SORTING_METHOD |