@coreason-ai/coreason-manifest 0.84.1 → 0.85.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ontology.d.ts +5 -0
- package/package.json +1 -1
package/dist/ontology.d.ts
CHANGED
|
@@ -3065,6 +3065,10 @@ export type IsSpeculative = boolean;
|
|
|
3065
3065
|
* The assigned mathematical likelihood that the speculative branch will merge successfully.
|
|
3066
3066
|
*/
|
|
3067
3067
|
export type CommitProbability = number;
|
|
3068
|
+
/**
|
|
3069
|
+
* The target probability threshold above which a speculative branch is successfully merged.
|
|
3070
|
+
*/
|
|
3071
|
+
export type ThresholdTarget = number;
|
|
3068
3072
|
/**
|
|
3069
3073
|
* CIDs referencing the deterministic states the orchestrator must rewind to upon branch falsification.
|
|
3070
3074
|
*
|
|
@@ -10951,6 +10955,7 @@ export interface SpeculativeExecutionPolicy {
|
|
|
10951
10955
|
boundary_cid: BoundaryCid;
|
|
10952
10956
|
is_speculative?: IsSpeculative;
|
|
10953
10957
|
commit_probability: CommitProbability;
|
|
10958
|
+
threshold_target?: ThresholdTarget;
|
|
10954
10959
|
rollback_pointers?: RollbackPointers;
|
|
10955
10960
|
competing_hypotheses?: CompetingHypotheses;
|
|
10956
10961
|
}
|
package/package.json
CHANGED