Conditional Probability Table (CPT) for a DBN node. Stores P(node_state | parent_states) for all combinations of parent states.

The table is indexed by a string key formed by joining parent state values with the "|" separator. Each entry contains a probability distribution over the child node's states.

线程安全:本类不是线程安全的。惰性求值时 GetDistribution 会向 Table 写入 记忆化结果,多个线程并发查询同一个节点会导致 Dictionary 损坏。 调用方需自行保证同一实例的访问是串行的(当前 DBN 的预测/传播链路均为串行)。