Skip to content

Commit f0f3dec

Browse files
committed
up
1 parent ad1c69f commit f0f3dec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/belief/beliefMerge.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import { Belief } from "./Belief.js"
2020
// present unless the support of the new one is strictly more
2121
// informative (i.e., is a strict subset of the same premises).
2222

23-
export function beliefMerge<A, B>(
23+
export function beliefMerge<A>(
2424
content: Belief<A>,
25-
increment: Belief<B>,
26-
): Belief<A | B> {
25+
increment: Belief<A>,
26+
): Belief<A> {
2727
const mergedValue = merge(content.value, increment.value)
2828

2929
// 下面刚好是偏序关系中比较两个元素的四种可能:

0 commit comments

Comments
 (0)