Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/quantum-ethics/src/vortex-wavespec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ export function formatVortexReport(result: VortexResult): string {
}

/**
* Calculate Fibonacci-weighted coherence boost
* Apply Fibonacci-weighted boost to coherence score
*/
export function fibonacciCoherenceBoost(
export function applyFibonacciWeightedBoost(
Copy link

Copilot AI Jan 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function has been renamed from fibonacciCoherenceBoost to applyFibonacciWeightedBoost in the source file, but the test file still imports and uses the old function name. All 15+ test references need to be updated to use the new function name applyFibonacciWeightedBoost. This includes the import statement on line 12, the describe block on line 476, and all test function calls throughout the test suite.

Copilot uses AI. Check for mistakes.
baseCoherence: number,
iteration: number,
): number {
Expand Down
Loading