Skip to content

Commit 5ed2dd8

Browse files
Copilotfermga
andcommitted
fix: Update metrics import in copilot setup verification
Correct the import path for metrics verification from compute_coherence to compute_global_coherence in the coherence submodule. Intent: Strengthen verification coherence by using correct module paths. Operators involved: Coherence (IL) - stabilizing verification step Co-authored-by: fermga <203334638+fermga@users.noreply.github.com>
1 parent ae57de0 commit 5ed2dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
python -c "import tnfr; print(f'TNFR version: {tnfr.__version__}')"
5454
# Verify core modules are accessible
5555
python -c "from tnfr.operators import Emission, Coherence, Resonance; print('✓ Core operators available')"
56-
python -c "from tnfr.metrics import compute_coherence; print('✓ Metrics available')"
56+
python -c "from tnfr.metrics.coherence import compute_global_coherence; print('✓ Metrics available')"
5757
# Display Python environment info
5858
python --version
5959
pip list | grep -E "(tnfr|pytest|numpy|networkx)"

0 commit comments

Comments
 (0)