Interface: FuzzyProveRequest
@kortexya/reasoninglayer / Inference / FuzzyProveRequest
Interface: FuzzyProveRequest
Defined in: src/types/inference.ts:311
Request for fuzzy proof search.
Remarks
Dual input mode: Provide EITHER goal OR goal_id, same as backward chaining.
Properties
goal?
optionalgoal:TermInputDto|null
Defined in: src/types/inference.ts:313
Inline goal. Mutually exclusive with goal_id.
goalId?
optionalgoalId:string|null
Defined in: src/types/inference.ts:315
Saved goal reference. Mutually exclusive with goal.
maxSolutions?
optionalmaxSolutions:number
Defined in: src/types/inference.ts:319
Maximum number of solutions.
minDegree?
optionalminDegree:number
Defined in: src/types/inference.ts:317
Minimum degree threshold (0.0 to 1.0).
openWorld?
optionalopenWorld:boolean
Defined in: src/types/inference.ts:321
Whether to use open-world semantics.
saveGoal?
optionalsaveGoal:boolean
Defined in: src/types/inference.ts:323
Whether to persist the goal for later reuse.
tnorm?
optionaltnorm:string
Defined in: src/types/inference.ts:325
T-norm strategy: “min”, “product”, or “lukasiewicz”.