Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed Sep 8, 2024
1 parent ad1c69f commit f0f3dec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/belief/beliefMerge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import { Belief } from "./Belief.js"
// present unless the support of the new one is strictly more
// informative (i.e., is a strict subset of the same premises).

export function beliefMerge<A, B>(
export function beliefMerge<A>(
content: Belief<A>,
increment: Belief<B>,
): Belief<A | B> {
increment: Belief<A>,
): Belief<A> {
const mergedValue = merge(content.value, increment.value)

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

0 comments on commit f0f3dec

Please sign in to comment.