FSharp.Azure.Quantum.Topological
0.4.6
dotnet add package FSharp.Azure.Quantum.Topological --version 0.4.6
NuGet\Install-Package FSharp.Azure.Quantum.Topological -Version 0.4.6
<PackageReference Include="FSharp.Azure.Quantum.Topological" Version="0.4.6" />
<PackageVersion Include="FSharp.Azure.Quantum.Topological" Version="0.4.6" />
<PackageReference Include="FSharp.Azure.Quantum.Topological" />
paket add FSharp.Azure.Quantum.Topological --version 0.4.6
#r "nuget: FSharp.Azure.Quantum.Topological, 0.4.6"
#:package FSharp.Azure.Quantum.Topological@0.4.6
#addin nuget:?package=FSharp.Azure.Quantum.Topological&version=0.4.6
#tool nuget:?package=FSharp.Azure.Quantum.Topological&version=0.4.6
FSharp.Azure.Quantum.Topological
Topological Quantum Computing Library for F#
A topological quantum computing library for F#, implementing anyon models, fusion rules, braiding operators, and gate-to-braid compilation. While topological quantum computing is a fundamentally different paradigm -- information is encoded in the topology of anyon worldlines rather than in quantum amplitudes -- this library integrates seamlessly with the gate-based library (FSharp.Azure.Quantum) via the shared IQuantumBackend interface, enabling standard algorithms (Grover, QFT, Shor, HHL) to run on topological backends.
Features
Mathematical Foundation (Layer 1)
- Anyon Species: Ising (Majorana), Fibonacci, and SU(2)_k particle types with quantum dimensions
- Fusion Rules: Non-abelian fusion algebra (e.g., sigma x sigma = 1 + psi)
- Braiding Operators: R-matrices (braiding phases) and F-matrices (fusion basis changes)
- Modular Data: S-matrix, T-matrix, topological central charge
- Knot Invariants: Kauffman bracket and Jones polynomial via
KauffmanBracket - Consistency Verification: Pentagon and hexagon equation checks
Backends and Operations (Layers 2-3)
- TopologicalUnifiedBackend: Implements
IQuantumBackendfor seamless integration with gate-based algorithms - TopologicalUnifiedBackendFactory: Factory functions (
createIsing,createFibonacci,create) - Fusion Trees: Quantum state representation as recursive tree structures
- TopologicalOperations: Braiding, fusion measurement, superposition management
Algorithms and Compilation (Layers 4-5)
- Magic State Distillation: 15-to-1 protocol for Ising anyon universality
- Toric Code: Topological error correction with MWPM decoder
- Surface Code Variants: Planar code (open boundaries, boundary matching) and color code (4.8.8 lattice, greedy decoder)
- Anyonic Error Correction: Fusion-tree-level charge violation detection, syndrome extraction, greedy charge-correction decoder, code space projection
- Gate-to-Braid Compilation: Translate gate-based circuits to braid sequences (21 gate types)
- Braid-to-Gate: Convert braid sequences back to gate operations
- Solovay-Kitaev: Gate approximation for efficient braid decomposition
- Algorithm Extensions: Run Grover, QFT, Shor, and HHL on topological backends via
IQuantumBackend - Knot Invariants: Kauffman bracket, Jones polynomial, and standard knot constructors (trefoil, figure-eight, Hopf link, etc.)
Developer Experience (Layer 6)
- Computation Expressions:
topological backend { ... }builder for composing programs - TopologicalFormat: Import/export
.tqpfiles (human-readable format) - Noise Models: Configurable noise simulation for realistic error modelling
- Visualization: State visualization and debugging utilities
- TopologicalHelpers: Complex number utilities and display formatting
Installation
# Build the library
dotnet build src/FSharp.Azure.Quantum.Topological/FSharp.Azure.Quantum.Topological.fsproj
# Run tests
dotnet test tests/FSharp.Azure.Quantum.Topological.Tests/FSharp.Azure.Quantum.Topological.Tests.fsproj
Quick Start
Low-level API: Fusion and braiding primitives
open FSharp.Azure.Quantum.Topological
// Define Ising anyons
let sigma = AnyonSpecies.Particle.Sigma
let ising = AnyonSpecies.AnyonType.Ising
// Fuse two sigma anyons (non-abelian!)
let outcomes = FusionRules.fuse sigma sigma ising
// Result: [Vacuum; Psi] - two possible outcomes encode a qubit
// Get braiding phase
let R = BraidingOperators.element sigma sigma AnyonSpecies.Particle.Vacuum ising
// Result: e^(i*pi/8) - topological phase from braiding
// Check quantum dimension
let d = AnyonSpecies.quantumDimension sigma
// Result: sqrt(2) ~ 1.414
Computation expression: Backend-agnostic programs
open FSharp.Azure.Quantum.Topological
let backend = TopologicalUnifiedBackendFactory.createIsing 10
let program = topological backend {
let! state = initialize AnyonSpecies.AnyonType.Ising 4 // Create 4 sigma anyons
do! braid 0 // Braid anyons 0 and 1
do! braid 2 // Braid anyons 2 and 3
let! outcome = measure 0 // Measure fusion of pair 0
return outcome
}
Running gate-based algorithms on topological backends
open FSharp.Azure.Quantum.Topological
// The topological backend implements IQuantumBackend, so standard algorithms work directly
let backend = TopologicalUnifiedBackendFactory.createIsing 20
// Grover search on topological backend (gate-to-braid compilation happens automatically)
let groverResult = AlgorithmExtensions.searchSingleWithTopology 42 8 backend config
// QFT on topological backend
let qftResult = AlgorithmExtensions.qftWithTopology 4 backend qftConfig
// Shor's factoring on topological backend
let shorResult = AlgorithmExtensions.factor15WithTopology backend
Railway-oriented composition
let backend = TopologicalUnifiedBackendFactory.createIsing 10
// Sequential operations using Result.bind
match backend.InitializeState 2 with
| Ok state ->
match backend.ApplyOperation (QuantumOperation.Braid 0) state with
| Ok braided ->
match backend.ApplyOperation (QuantumOperation.Measure 0) braided with
| Ok measured -> printfn "Measured: %A" measured
| Error e -> printfn "Measure error: %s" e.Message
| Error e -> printfn "Braid error: %s" e.Message
| Error e -> printfn "Init error: %s" e.Message
Test Coverage
807 unit tests covering all 29 modules across 6 architectural layers:
dotnet test tests/FSharp.Azure.Quantum.Topological.Tests/
Tests validate mathematical consistency (Pentagon/Hexagon equations, unitarity, fusion axioms), backend operations, computation expressions, format parsing, knot invariants, magic state distillation, and more.
Architecture
The library follows a strictly layered architecture that mirrors the gate-based library's structure, integrating via the shared IQuantumBackend interface:
Layer 6: Builders & Formats TopologicalBuilder, TopologicalFormat, Visualization,
TopologicalHelpers
Layer 5: Compilation GateToBraid, BraidToGate, SolovayKitaev, CircuitOptimization,
AlgorithmExtensions
Layer 4: Algorithms MagicStateDistillation, ToricCode, SurfaceCode,
AnyonicErrorCorrection, ErrorPropagation
Layer 3: Operations TopologicalOperations, FusionTree
Layer 2: Backends TopologicalUnifiedBackend, TopologicalUnifiedBackendFactory
Layer 1: Mathematical Foundation AnyonSpecies, FusionRules, BraidingOperators, FMatrix,
RMatrix, ModularData, BraidGroup, BraidingConsistency,
EntanglementEntropy, KauffmanBracket, KnotConstructors
Why a Separate Package?
| Gate-Based (FSharp.Azure.Quantum) | Topological (This Library) |
|---|---|
| Qubits, gates, circuits | Anyons, braiding, fusion |
| Amplitude vectors | Fusion trees |
| Z-basis measurement | Fusion outcome measurement |
| Error-prone (needs QEC) | Topologically protected |
| Azure Quantum integration | Simulator + IQuantumBackend integration |
Note: While the paradigms differ, the topological backend implements IQuantumBackend from the gate-based library, enabling standard algorithms (Grover, QFT, Shor, HHL) to run on topological backends via automatic gate-to-braid compilation.
Namespace Structure
FSharp.Azure.Quantum.Topological
Layer 1: AnyonSpecies, FusionRules, BraidingOperators, FMatrix, RMatrix,
ModularData, BraidGroup, BraidingConsistency, EntanglementEntropy,
KauffmanBracket, KnotConstructors
Layer 2: TopologicalUnifiedBackend, TopologicalUnifiedBackendFactory
Layer 3: FusionTree, TopologicalOperations
Layer 4: MagicStateDistillation, ToricCode, SurfaceCode,
AnyonicErrorCorrection, ErrorPropagation
Layer 5: GateToBraid, BraidToGate, SolovayKitaev, CircuitOptimization,
AlgorithmExtensions
Layer 6: TopologicalBuilder, TopologicalBuilderExtensions, TopologicalFormat,
NoiseModels, Visualization, TopologicalHelpers, TopologicalError
Examples
Working examples are in examples/Topological/:
| Example | Description |
|---|---|
BasicFusion.fsx |
Fusion rules and anyon properties |
BellState.fsx |
Topological Bell state preparation |
BackendComparison.fsx |
Compare simulator backends |
FormatDemo.fsx |
.tqp format import/export |
MagicStateDistillation.fsx |
T-gate via 15-to-1 distillation |
ModularDataExample.fsx |
S/T matrices and modular invariants |
KauffmanJones.fsx |
Knot invariants from braiding |
TopologicalExample.fsx |
General topological operations |
TopologicalVisualization.fsx |
State visualization |
ToricCodeExample.fsx |
Toric code error correction |
bell-state.tqp |
Sample .tqp program file |
Documentation
- Architecture Guide -- Layered design, module dependencies, design principles
- Developer Deep Dive -- Comprehensive guide: paradigm shift, anyons, braiding, practical F# patterns
- Universal Quantum Computation -- Magic state distillation for Ising anyon universality
- Format Specification --
.tqpfile format reference
Background: Topological Quantum Computing
What are Anyons?
Anyons are quasiparticles in 2D systems with exotic exchange statistics -- neither bosonic nor fermionic. When you braid anyons around each other, the quantum state accumulates a topological phase that depends only on the braid pattern, not the specific path. This topological protection makes the stored quantum information exponentially resistant to local noise.
Implemented Anyon Theories
Ising Anyons (SU(2)_2) -- Microsoft's Majorana zero mode approach. Particles: {1, sigma, psi}. Supports Clifford gates natively; needs magic state distillation for universality. Physically realizable.
Fibonacci Anyons -- Universal for quantum computation via braiding alone. Particles: {1, tau}. Golden ratio phi appears throughout. Not yet physically realized.
SU(2)_k (General) -- Framework for arbitrary Chern-Simons levels with computational basis encoding. k=2 (Ising) and k=3 are tested. SpinJ particles with truncated spins for any level k.
Future Work
- Azure Quantum Majorana: Hardware backend integration (when available)
- Performance: GPU acceleration, sparse matrices, parallel braiding
- Advanced Noise Models: Thermal excitation, braiding imprecision beyond current NoiseModels
References
- Topological Quantum by Steven H. Simon (2023) -- Chapters 8-11
- Anyons in an exactly solved model and beyond -- Kitaev (2006)
- Non-Abelian Anyons and Topological Quantum Computation -- Nayak et al. (2008)
- Microsoft Quantum Documentation -- Majorana-based quantum computing
License
Same as parent project (FSharp.Azure.Quantum).
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- FSharp.Azure.Quantum (>= 1.4.6)
- FSharp.Core (>= 10.1.301)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.4.6 | 93 | 7/11/2026 |
| 0.4.5 | 98 | 7/6/2026 |
| 0.4.4 | 101 | 7/3/2026 |
| 0.4.3 | 104 | 7/1/2026 |
| 0.4.2 | 101 | 6/30/2026 |
| 0.4.1 | 115 | 6/12/2026 |
| 0.3.11 | 132 | 3/31/2026 |
| 0.3.10 | 133 | 2/22/2026 |
| 0.3.9 | 119 | 2/19/2026 |
| 0.3.8 | 119 | 2/18/2026 |
| 0.3.7 | 117 | 2/17/2026 |
| 0.3.6 | 128 | 2/13/2026 |
| 0.3.5 | 123 | 2/10/2026 |
| 0.3.4 | 139 | 1/25/2026 |
| 0.3.3 | 220 | 12/20/2025 |
| 0.3.2 | 200 | 12/13/2025 |
| 0.3.1 | 460 | 12/11/2025 |
| 0.2.9 | 468 | 12/8/2025 |
| 0.2.1 | 353 | 12/7/2025 |
v0.4.6: Correctness release — full-library audit (critical + high-severity fixes)
Additional high-severity fixes in this release:
- SU(2)_k R-symbols compute the exchange eigenvalue (were the monodromy — hexagon identities now hold to machine precision; Fibonacci subcategory of SU(2)_3 reproduces the hardcoded Fibonacci values exactly)
- BraidingOperators routes all F-symbols through the pentagon-verified FMatrix module (vacuum-leg F-moves complete and unitary; two Ising sign errors and a non-unitary Fibonacci symbol fixed)
- Entanglement entropy diagonalizes the true complex Hermitian density matrix (was Re(ρ) only, and the Jacobi rotation itself was wrong even for real matrices)
- Channel-flip gates (X/Y/H/CNOT/SWAP/RX/RY) rebuild fusion-tree intermediate charges and the parity pair — post-gate states pass validateState; error correction no longer rewrites legitimate states; Fibonacci trees get τ channels (not Ising ψ)
- Kauffman bracket Planar evaluator fixed (two pre-existing bugs: dead arc endpoints inflated loop counts; state weights ignored crossing signs) — trefoil/Hopf/figure-eight now yield the true bracket polynomials and |V(-1)| = knot determinant; figureEight constructor replaced (previous diagram was not the figure-eight knot); the simplified crossing-list evaluator is documented as a curl approximation, not an invariant
- measureAll clamps cumulative-probability sampling and rejects empty superpositions
v0.4.6 critical fixes (earlier batch):
- FIXED: Fusion-space dimension and basis enumeration (left-associated recursion; dim([s;s;s] -> s) was 0, now correctly 2; O(n·k²) dynamic programming instead of exponential recursion)
- FIXED: Toric-code decoder applied the wrong Pauli type per syndrome (never corrected anything); correction paths carry per-segment edge types with correct wrap-around offsets
- FIXED: Gate-to-braid compilation uses leaf indexing (qubit q = leaves 2q, 2q+1) — S/Z/Rz on qubits above 0 previously acted as identity; BraidToGate reverse compiler aligned (including the parity-pair exchange)
- FIXED: Fusion measurement uses the state's actual amplitudes (Born rule) with the correct canonical d_c/(d_a·d_b) fallback; builder measurement samples outcomes and keeps the full collapsed superposition
- FIXED: Backend executes CircuitBuilder circuits in program order (was reversed)
- FIXED: Exact amplitude-level intercepts for RZ/P (QFT/QPE phases exact — previously snapped to π/2 multiples) plus new RX/RY; intercepts now also apply to Fibonacci
- FIXED: Magic-state preparation uses valid fusion-tree intermediate charges
- CHANGED: Braid compilations that cannot be realized (H/X/Y/CZ via Ising within-pair braiding, cross-pair braids on multi-pair encodings, non-π/2 rotations) return explicit errors instead of silently wrong braid sequences; Solovay-Kitaev docs state the diagonal-only reachable set
- Requires FSharp.Azure.Quantum v1.4.6+
v0.4.3: Rebuilt against FSharp.Azure.Quantum v1.4.3
- No functional changes; keeps version in step with the core package
v0.4.2: Braid-to-gate execution
- NEW: BraidToGate.toCircuit / compileToCircuit - compile a braid word to a gate-based Circuit
- NEW: BraidToGate.executeOnGateBackend - run a topological (braid) program on any gate-based IQuantumBackend (local simulator or gate cloud) for cross-validation
- Requires FSharp.Azure.Quantum v1.3.10+
v0.4.1: Dependency updates
- UPDATED: FSharp.Core to 10.1.301
- No functional changes
v0.4.0: Majorana 2 (InAs–Pb tetron) hardware support
- NEW: DeviceProfile module with majorana1 (Al–InAs) and majorana2 (InAs–Pb) hardware profiles capturing measured physics (topological gap, Majorana splitting, parity lifetime, parent gap)
- NEW: NoiseModels.realisticTopologicalMajorana2 — parity lifetime τ_Z ≈ 22 s, poisoning ≈ 0.045 Hz, derived from the June 2026 InAs–Pb tetron result
- CHANGED: NoiseModels.realisticTopological now defaults to Majorana 2; the previous Al–InAs preset is preserved as realisticTopologicalMajorana1
- Requires FSharp.Azure.Quantum v1.3.10+
v0.3.10: Async backend integration
- NEW: TopologicalBackend now implements async IQuantumBackend members (ExecuteToStateAsync, ApplyOperationAsync)
- IMPROVED: Aligned with FSharp.Azure.Quantum v1.3.10 async API additions