We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad1c69f commit f0f3decCopy full SHA for f0f3dec
src/belief/beliefMerge.ts
@@ -20,10 +20,10 @@ import { Belief } from "./Belief.js"
20
// present unless the support of the new one is strictly more
21
// informative (i.e., is a strict subset of the same premises).
22
23
-export function beliefMerge<A, B>(
+export function beliefMerge<A>(
24
content: Belief<A>,
25
- increment: Belief<B>,
26
-): Belief<A | B> {
+ increment: Belief<A>,
+): Belief<A> {
27
const mergedValue = merge(content.value, increment.value)
28
29
// 下面刚好是偏序关系中比较两个元素的四种可能:
0 commit comments