@sigloch/se-engine 1.6.0 → 1.6.1
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/metrics.d.ts +1 -1
- package/dist/metrics.js +6 -1
- package/package.json +1 -1
package/dist/metrics.d.ts
CHANGED
|
@@ -49,6 +49,6 @@ export { projectLayer, weightNodes, ARCH_TYPES, type MetricLayer } from './layer
|
|
|
49
49
|
export { CLASS_MAP, classOf, classifyAll, classificationStats, type RuleClass, type Classification, type ClassifiedRule, type ClassificationStats, } from './rule-classify.js';
|
|
50
50
|
export { applyRule, markEmptyDelta, type ApplyResult, type DeltaMark } from './rule-apply.js';
|
|
51
51
|
export { suggestEdits, type Suggestion, type SuggestOptions } from './suggest.js';
|
|
52
|
-
export { steerScore, beatsBySteer, STEER_RULES, EPS_AUGMENT, type SteerScore, type SteerCandidate } from './steer.js';
|
|
52
|
+
export { steerScore, steerTerms, beatsBySteer, STEER_RULES, EPS_AUGMENT, type SteerScore, type SteerTerm, type SteerCandidate, } from './steer.js';
|
|
53
53
|
export { fixFor, mentionedElements, FIX_TEMPLATES, mergeCandidates, applyMergeEdit, contractSimilarity, MERGE_OPERATOR_ID, MERGE_SIMILARITY_THRESHOLD, type SuggestedEdit, } from './fix-templates.js';
|
|
54
54
|
export { buildAdjacency, betweenness, maxBetweenness, detectCommunities, modularityOf, modularityQ, redundancyDensity, intraEdgeFraction, components, componentSizes, sourceSinkPaths, type Adjacency, } from './topology.js';
|
package/dist/metrics.js
CHANGED
|
@@ -94,6 +94,11 @@ export { CLASS_MAP, classOf, classifyAll, classificationStats, } from './rule-cl
|
|
|
94
94
|
export { applyRule, markEmptyDelta } from './rule-apply.js';
|
|
95
95
|
export { suggestEdits } from './suggest.js';
|
|
96
96
|
// CR-SM-292: der Ranking-Score. `targetFor` ist mit dem ℝ⁶-Ranking ersatzlos entfallen.
|
|
97
|
-
|
|
97
|
+
// CR-SM-340: `steerTerms`/`SteerTerm` sind hier nachgetragen. CR-SM-337 hat sie gebaut, damit
|
|
98
|
+
// der Host den Steuerungsraum EXPORTIEREN kann, statt die Normierung ein zweites Mal zu
|
|
99
|
+
// schreiben — und genau diese Zeile hat sie nicht durchgereicht. Die Funktion war da, die Tuer
|
|
100
|
+
// nicht; `package.json` kennt nur `"."`, ein Tiefimport ist also versperrt. Gemessen an
|
|
101
|
+
// graphcode: `import { steerTerms } from '@sigloch/se-engine'` warf SyntaxError.
|
|
102
|
+
export { steerScore, steerTerms, beatsBySteer, STEER_RULES, EPS_AUGMENT, } from './steer.js';
|
|
98
103
|
export { fixFor, mentionedElements, FIX_TEMPLATES, mergeCandidates, applyMergeEdit, contractSimilarity, MERGE_OPERATOR_ID, MERGE_SIMILARITY_THRESHOLD, } from './fix-templates.js';
|
|
99
104
|
export { buildAdjacency, betweenness, maxBetweenness, detectCommunities, modularityOf, modularityQ, redundancyDensity, intraEdgeFraction, components, componentSizes, sourceSinkPaths, } from './topology.js';
|