Interface: FuzzyProveRequest
@kortexya/reasoninglayer / Inference / FuzzyProveRequest
Interface: FuzzyProveRequest
Defined in: src/types/inference.ts:300
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:302
Inline goal. Mutually exclusive with goal_id.
goalId?
optionalgoalId:string|null
Defined in: src/types/inference.ts:304
Saved goal reference. Mutually exclusive with goal.
maxSolutions?
optionalmaxSolutions:number
Defined in: src/types/inference.ts:308
Maximum number of solutions.
minDegree?
optionalminDegree:number
Defined in: src/types/inference.ts:306
Minimum degree threshold (0.0 to 1.0).
openWorld?
optionalopenWorld:boolean
Defined in: src/types/inference.ts:310
Whether to use open-world semantics.
saveGoal?
optionalsaveGoal:boolean
Defined in: src/types/inference.ts:312
Whether to persist the goal for later reuse.
tnorm?
optionaltnorm:string
Defined in: src/types/inference.ts:314
T-norm strategy: “min”, “product”, or “lukasiewicz”.