File size: 98,109 Bytes
07b428c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 | /*
* quhit_triality.c β The Triality Quhit Implementation
*
* Three views. One state. Every gate finds its cheapest mirror.
*
* Edge = Yellow square = computational basis
* Vertex = Cyan square = Fourier basis (DFTβ)
* Diag = Magenta square = conjugate Fourier (DFTβΒ²)
*
* Rule: Edge of A = Vertex of B = Diagonal of C (cyclic)
*
*/
#include <string.h>
#include <math.h>
#include <stdio.h>
#include "quhit_triality.h"
#include "s6_exotic.h"
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* Οβ TABLES β precomputed roots of unity
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
static const double W6_RE[6] = {
1.0, 0.5, -0.5, -1.0, -0.5, 0.5
};
static const double W6_IM[6] = {
0.0, 0.86602540378443864676, 0.86602540378443864676,
0.0, -0.86602540378443864676, -0.86602540378443864676
};
/* Inverse Ο: Ο^(-jk) = conjugate of Ο^(jk) */
static const double W6I_RE[6] = {
1.0, 0.5, -0.5, -1.0, -0.5, 0.5
};
static const double W6I_IM[6] = {
0.0, -0.86602540378443864676, -0.86602540378443864676,
0.0, 0.86602540378443864676, 0.86602540378443864676
};
static const double INV_SQRT6 = 0.40824829046386301637; /* 1/β6 */
static const double INV_SQRT2 = 0.70710678118654752440; /* 1/β2 */
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* STATISTICS
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
TrialityStats triality_stats = {0};
void triality_stats_reset(void) {
memset(&triality_stats, 0, sizeof(triality_stats));
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* DFTβ PRIMITIVES β The view conversion engine
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* Forward DFTβ: out[j] = (1/β6) Ξ£_k in[k] Γ Ο^(jk) */
static void dft6_forward(const double *in_re, const double *in_im,
double *out_re, double *out_im)
{
for (int j = 0; j < 6; j++) {
double sr = 0, si = 0;
for (int k = 0; k < 6; k++) {
int idx = (j * k) % 6;
double wr = W6_RE[idx], wi = W6_IM[idx];
sr += in_re[k] * wr - in_im[k] * wi;
si += in_re[k] * wi + in_im[k] * wr;
}
out_re[j] = sr * INV_SQRT6;
out_im[j] = si * INV_SQRT6;
}
}
/* Inverse DFTβ: out[k] = (1/β6) Ξ£_j in[j] Γ Ο^(-jk) */
static void dft6_inverse(const double *in_re, const double *in_im,
double *out_re, double *out_im)
{
for (int k = 0; k < 6; k++) {
double sr = 0, si = 0;
for (int j = 0; j < 6; j++) {
int idx = (j * k) % 6;
double wr = W6I_RE[idx], wi = W6I_IM[idx];
sr += in_re[j] * wr - in_im[j] * wi;
si += in_re[j] * wi + in_im[j] * wr;
}
out_re[k] = sr * INV_SQRT6;
out_im[k] = si * INV_SQRT6;
}
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* LIFECYCLE
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_init(TrialityQuhit *q) {
memset(q, 0, sizeof(TrialityQuhit));
q->edge_re[0] = 1.0; /* |0β© in computational basis */
/* Compute the correct views of |0β© via DFTβ */
dft6_forward(q->edge_re, q->edge_im, q->vertex_re, q->vertex_im);
dft6_forward(q->vertex_re, q->vertex_im, q->diag_re, q->diag_im);
q->dirty = DIRTY_FOLDED | DIRTY_EXOTIC | DIRTY_TETRA;
q->primary = VIEW_EDGE;
/* Enhancement flags */
q->eigenstate_class = -1;
q->active_mask = 0x01; /* only |0β© is active */
q->active_count = 1;
q->real_valued = 1; /* |0β© is real */
q->delta_valid = 0; /* Fix #5: exotic cache starts invalid */
q->exotic_syntheme = 0; /* default exotic: {(0,1),(2,3),(4,5)} */
}
void triality_init_basis(TrialityQuhit *q, int k) {
memset(q, 0, sizeof(TrialityQuhit));
q->edge_re[k] = 1.0;
q->dirty = DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC | DIRTY_TETRA;
q->primary = VIEW_EDGE;
q->eigenstate_class = -1;
q->active_mask = (uint8_t)(1 << k);
q->active_count = 1;
q->real_valued = 1;
q->delta_valid = 0; /* Fix #5 */
q->exotic_syntheme = 0;
}
void triality_copy(TrialityQuhit *dst, const TrialityQuhit *src) {
memcpy(dst, src, sizeof(*dst));
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* VIEW MANAGEMENT β Lazy conversion
*
* The three views are related by DFTβ:
* vertex = DFTβ(edge)
* diag = DFTβ(vertex) = DFTβΒ²(edge)
* edge = DFTβ(diag) = DFTβΒ³(edge) = identity
*
* So DFTβ cycles: edge β vertex β diagonal β edge
* And IDFTβ cycles: edge β diagonal β vertex β edge
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
static double *view_re(TrialityQuhit *q, int v) {
switch(v) {
case VIEW_EDGE: return q->edge_re;
case VIEW_VERTEX: return q->vertex_re;
case VIEW_DIAGONAL: return q->diag_re;
case VIEW_FOLDED: return q->folded_re;
}
return q->edge_re;
}
static double *view_im(TrialityQuhit *q, int v) {
switch(v) {
case VIEW_EDGE: return q->edge_im;
case VIEW_VERTEX: return q->vertex_im;
case VIEW_DIAGONAL: return q->diag_im;
case VIEW_FOLDED: return q->folded_im;
}
return q->edge_im;
}
static int view_dirty_bit(int v) {
return 1 << v;
}
/* ββ Antipodal fold primitives (Stage 1 of Cooley-Tukey DFTβ) ββ */
/* Forward fold: pair (k, k+3) into vesica (sum) and wave (difference)
* folded[k] = (edge[k] + edge[k+3]) / β2 for k=0,1,2 (vesica)
* folded[k+3] = (edge[k] - edge[k+3]) / β2 for k=0,1,2 (wave) */
static void fold_forward(const double *in_re, const double *in_im,
double *out_re, double *out_im)
{
for (int k = 0; k < 3; k++) {
double a_re = in_re[k], a_im = in_im[k];
double b_re = in_re[k + 3], b_im = in_im[k + 3];
out_re[k] = INV_SQRT2 * (a_re + b_re);
out_im[k] = INV_SQRT2 * (a_im + b_im);
out_re[k + 3] = INV_SQRT2 * (a_re - b_re);
out_im[k + 3] = INV_SQRT2 * (a_im - b_im);
}
}
/* Inverse fold: reconstruct edge from folded (vesica + wave) */
static void fold_inverse(const double *in_re, const double *in_im,
double *out_re, double *out_im)
{
for (int k = 0; k < 3; k++) {
double v_re = in_re[k], v_im = in_im[k];
double w_re = in_re[k + 3], w_im = in_im[k + 3];
out_re[k] = INV_SQRT2 * (v_re + w_re);
out_im[k] = INV_SQRT2 * (v_im + w_im);
out_re[k + 3] = INV_SQRT2 * (v_re - w_re);
out_im[k + 3] = INV_SQRT2 * (v_im - w_im);
}
}
/* Folded β Vertex: apply twiddle + DFTβ (Stages 2-3 of Cooley-Tukey)
* This completes DFTβ from the folded intermediate. Cost: O(12). */
static void folded_to_vertex(const double *fold_re, const double *fold_im,
double *vert_re, double *vert_im)
{
static const double w3_re = -0.5;
static const double w3_im = 0.86602540378443864676;
static const double n3 = 0.57735026918962576451; /* 1/β3 */
/* Stage 2: twiddle Οβ^(sΒ·p) β only affects p=1 entries (indices 3,4,5) */
double tw_re[6], tw_im[6];
memcpy(tw_re, fold_re, 6 * sizeof(double));
memcpy(tw_im, fold_im, 6 * sizeof(double));
/* s=1,p=1 (index 4): multiply by Οβ^1 */
{
double r = tw_re[4], i = tw_im[4];
tw_re[4] = W6_RE[1] * r - W6_IM[1] * i;
tw_im[4] = W6_RE[1] * i + W6_IM[1] * r;
}
/* s=2,p=1 (index 5): multiply by Οβ^2 */
{
double r = tw_re[5], i = tw_im[5];
tw_re[5] = W6_RE[2] * r - W6_IM[2] * i;
tw_im[5] = W6_RE[2] * i + W6_IM[2] * r;
}
/* Stage 3: DFTβ β Iβ per parity */
for (int p = 0; p < 2; p++) {
double a_re = tw_re[0 + p*3], a_im = tw_im[0 + p*3];
double b_re = tw_re[1 + p*3], b_im = tw_im[1 + p*3];
double c_re = tw_re[2 + p*3], c_im = tw_im[2 + p*3];
/* j=0: (a + b + c) / β3 */
vert_re[p] = n3 * (a_re + b_re + c_re);
vert_im[p] = n3 * (a_im + b_im + c_im);
/* j=1: (a + ΟβΒ·b + ΟβΒ²Β·c) / β3 */
double wb_re = w3_re * b_re - w3_im * b_im;
double wb_im = w3_re * b_im + w3_im * b_re;
double wc_re = w3_re * c_re + w3_im * c_im;
double wc_im = w3_re * c_im - w3_im * c_re;
vert_re[2 + p] = n3 * (a_re + wb_re + wc_re);
vert_im[2 + p] = n3 * (a_im + wb_im + wc_im);
/* j=2: (a + ΟβΒ²Β·b + ΟβΒ·c) / β3 */
double w2b_re = w3_re * b_re + w3_im * b_im;
double w2b_im = w3_re * b_im - w3_im * b_re;
double w2c_re = w3_re * c_re - w3_im * c_im;
double w2c_im = w3_re * c_im + w3_im * c_re;
vert_re[4 + p] = n3 * (a_re + w2b_re + w2c_re);
vert_im[4 + p] = n3 * (a_im + w2b_im + w2c_im);
}
}
static void convert_view(TrialityQuhit *q, int from, int to) {
double *src_re = view_re(q, from), *src_im = view_im(q, from);
double *dst_re = view_re(q, to), *dst_im = view_im(q, to);
/* Handle folded view conversions */
if (from <= VIEW_DIAGONAL && to == VIEW_FOLDED) {
/* Need edge view first */
if (from != VIEW_EDGE) {
triality_ensure_view(q, VIEW_EDGE);
src_re = q->edge_re; src_im = q->edge_im;
}
fold_forward(src_re, src_im, dst_re, dst_im);
triality_stats.edge_to_folded++;
return;
}
if (from == VIEW_FOLDED && to == VIEW_EDGE) {
fold_inverse(src_re, src_im, dst_re, dst_im);
return;
}
if (from == VIEW_FOLDED && to == VIEW_VERTEX) {
folded_to_vertex(src_re, src_im, dst_re, dst_im);
triality_stats.folded_to_vertex++;
return;
}
if (from == VIEW_FOLDED) {
/* Folded β anything else: go via edge */
triality_ensure_view(q, VIEW_EDGE);
convert_view(q, VIEW_EDGE, to);
return;
}
/* Standard 3-view conversion */
int steps = (to - from + 3) % 3; /* 1 = one DFTβ, 2 = one IDFTβ */
if (steps == 1) {
dft6_forward(src_re, src_im, dst_re, dst_im);
} else if (steps == 2) {
dft6_inverse(src_re, src_im, dst_re, dst_im);
}
/* Track statistics */
if (from == VIEW_EDGE && to == VIEW_VERTEX) triality_stats.edge_to_vertex++;
if (from == VIEW_EDGE && to == VIEW_DIAGONAL) triality_stats.edge_to_diag++;
if (from == VIEW_VERTEX && to == VIEW_EDGE) triality_stats.vertex_to_edge++;
if (from == VIEW_VERTEX && to == VIEW_DIAGONAL) triality_stats.vertex_to_diag++;
if (from == VIEW_DIAGONAL && to == VIEW_EDGE) triality_stats.diag_to_edge++;
if (from == VIEW_DIAGONAL && to == VIEW_VERTEX) triality_stats.diag_to_vertex++;
}
void triality_ensure_view(TrialityQuhit *q, int view) {
if (!(q->dirty & view_dirty_bit(view))) return; /* Already clean */
/* ββ Enhancement 5: Tetrahedral fast path ββ
* If tetra is clean but the target view is dirty, recover from tetra.
* This avoids a full DFTβ β instead we do Ξ»βΏΒ·tetra then TΓtetra. */
if (!(q->dirty & DIRTY_TETRA) && view <= VIEW_DIAGONAL) {
triality_tetra_to_view(q, view);
return;
}
/* ββ Enhancement 2: Eigenstate shortcut ββ
* DFTβ eigenstates are identical in all views (up to eigenvalue phase).
* F|Οβ© = Ξ»|Οβ©, so vertex = λ·edge, diag = λ²·edge.
* Eigenvalues: {1, -1, i, -i} indexed 0..3. */
if (q->eigenstate_class >= 0 && view <= VIEW_DIAGONAL) {
/* Compute Ξ»^steps where steps = (view - primary + 3) % 3 */
int source = q->primary;
if (source > VIEW_DIAGONAL) source = VIEW_EDGE; /* folded β use edge */
int steps = (view - source + 3) % 3;
if (steps == 0) {
/* Same view β just copy */
memcpy(view_re(q, view), view_re(q, source), TRI_D * sizeof(double));
memcpy(view_im(q, view), view_im(q, source), TRI_D * sizeof(double));
} else {
/* Ξ»^steps: eigenvalue raised to power */
/* eigenvalue table: class 0=1, 1=-1, 2=i, 3=-i */
static const double EV_RE[4] = {1.0, -1.0, 0.0, 0.0};
static const double EV_IM[4] = {0.0, 0.0, 1.0, -1.0};
double lr = EV_RE[q->eigenstate_class];
double li = EV_IM[q->eigenstate_class];
/* raise to 'steps' power */
double pr = 1.0, pi = 0.0;
for (int s = 0; s < steps; s++) {
double tr = pr * lr - pi * li;
double ti = pr * li + pi * lr;
pr = tr; pi = ti;
}
/* dst = pr*src + pi*i*src */
const double *sr = view_re(q, source), *si = view_im(q, source);
double *dr = view_re(q, view), *di = view_im(q, view);
for (int k = 0; k < TRI_D; k++) {
dr[k] = pr * sr[k] - pi * si[k];
di[k] = pr * si[k] + pi * sr[k];
}
}
q->dirty &= ~view_dirty_bit(view);
triality_stats.eigenstate_skips++;
return;
}
/* Find a clean view to convert from */
int source = q->primary;
if (q->dirty & view_dirty_bit(source)) {
/* Primary is dirty β find any clean view */
for (int v = 0; v < 4; v++) {
if (!(q->dirty & view_dirty_bit(v))) {
source = v;
break;
}
}
}
/* ββ Enhancement 1: Route through folded view when cheaper ββ
* EdgeβVertex via Folded: fold O(6) + twiddle+DFTβ O(12) = O(18)
* vs direct DFTβ O(36). Use folded path when both endpoints are
* edge and vertex, and folded view is clean or cheaply obtainable. */
if (source == VIEW_EDGE && view == VIEW_VERTEX) {
if (!(q->dirty & DIRTY_FOLDED)) {
/* Folded is clean β just do Stages 2-3 */
folded_to_vertex(q->folded_re, q->folded_im,
q->vertex_re, q->vertex_im);
q->dirty &= ~DIRTY_VERTEX;
triality_stats.folded_to_vertex++;
return;
}
/* Folded is dirty but edge is clean β fold first, then convert */
fold_forward(q->edge_re, q->edge_im, q->folded_re, q->folded_im);
q->dirty &= ~DIRTY_FOLDED;
triality_stats.edge_to_folded++;
folded_to_vertex(q->folded_re, q->folded_im,
q->vertex_re, q->vertex_im);
q->dirty &= ~DIRTY_VERTEX;
triality_stats.folded_to_vertex++;
return;
}
/* ββ Fix #3: Inverse fold path β VertexβEdge via IDFTβ + unfold ββ
* Reverse of the forward fold path. IDFTβ = fold_inverse(IDFTβ+untwiddle(vertex)).
* Cost: O(18) vs O(36) for direct IDFTβ. */
if (source == VIEW_VERTEX && view == VIEW_EDGE) {
/* Vertex β Folded (inverse of Stages 2-3): IDFTβ + untwiddle */
/* We directly compute the full IDFTβ but through the combined path:
* Since IDFTβ = fold_inverse β (IDFTββIβ) β untwiddle,
* use the existing fold_inverse for the final step. */
static const double w3_re = -0.5;
static const double w3_im = 0.86602540378443864676;
static const double n3 = 0.57735026918962576451; /* 1/β3 */
/* Stage 1 (inverse of Stage 3): IDFTβ β Iβ per parity */
double tw_re[6], tw_im[6];
for (int p = 0; p < 2; p++) {
double a_re = q->vertex_re[p], a_im = q->vertex_im[p];
double b_re = q->vertex_re[2 + p], b_im = q->vertex_im[2 + p];
double c_re = q->vertex_re[4 + p], c_im = q->vertex_im[4 + p];
/* j=0: (a + b + c) / β3 */
tw_re[0 + p*3] = n3 * (a_re + b_re + c_re);
tw_im[0 + p*3] = n3 * (a_im + b_im + c_im);
/* j=1: (a + Οββ»ΒΉΒ·b + Οββ»Β²Β·c) / β3 */
double wb_re = w3_re * b_re + w3_im * b_im; /* Οββ»ΒΉ = conj(Οβ) */
double wb_im = w3_re * b_im - w3_im * b_re;
double wc_re = w3_re * c_re - w3_im * c_im; /* Οββ»Β² = conj(ΟβΒ²) */
double wc_im = w3_re * c_im + w3_im * c_re;
tw_re[1 + p*3] = n3 * (a_re + wb_re + wc_re);
tw_im[1 + p*3] = n3 * (a_im + wb_im + wc_im);
/* j=2: (a + Οββ»Β²Β·b + Οββ»ΒΉΒ·c) / β3 */
double w2b_re = w3_re * b_re - w3_im * b_im; /* Οββ»Β² */
double w2b_im = w3_re * b_im + w3_im * b_re;
double w2c_re = w3_re * c_re + w3_im * c_im; /* Οββ»ΒΉ */
double w2c_im = w3_re * c_im - w3_im * c_re;
tw_re[2 + p*3] = n3 * (a_re + w2b_re + w2c_re);
tw_im[2 + p*3] = n3 * (a_im + w2b_im + w2c_im);
}
/* Stage 2 (inverse twiddle): multiply indices 4,5 by Οββ»ΒΉ, Οββ»Β² */
{
double r = tw_re[4], i = tw_im[4];
tw_re[4] = W6I_RE[1] * r - W6I_IM[1] * i; /* Οββ»ΒΉ */
tw_im[4] = W6I_RE[1] * i + W6I_IM[1] * r;
}
{
double r = tw_re[5], i = tw_im[5];
tw_re[5] = W6I_RE[2] * r - W6I_IM[2] * i; /* Οββ»Β² */
tw_im[5] = W6I_RE[2] * i + W6I_IM[2] * r;
}
/* Stage 3: inverse fold β edge */
fold_inverse(tw_re, tw_im, q->edge_re, q->edge_im);
q->dirty &= ~DIRTY_EDGE;
/* Also cache the folded intermediate */
memcpy(q->folded_re, tw_re, sizeof(tw_re));
memcpy(q->folded_im, tw_im, sizeof(tw_im));
q->dirty &= ~DIRTY_FOLDED;
triality_stats.folded_to_vertex++; /* Count as fold-path usage */
return;
}
convert_view(q, source, view);
q->dirty &= ~view_dirty_bit(view);
}
void triality_sync_all(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
triality_ensure_view(q, VIEW_VERTEX);
triality_ensure_view(q, VIEW_DIAGONAL);
}
const double *triality_view_re(TrialityQuhit *q, int view) {
triality_ensure_view(q, view);
return view_re(q, view);
}
const double *triality_view_im(TrialityQuhit *q, int view) {
triality_ensure_view(q, view);
return view_im(q, view);
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* OPTIMAL-VIEW GATES
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* Phase gate: |kβ© β e^{iΟβ}|kβ© β DIAGONAL in edge view, O(D) */
void triality_phase(TrialityQuhit *q, const double *phi_re, const double *phi_im) {
triality_ensure_view(q, VIEW_EDGE);
if (q->real_valued) {
/* Enhancement 4: real fast path β fewer multiplies */
int all_real_phases = 1;
for (int k = 0; k < TRI_D; k++)
if (fabs(phi_im[k]) > 1e-15) { all_real_phases = 0; break; }
if (all_real_phases) {
for (int k = 0; k < TRI_D; k++) {
if (!(q->active_mask & (1 << k))) continue; /* Enhancement 3 */
q->edge_re[k] *= phi_re[k];
}
triality_stats.real_fast_path++;
triality_stats.gates_edge++;
q->primary = VIEW_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_TETRA;
q->delta_valid = 0; /* Fix #5 */
return;
}
}
for (int k = 0; k < TRI_D; k++) {
if (!(q->active_mask & (1 << k))) { /* Enhancement 3 */
triality_stats.mask_skips++;
continue;
}
double re = q->edge_re[k], im = q->edge_im[k];
q->edge_re[k] = re * phi_re[k] - im * phi_im[k];
q->edge_im[k] = re * phi_im[k] + im * phi_re[k];
}
/* Phase gate may introduce imaginary parts */
q->real_valued = 0;
q->primary = VIEW_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_TETRA;
q->delta_valid = 0; /* Fix #5 */
triality_stats.gates_edge++;
}
/* Single-phase: one basis state only β O(1) */
void triality_phase_single(TrialityQuhit *q, int k, double phi_re, double phi_im) {
triality_ensure_view(q, VIEW_EDGE);
q->delta_valid = 0; /* Fix #5: always invalidate on gate call */
if (!(q->active_mask & (1 << k))) {
triality_stats.mask_skips++;
return; /* Enhancement 3: skip if this basis state is zero */
}
double re = q->edge_re[k], im = q->edge_im[k];
q->edge_re[k] = re * phi_re - im * phi_im;
q->edge_im[k] = re * phi_im + im * phi_re;
if (fabs(phi_im) > 1e-15) q->real_valued = 0;
q->primary = VIEW_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_TETRA;
triality_stats.gates_edge++;
}
/* Z gate: |kβ© β Ο^k|kβ© β diagonal in edge, O(D) */
void triality_z(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
for (int k = 0; k < TRI_D; k++) {
if (!(q->active_mask & (1 << k))) { /* Enhancement 3 */
triality_stats.mask_skips++;
continue;
}
double wr = W6_RE[k], wi = W6_IM[k];
double re = q->edge_re[k], im = q->edge_im[k];
q->edge_re[k] = re * wr - im * wi;
q->edge_im[k] = re * wi + im * wr;
}
q->real_valued = 0; /* Z introduces complex phases (Ο has imaginary part) */
q->primary = VIEW_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_TETRA;
q->delta_valid = 0; /* Fix #5 */
triality_stats.gates_edge++;
/* Z preserves eigenstate_class: Z|Οβ© scales by Ο per component,
* but if Ο is a DFTβ eigenstate, Z|Οβ© = X|Οβ© rotated... clear it. */
q->eigenstate_class = -1;
}
/* Shift: |kβ© β |k+Ξ΄ mod Dβ© β this is DIAGONAL in vertex view!
* In Fourier domain, shift by Ξ΄ = multiply by Ο^(δ·j).
* So we work in vertex view and apply phases. O(D). */
void triality_shift(TrialityQuhit *q, int delta) {
delta = ((delta % TRI_D) + TRI_D) % TRI_D;
if (delta == 0) return;
triality_ensure_view(q, VIEW_VERTEX);
for (int j = 0; j < TRI_D; j++) {
int idx = (delta * j) % 6;
double wr = W6_RE[idx], wi = W6_IM[idx];
double re = q->vertex_re[j], im = q->vertex_im[j];
q->vertex_re[j] = re * wr - im * wi;
q->vertex_im[j] = re * wi + im * wr;
}
q->real_valued = 0;
q->eigenstate_class = -1; /* Shift breaks eigenstate */
q->active_mask = 0x3F; q->active_count = 6; /* Edge view now dirty, mask is stale */
q->primary = VIEW_VERTEX;
q->dirty |= DIRTY_EDGE | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_TETRA;
q->delta_valid = 0; /* Fix #5 */
triality_stats.gates_vertex++;
}
/* X = shift by 1 */
void triality_x(TrialityQuhit *q) {
triality_shift(q, 1);
}
/* DFTβ β The triality rotation in Hilbert space
* This converts edgeβvertex, vertexβdiag, diagβedge.
* If the destination view is already cached, it's essentially FREE. */
void triality_dft(TrialityQuhit *q) {
triality_sync_all(q);
double tmp_re[TRI_D], tmp_im[TRI_D];
memcpy(tmp_re, q->edge_re, sizeof(tmp_re));
memcpy(tmp_im, q->edge_im, sizeof(tmp_im));
dft6_forward(tmp_re, tmp_im, q->edge_re, q->edge_im);
q->primary = VIEW_EDGE;
q->dirty = DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC | DIRTY_TETRA;
q->real_valued = 0; /* DFT introduces complex amplitudes */
q->eigenstate_class = -1; /* Clear (might still be eigenstate but need re-detect) */
q->active_mask = 0x3F; q->active_count = 6; /* DFT spreads to all states */
q->delta_valid = 0; /* Fix #5 */
triality_stats.gates_edge++;
}
/* Inverse DFTβ */
void triality_idft(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
double tmp_re[TRI_D], tmp_im[TRI_D];
memcpy(tmp_re, q->edge_re, sizeof(tmp_re));
memcpy(tmp_im, q->edge_im, sizeof(tmp_im));
dft6_inverse(tmp_re, tmp_im, q->edge_re, q->edge_im);
q->primary = VIEW_EDGE;
q->dirty = DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC | DIRTY_TETRA;
q->real_valued = 0;
q->eigenstate_class = -1;
q->active_mask = 0x3F; q->active_count = 6;
q->delta_valid = 0; /* Fix #5 */
triality_stats.gates_edge++;
}
/* General unitary in a specific view β O(DΒ²) */
void triality_unitary(TrialityQuhit *q, int view,
const double *U_re, const double *U_im) {
triality_ensure_view(q, view);
double *v_re = view_re(q, view), *v_im = view_im(q, view);
double out_re[TRI_D] = {0}, out_im[TRI_D] = {0};
for (int j = 0; j < TRI_D; j++)
for (int k = 0; k < TRI_D; k++) {
double ur = U_re[j * TRI_D + k], ui = U_im[j * TRI_D + k];
out_re[j] += ur * v_re[k] - ui * v_im[k];
out_im[j] += ur * v_im[k] + ui * v_re[k];
}
memcpy(v_re, out_re, sizeof(out_re));
memcpy(v_im, out_im, sizeof(out_im));
q->primary = view;
q->dirty = DIRTY_ALL & ~view_dirty_bit(view);
q->eigenstate_class = -1;
q->delta_valid = 0; /* Fix #5: invalidate exotic cache */
/* Fix #6: Compute actual active_mask from output instead of conservative 0x3F */
uint8_t mask = 0;
int count = 0;
for (int k = 0; k < TRI_D; k++) {
if (out_re[k] * out_re[k] + out_im[k] * out_im[k] > 1e-30) {
mask |= (uint8_t)(1 << k);
count++;
}
}
q->active_mask = mask;
q->active_count = (uint8_t)count;
/* Fix #6: Detect real-valued from output */
int is_real = 1;
for (int k = 0; k < TRI_D; k++) {
if (fabs(out_im[k]) > 1e-15) { is_real = 0; break; }
}
q->real_valued = (uint8_t)is_real;
if (view == VIEW_EDGE) triality_stats.gates_edge++;
if (view == VIEW_VERTEX) triality_stats.gates_vertex++;
if (view == VIEW_DIAGONAL) triality_stats.gates_diag++;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* CZ GATE β Diagonal in edge view, O(DΒ²) on joint but O(D) per site
*
* CZ|j,kβ© = Ο^(jk)|j,kβ© β only phases, no state mixing.
* We work in edge view on both quhits.
*
* For a product state |Οβ©β|Οβ©, the CZ creates entanglement
* but we track it via the phase imprint on each site.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_cz(TrialityQuhit *a, TrialityQuhit *b) {
triality_ensure_view(a, VIEW_EDGE);
triality_ensure_view(b, VIEW_EDGE);
/* Fix #4: Refresh active_mask from live edge amplitudes.
* The mask may be stale if a prior operation (shift, DFT) changed
* the primary view and the mask was set conservatively to 0x3F.
* Since we just ensured edge view, recomputing is cheap: O(D). */
triality_update_mask(a);
triality_update_mask(b);
/* Enhancement 3: skip inactive basis states in the CZ inner loop.
* This is the biggest win β D_eff Γ D_eff iterations instead of 36. */
uint8_t ma = a->active_mask, mb = b->active_mask;
/* ββ Optimization: Triangle Shortcut ββ
* The hexagon has two Zβ triangles:
* EVEN {0,2,4} = mask 0x15 ODD {1,3,5} = mask 0x2A
* When active_mask is confined to one triangle, we only iterate 3
* states instead of 6, reducing the inner loop from 36 to 9 ops.
* Triangle indices for direct iteration: */
static const int TRI_EVEN[3] = {0, 2, 4};
static const int TRI_ODD[3] = {1, 3, 5};
#define MASK_EVEN 0x15 /* bits 0,2,4 */
#define MASK_ODD 0x2A /* bits 1,3,5 */
const int *tri_a = NULL, *tri_b = NULL;
int na = 0, nb = 0;
if ((ma & ~MASK_EVEN) == 0 && ma) { tri_a = TRI_EVEN; na = __builtin_popcount(ma); }
else if ((ma & ~MASK_ODD) == 0 && ma) { tri_a = TRI_ODD; na = __builtin_popcount(ma); }
if ((mb & ~MASK_EVEN) == 0 && mb) { tri_b = TRI_EVEN; nb = __builtin_popcount(mb); }
else if ((mb & ~MASK_ODD) == 0 && mb) { tri_b = TRI_ODD; nb = __builtin_popcount(mb); }
double eff_a_re[TRI_D] = {0}, eff_a_im[TRI_D] = {0};
double eff_b_re[TRI_D] = {0}, eff_b_im[TRI_D] = {0};
int skipped = 0;
if (tri_a && tri_b) {
/* Both confined to triangles β iterate only triangle indices */
for (int ti = 0; ti < 3; ti++) {
int j = tri_a[ti];
if (!(ma & (1 << j))) continue;
double aprob = a->edge_re[j]*a->edge_re[j] + a->edge_im[j]*a->edge_im[j];
for (int tk = 0; tk < 3; tk++) {
int k = tri_b[tk];
if (!(mb & (1 << k))) continue;
int idx = (j * k) % 6;
double bprob = b->edge_re[k]*b->edge_re[k] + b->edge_im[k]*b->edge_im[k];
eff_a_re[j] += bprob * W6_RE[idx];
eff_a_im[j] += bprob * W6_IM[idx];
eff_b_re[k] += aprob * W6_RE[idx];
eff_b_im[k] += aprob * W6_IM[idx];
}
}
for (int ti = 0; ti < 3; ti++) {
int j = tri_a[ti];
if (!(ma & (1 << j))) continue;
double re = a->edge_re[j], im = a->edge_im[j];
a->edge_re[j] = re * eff_a_re[j] - im * eff_a_im[j];
a->edge_im[j] = re * eff_a_im[j] + im * eff_a_re[j];
}
for (int tk = 0; tk < 3; tk++) {
int k = tri_b[tk];
if (!(mb & (1 << k))) continue;
double re = b->edge_re[k], im = b->edge_im[k];
b->edge_re[k] = re * eff_b_re[k] - im * eff_b_im[k];
b->edge_im[k] = re * eff_b_im[k] + im * eff_b_re[k];
}
triality_stats.mask_skips += (6 - na) + (6 - nb);
goto cz_renorm;
}
/* Compute effective phases from partner */
for (int j = 0; j < TRI_D; j++) {
if (!(ma & (1 << j))) continue; /* a[j] is zero */
double aprob = a->edge_re[j]*a->edge_re[j] + a->edge_im[j]*a->edge_im[j];
for (int k = 0; k < TRI_D; k++) {
if (!(mb & (1 << k))) continue; /* b[k] is zero */
int idx = (j * k) % 6;
double bprob = b->edge_re[k]*b->edge_re[k] + b->edge_im[k]*b->edge_im[k];
eff_a_re[j] += bprob * W6_RE[idx];
eff_a_im[j] += bprob * W6_IM[idx];
eff_b_re[k] += aprob * W6_RE[idx];
eff_b_im[k] += aprob * W6_IM[idx];
}
}
/* Apply effective phases */
for (int j = 0; j < TRI_D; j++) {
if (!(ma & (1 << j))) { skipped++; continue; }
double re = a->edge_re[j], im = a->edge_im[j];
a->edge_re[j] = re * eff_a_re[j] - im * eff_a_im[j];
a->edge_im[j] = re * eff_a_im[j] + im * eff_a_re[j];
}
for (int k = 0; k < TRI_D; k++) {
if (!(mb & (1 << k))) { skipped++; continue; }
double re = b->edge_re[k], im = b->edge_im[k];
b->edge_re[k] = re * eff_b_re[k] - im * eff_b_im[k];
b->edge_im[k] = re * eff_b_im[k] + im * eff_b_re[k];
}
triality_stats.mask_skips += skipped;
/* ββ Renormalize after effective-phase CZ ββ
* The effective-phase model computes eff[j] = Ξ£_k |b_k|Β² Γ Ο^(jk),
* then a[j] *= eff[j]. Since |eff[j]| = |Ξ£ |b_k|Β² Ο^(jk)| β€ 1
* (strictly < 1 when |b| is not perfectly normalized), floating-point
* drift causes mutual amplitude drain between both quhits.
* Renormalization prevents this feedback loop. */
cz_renorm:
{
double na = 0, nb = 0;
for (int i = 0; i < TRI_D; i++) {
na += a->edge_re[i]*a->edge_re[i] + a->edge_im[i]*a->edge_im[i];
nb += b->edge_re[i]*b->edge_re[i] + b->edge_im[i]*b->edge_im[i];
}
if (na > 1e-30 && fabs(na - 1.0) > 1e-15) {
double inv = 1.0 / sqrt(na);
for (int i = 0; i < TRI_D; i++) {
a->edge_re[i] *= inv; a->edge_im[i] *= inv;
}
}
if (nb > 1e-30 && fabs(nb - 1.0) > 1e-15) {
double inv = 1.0 / sqrt(nb);
for (int i = 0; i < TRI_D; i++) {
b->edge_re[i] *= inv; b->edge_im[i] *= inv;
}
}
}
a->real_valued = 0; b->real_valued = 0; /* CZ introduces complex phases */
a->eigenstate_class = -1; b->eigenstate_class = -1;
a->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED;
b->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED;
a->delta_valid = 0; b->delta_valid = 0; /* Fix #5: invalidate exotic cache */
triality_stats.gates_edge += 2;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* MEASUREMENT
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* Simple xorshift64 PRNG for Born sampling */
static uint64_t triality_rng_next(uint64_t *state) {
uint64_t x = *state;
x ^= x << 13;
x ^= x >> 7;
x ^= x << 17;
*state = x;
return x;
}
static double triality_rng_double(uint64_t *state) {
return (triality_rng_next(state) >> 11) * 0x1.0p-53;
}
void triality_probabilities(TrialityQuhit *q, int view, double *probs) {
triality_ensure_view(q, view);
const double *re = view_re(q, view), *im = view_im(q, view);
double total = 0;
for (int k = 0; k < TRI_D; k++) {
probs[k] = re[k]*re[k] + im[k]*im[k];
total += probs[k];
}
if (total > 1e-30)
for (int k = 0; k < TRI_D; k++) probs[k] /= total;
}
int triality_measure(TrialityQuhit *q, int view, uint64_t *rng_state) {
double probs[TRI_D];
triality_probabilities(q, view, probs);
/* Born sample */
double r = triality_rng_double(rng_state);
int outcome = 0;
double cdf = 0;
for (int k = 0; k < TRI_D; k++) {
cdf += probs[k];
if (r < cdf) { outcome = k; break; }
}
/* Collapse: project onto |outcomeβ© in the measured view */
triality_ensure_view(q, view);
double *v_re = view_re(q, view), *v_im = view_im(q, view);
/* Save the phase of the winning amplitude before zeroing */
double win_re = v_re[outcome], win_im = v_im[outcome];
double norm2 = win_re*win_re + win_im*win_im;
double scale = (norm2 > 1e-30) ? 1.0 / sqrt(norm2) : 0.0;
for (int k = 0; k < TRI_D; k++) {
v_re[k] = 0;
v_im[k] = 0;
}
v_re[outcome] = win_re * scale;
v_im[outcome] = win_im * scale;
q->primary = view;
q->dirty = DIRTY_ALL & ~view_dirty_bit(view);
/* Post-collapse enhancement flags */
q->active_mask = (uint8_t)(1 << outcome);
q->active_count = 1;
q->real_valued = (fabs(v_im[outcome]) < 1e-15) ? 1 : 0;
q->eigenstate_class = -1;
q->delta_valid = 0; /* Fix #5 */
return outcome;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* TRIALITY ROTATION β O(1) relabeling
*
* This is the geometric heart: EdgeβVertexβDiagonalβEdge.
* No computation. Just swap pointers (well, arrays).
* The physics doesn't change β only our VIEW of it changes.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_rotate(TrialityQuhit *q) {
double tmp_re[TRI_D], tmp_im[TRI_D];
/* Save old diagonal */
memcpy(tmp_re, q->diag_re, sizeof(tmp_re));
memcpy(tmp_im, q->diag_im, sizeof(tmp_im));
/* old vertex β new diagonal */
memcpy(q->diag_re, q->vertex_re, sizeof(tmp_re));
memcpy(q->diag_im, q->vertex_im, sizeof(tmp_im));
/* old edge β new vertex */
memcpy(q->vertex_re, q->edge_re, sizeof(tmp_re));
memcpy(q->vertex_im, q->edge_im, sizeof(tmp_im));
/* old diagonal β new edge */
memcpy(q->edge_re, tmp_re, sizeof(tmp_re));
memcpy(q->edge_im, tmp_im, sizeof(tmp_im));
/* Rotate dirty bits: bit0βbit1βbit2βbit0 (preserve bit3 = folded) */
uint8_t d = q->dirty;
uint8_t lo3 = d & 0x7;
uint8_t folded = d & DIRTY_FOLDED;
q->dirty = (((lo3 & 1) << 1) | ((lo3 & 2) << 1) | ((lo3 & 4) >> 2)) | folded | DIRTY_FOLDED;
/* Rotate primary: 0β1β2β0 */
q->primary = (q->primary + 1) % 3;
triality_stats.rotations++;
}
void triality_rotate_inv(TrialityQuhit *q) {
/* Inverse: two forward rotations */
triality_rotate(q);
triality_rotate(q);
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* DIAGNOSTICS
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_print(TrialityQuhit *q, const char *label) {
triality_sync_all(q);
printf("\n ββββ Triality Quhit: %s ββββ\n", label ? label : "");
printf(" β View β");
for (int k = 0; k < TRI_D; k++) printf(" |%dβ© ", k);
printf("β\n");
printf(" βββββββββββββΌ");
for (int k = 0; k < TRI_D; k++) printf("ββββββββββββ");
printf("β€\n");
const char *names[3] = {"Edge (Y)", "Vertex(C)", "Diag (M)"};
double *arrays_re[3] = {q->edge_re, q->vertex_re, q->diag_re};
double *arrays_im[3] = {q->edge_im, q->vertex_im, q->diag_im};
for (int v = 0; v < 3; v++) {
printf(" β %s β", names[v]);
for (int k = 0; k < TRI_D; k++) {
double re = arrays_re[v][k], im = arrays_im[v][k];
double mag = sqrt(re*re + im*im);
if (mag < 1e-10)
printf(" Β· ");
else if (fabs(im) < 1e-10)
printf(" %+.4f ", re);
else
printf(" %+.2f%+.2fi", re, im);
}
printf("β\n");
}
printf(" | Primary: %s | Dirty: %c%c%c%c | Eigen: %d | Mask: 0x%02X (%d) | Real: %d |\n",
names[q->primary > 2 ? 0 : q->primary],
(q->dirty & DIRTY_EDGE) ? 'E' : 'Β·',
(q->dirty & DIRTY_VERTEX) ? 'V' : 'Β·',
(q->dirty & DIRTY_DIAGONAL) ? 'D' : 'Β·',
(q->dirty & DIRTY_FOLDED) ? 'F' : 'Β·',
q->eigenstate_class,
q->active_mask, q->active_count,
q->real_valued);
printf(" β");
for (int i = 0; i < 12 + TRI_D * 12; i++) printf("β");
printf("β\n");
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* GEOMETRIC COSMOLOGY ENHANCEMENT FUNCTIONS
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* ββ Enhancement 1: Folded View API ββ */
void triality_fold(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
fold_forward(q->edge_re, q->edge_im, q->folded_re, q->folded_im);
q->dirty &= ~DIRTY_FOLDED;
triality_stats.edge_to_folded++;
}
void triality_unfold(TrialityQuhit *q) {
if (q->dirty & DIRTY_FOLDED) {
triality_fold(q); /* Ensure folded is up to date */
}
fold_inverse(q->folded_re, q->folded_im, q->edge_re, q->edge_im);
q->dirty &= ~DIRTY_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL;
}
void triality_ensure_view_via_fold(TrialityQuhit *q, int target_view) {
if (target_view == VIEW_FOLDED) {
if (q->dirty & DIRTY_FOLDED) triality_fold(q);
return;
}
if (target_view == VIEW_VERTEX) {
/* Edge β Folded β Vertex: O(18) vs O(36) direct */
if (q->dirty & DIRTY_FOLDED) triality_fold(q);
folded_to_vertex(q->folded_re, q->folded_im,
q->vertex_re, q->vertex_im);
q->dirty &= ~DIRTY_VERTEX;
triality_stats.folded_to_vertex++;
return;
}
/* For other views, fall back to standard */
triality_ensure_view(q, target_view);
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* ENHANCEMENT 5: TETRAHEDRAL EIGENBASIS
*
* DFTβ has eigenvalues {1, -1, i, -i} with multiplicities {2, 2, 1, 1}.
* Any state decomposes into these 4 eigenspaces (6 eigenvectors total).
*
* Once cached in the eigenbasis:
* - DFTβ: multiply each component by its eigenvalue β O(D)
* - IDFTβ: multiply by conjugate eigenvalue β O(D)
* - View conversion: apply Ξ»βΏ then T β O(DΒ²) but from ANY dirty state
*
* The 4 eigenspaces correspond to the 4 vertices of the tetrahedron
* inscribed in the cube whose edges define the 3 triality views.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* T maps tetraβedge: edge = T Γ tetra
* Tβ maps edgeβtetra: tetra = Tβ Γ edge
* Columns ordered: Ξ»=1 (Γ2), Ξ»=-1 (Γ2), Ξ»=i (Γ1), Ξ»=-i (Γ1) */
static const double TETRA_TO_EDGE_RE[36] = {
+0.8391210551713808, -0.0000000000000002, +0.5439447166468928, -0.0000000000000000, +0.0000000000000003, -0.0000000000000000,
+0.2432594724848628, +0.5405470133003926, -0.3752663441429122, +0.0843314257205145, +0.6532814824381888, -0.2705980500730983,
+0.2432594724848627, -0.2975766753297839, -0.3752663441429118, -0.4595632394582247, +0.2705980500730981, +0.6532814824381883,
+0.2432594724848627, -0.4859406759412170, -0.3752663441429117, +0.7504636274754213, -0.0000000000000005, -0.0000000000000005,
+0.2432594724848627, -0.2975766753297834, -0.3752663441429116, -0.4595632394582254, -0.2705980500730989, -0.6532814824381882,
+0.2432594724848627, +0.5405470133003922, -0.3752663441429114, +0.0843314257205145, -0.6532814824381878, +0.2705980500730987,
};
static const double TETRA_TO_EDGE_IM[36] = {
+0.0000000000000000, +0.0000000000000000, +0.0000000000000000, +0.0000000000000001, +0.0000000000000002, +0.0000000000000000,
-0.0000000000000000, -0.0263785533033470, +0.0000000000000001, -0.0011441038385107, +0.0000000000000000, +0.0000000000000001,
+0.0000000000000001, +0.0145216641640333, +0.0000000000000000, +0.0062347821326423, +0.0000000000000000, +0.0000000000000000,
+0.0000000000000002, +0.0237137782786277, +0.0000000000000001, -0.0101813565882631, +0.0000000000000000, -0.0000000000000001,
+0.0000000000000002, +0.0145216641640335, +0.0000000000000001, +0.0062347821326419, +0.0000000000000000, +0.0000000000000002,
+0.0000000000000003, -0.0263785533033474, +0.0000000000000001, -0.0011441038385105, +0.0000000000000003, +0.0000000000000000,
};
static const double EDGE_TO_TETRA_RE[36] = {
+0.8391210551713808, +0.2432594724848628, +0.2432594724848627, +0.2432594724848627, +0.2432594724848627, +0.2432594724848627,
-0.0000000000000002, +0.5405470133003926, -0.2975766753297839, -0.4859406759412170, -0.2975766753297834, +0.5405470133003922,
+0.5439447166468928, -0.3752663441429122, -0.3752663441429118, -0.3752663441429117, -0.3752663441429116, -0.3752663441429114,
-0.0000000000000000, +0.0843314257205145, -0.4595632394582247, +0.7504636274754213, -0.4595632394582254, +0.0843314257205145,
+0.0000000000000003, +0.6532814824381888, +0.2705980500730981, -0.0000000000000005, -0.2705980500730989, -0.6532814824381878,
-0.0000000000000000, -0.2705980500730983, +0.6532814824381883, -0.0000000000000005, -0.6532814824381882, +0.2705980500730987,
};
static const double EDGE_TO_TETRA_IM[36] = {
-0.0000000000000000, +0.0000000000000000, -0.0000000000000001, -0.0000000000000002, -0.0000000000000002, -0.0000000000000003,
-0.0000000000000000, +0.0263785533033470, -0.0145216641640333, -0.0237137782786277, -0.0145216641640335, +0.0263785533033474,
-0.0000000000000000, -0.0000000000000001, -0.0000000000000000, -0.0000000000000001, -0.0000000000000001, -0.0000000000000001,
-0.0000000000000001, +0.0011441038385107, -0.0062347821326423, +0.0101813565882631, -0.0062347821326419, +0.0011441038385105,
-0.0000000000000002, -0.0000000000000000, -0.0000000000000000, -0.0000000000000000, -0.0000000000000000, -0.0000000000000003,
-0.0000000000000000, -0.0000000000000001, -0.0000000000000000, +0.0000000000000001, -0.0000000000000002, -0.0000000000000000,
};
/* Eigenvalue per tetra index */
static const double TETRA_EIGENVAL_RE[6] = {+1.0, +1.0, -1.0, -1.0, +0.0, -0.0};
static const double TETRA_EIGENVAL_IM[6] = {+0.0, +0.0, +0.0, +0.0, +1.0, -1.0};
/* Conjugate eigenvalue for IDFT */
static const double TETRA_EIGENVAL_CONJ_RE[6] = {+1.0, +1.0, -1.0, -1.0, +0.0, -0.0};
static const double TETRA_EIGENVAL_CONJ_IM[6] = {+0.0, +0.0, +0.0, +0.0, -1.0, +1.0};
/* ββ edge_to_tetra: tetra = Tβ Γ edge β O(DΒ²) ββ */
static void edge_to_tetra(const double *edge_re, const double *edge_im,
double *tetra_re, double *tetra_im)
{
for (int j = 0; j < TRI_D; j++) {
double sr = 0, si = 0;
for (int k = 0; k < TRI_D; k++) {
double tr = EDGE_TO_TETRA_RE[j * TRI_D + k];
double ti = EDGE_TO_TETRA_IM[j * TRI_D + k];
sr += tr * edge_re[k] - ti * edge_im[k];
si += tr * edge_im[k] + ti * edge_re[k];
}
tetra_re[j] = sr;
tetra_im[j] = si;
}
}
/* ββ tetra_to_edge: edge = T Γ tetra β O(DΒ²) ββ */
static void tetra_to_edge_convert(const double *tetra_re, const double *tetra_im,
double *edge_re, double *edge_im)
{
for (int j = 0; j < TRI_D; j++) {
double sr = 0, si = 0;
for (int k = 0; k < TRI_D; k++) {
double tr = TETRA_TO_EDGE_RE[j * TRI_D + k];
double ti = TETRA_TO_EDGE_IM[j * TRI_D + k];
sr += tr * tetra_re[k] - ti * tetra_im[k];
si += tr * tetra_im[k] + ti * tetra_re[k];
}
edge_re[j] = sr;
edge_im[j] = si;
}
}
/* ββ Public API ββ */
void triality_ensure_tetra(TrialityQuhit *q) {
if (!(q->dirty & DIRTY_TETRA)) return; /* Already clean */
/* Need edge view to decompose */
triality_ensure_view(q, VIEW_EDGE);
edge_to_tetra(q->edge_re, q->edge_im, q->tetra_re, q->tetra_im);
q->dirty &= ~DIRTY_TETRA;
triality_stats.tetra_conversions++;
}
void triality_tetra_to_view(TrialityQuhit *q, int target_view) {
triality_ensure_tetra(q);
if (target_view == VIEW_EDGE || target_view == VIEW_VERTEX ||
target_view == VIEW_DIAGONAL)
{
/* Compute Ξ»βΏΒ·tetra then transform back to edge.
* n = (target_view - VIEW_EDGE + 3) % 3 DFT applications.
* Ξ»βΏ for each eigenvalue:
* n=0: {1,1,-1,-1,i,-i}^0 = {1,1,1,1,1,1} (edge)
* n=1: {1,1,-1,-1,i,-i}^1 = {1,1,-1,-1,i,-i} (vertex)
* n=2: {1,1,-1,-1,i,-i}^2 = {1,1,1,1,-1,-1} (diagonal)
*/
int n = target_view; /* VIEW_EDGE=0, VIEW_VERTEX=1, VIEW_DIAGONAL=2 */
double scaled_re[TRI_D], scaled_im[TRI_D];
for (int k = 0; k < TRI_D; k++) {
/* Compute Ξ»βΏ for eigenvalue k */
double lr = TETRA_EIGENVAL_RE[k], li = TETRA_EIGENVAL_IM[k];
double pr = 1.0, pi = 0.0;
for (int s = 0; s < n; s++) {
double tr = pr * lr - pi * li;
double ti = pr * li + pi * lr;
pr = tr; pi = ti;
}
/* Multiply tetra[k] by Ξ»βΏ */
scaled_re[k] = q->tetra_re[k] * pr - q->tetra_im[k] * pi;
scaled_im[k] = q->tetra_re[k] * pi + q->tetra_im[k] * pr;
}
/* Transform back: view = T Γ (Ξ»βΏ Β· tetra) */
double *dst_re = view_re(q, target_view);
double *dst_im = view_im(q, target_view);
tetra_to_edge_convert(scaled_re, scaled_im, dst_re, dst_im);
q->dirty &= ~view_dirty_bit(target_view);
triality_stats.tetra_conversions++;
}
}
void triality_dft_via_tetra(TrialityQuhit *q) {
triality_ensure_tetra(q);
/* DFTβ in eigenbasis = multiply each component by its eigenvalue.
* This is O(D) instead of O(DΒ²). */
for (int k = 0; k < TRI_D; k++) {
double tr = q->tetra_re[k], ti = q->tetra_im[k];
double lr = TETRA_EIGENVAL_RE[k], li = TETRA_EIGENVAL_IM[k];
q->tetra_re[k] = tr * lr - ti * li;
q->tetra_im[k] = tr * li + ti * lr;
}
/* Tetra is still valid (we just updated it).
* All standard views are now stale β they need to be reconstructed
* from the new tetra coefficients. */
q->dirty = (DIRTY_EDGE | DIRTY_VERTEX | DIRTY_DIAGONAL |
DIRTY_FOLDED | DIRTY_EXOTIC);
/* DIRTY_TETRA is NOT set β tetra is the authoritative source */
/* Also update enhancement flags conservatively */
q->real_valued = 0;
q->eigenstate_class = -1;
q->active_mask = 0x3F; q->active_count = 6;
q->delta_valid = 0;
triality_stats.tetra_dft_skips++;
}
void triality_idft_via_tetra(TrialityQuhit *q) {
triality_ensure_tetra(q);
/* IDFTβ = multiply by conjugate eigenvalue */
for (int k = 0; k < TRI_D; k++) {
double tr = q->tetra_re[k], ti = q->tetra_im[k];
double lr = TETRA_EIGENVAL_CONJ_RE[k], li = TETRA_EIGENVAL_CONJ_IM[k];
q->tetra_re[k] = tr * lr - ti * li;
q->tetra_im[k] = tr * li + ti * lr;
}
q->dirty = (DIRTY_EDGE | DIRTY_VERTEX | DIRTY_DIAGONAL |
DIRTY_FOLDED | DIRTY_EXOTIC);
q->real_valued = 0;
q->eigenstate_class = -1;
q->active_mask = 0x3F; q->active_count = 6;
q->delta_valid = 0;
triality_stats.tetra_dft_skips++;
}
/* ββ Enhancement 2: Eigenstate Detection ββ */
int triality_detect_eigenstate(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
/* Compute DFTβ|Οβ© and check if F|Οβ© = Ξ»|Οβ© for some Ξ» β {1,-1,i,-i} */
double f_re[TRI_D], f_im[TRI_D];
dft6_forward(q->edge_re, q->edge_im, f_re, f_im);
/* Find a non-zero component to determine the candidate eigenvalue */
int ref = -1;
for (int k = 0; k < TRI_D; k++) {
double mag = q->edge_re[k]*q->edge_re[k] + q->edge_im[k]*q->edge_im[k];
if (mag > 1e-20) { ref = k; break; }
}
if (ref < 0) { q->eigenstate_class = -1; return -1; } /* zero state */
/* Candidate Ξ» = F|Οβ©[ref] / |Οβ©[ref] */
double sr = q->edge_re[ref], si = q->edge_im[ref];
double fr = f_re[ref], fi = f_im[ref];
double denom = sr*sr + si*si;
double lr = (fr*sr + fi*si) / denom;
double li = (fi*sr - fr*si) / denom;
/* Check which eigenvalue class it matches: {1,-1,i,-i} */
static const double EV_RE[4] = {1.0, -1.0, 0.0, 0.0};
static const double EV_IM[4] = {0.0, 0.0, 1.0, -1.0};
int cls = -1;
for (int c = 0; c < 4; c++) {
if (fabs(lr - EV_RE[c]) < 1e-10 && fabs(li - EV_IM[c]) < 1e-10) {
cls = c; break;
}
}
if (cls < 0) { q->eigenstate_class = -1; return -1; }
/* Verify ALL components satisfy F|Οβ©[k] = Ξ» Β· |Οβ©[k] */
for (int k = 0; k < TRI_D; k++) {
double expected_re = EV_RE[cls] * q->edge_re[k] - EV_IM[cls] * q->edge_im[k];
double expected_im = EV_RE[cls] * q->edge_im[k] + EV_IM[cls] * q->edge_re[k];
if (fabs(f_re[k] - expected_re) > 1e-10 ||
fabs(f_im[k] - expected_im) > 1e-10) {
q->eigenstate_class = -1;
return -1;
}
}
q->eigenstate_class = (int8_t)cls;
return cls;
}
void triality_clear_eigenstate(TrialityQuhit *q) {
q->eigenstate_class = -1;
}
/* ββ Enhancement 3: Subspace Confinement ββ */
void triality_update_mask(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
uint8_t mask = 0;
int count = 0;
for (int k = 0; k < TRI_D; k++) {
double mag2 = q->edge_re[k]*q->edge_re[k] + q->edge_im[k]*q->edge_im[k];
if (mag2 > 1e-30) {
mask |= (uint8_t)(1 << k);
count++;
}
}
q->active_mask = mask;
q->active_count = (uint8_t)count;
}
/* ββ Enhancement 4: Real-Valued Detection ββ */
void triality_detect_real(TrialityQuhit *q) {
triality_ensure_view(q, VIEW_EDGE);
q->real_valued = 1;
for (int k = 0; k < TRI_D; k++) {
if (fabs(q->edge_im[k]) > 1e-15) {
q->real_valued = 0;
return;
}
}
}
/* ββ Combined refresh ββ */
void triality_refresh_flags(TrialityQuhit *q) {
triality_update_mask(q);
triality_detect_real(q);
triality_detect_eigenstate(q);
/* Component 3: Auto-select the minimum-entropy syntheme for the exotic view.
* This ensures the exotic view always shows the most concentrated form.
* From the Scrying Mirror: entropy varies 1.775β1.927 across synthemes. */
int optimal = s6_min_entropy_syntheme(q->edge_re, q->edge_im);
if (optimal != q->exotic_syntheme) {
q->exotic_syntheme = optimal;
q->dirty |= DIRTY_EXOTIC; /* Exotic view needs recompute */
}
}
void triality_stats_print(void) {
printf("\n ββ Triality Statistics ββ\n");
printf(" View conversions:\n");
printf(" EdgeβVertex: %llu\n", (unsigned long long)triality_stats.edge_to_vertex);
printf(" EdgeβDiag: %llu\n", (unsigned long long)triality_stats.edge_to_diag);
printf(" VertexβEdge: %llu\n", (unsigned long long)triality_stats.vertex_to_edge);
printf(" VertexβDiag: %llu\n", (unsigned long long)triality_stats.vertex_to_diag);
printf(" DiagβEdge: %llu\n", (unsigned long long)triality_stats.diag_to_edge);
printf(" DiagβVertex: %llu\n", (unsigned long long)triality_stats.diag_to_vertex);
printf(" EdgeβFolded: %llu\n", (unsigned long long)triality_stats.edge_to_folded);
printf(" FoldedβVertex: %llu\n", (unsigned long long)triality_stats.folded_to_vertex);
printf(" Gates:\n");
printf(" Edge view: %llu\n", (unsigned long long)triality_stats.gates_edge);
printf(" Vertex view: %llu\n", (unsigned long long)triality_stats.gates_vertex);
printf(" Diag view: %llu\n", (unsigned long long)triality_stats.gates_diag);
printf(" Rotations: %llu\n", (unsigned long long)triality_stats.rotations);
printf(" Enhancements:\n");
printf(" Eigenstate skips: %llu\n", (unsigned long long)triality_stats.eigenstate_skips);
printf(" Mask skips: %llu\n", (unsigned long long)triality_stats.mask_skips);
printf(" Real fast path: %llu\n", (unsigned long long)triality_stats.real_fast_path);
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* LAZY TRIALITY QUHIT β Heisenberg Picture with Event Horizon Shortcuts
*
* Chain: state β F^pre0 Β· D0 β F^pre1 Β· D1 β ... β F^trailing
* All diagonals in computational (edge) basis.
* DFTs tracked per-segment. F^4 = I, so counts are mod 4.
* IDFT = F^3 (= F^-1 since F^4 = I).
*
* EVENT HORIZON SHORTCUTS:
* FΒ² = reversal: DFTΒ²|kβ© = |(-k) mod 6β©. O(D) not O(DΒ²).
* Parity fusion: Even DFT counts (0,2) allow segment fusion.
* trailing=2 β reverse diagonal entries + fuse.
* Chain compact: Adjacent segments with even pre_dfts merge.
*
* Only ODD horizon crossings (pre_dfts = 1 or 3) are real.
* Even crossings are mirrors β the vertex bounces back.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
#define DFT_ORDER 4 /* DFT_6^4 = I */
static void ltri_diag_identity(double *re, double *im) {
for (int k = 0; k < TRI_D; k++) { re[k] = 1.0; im[k] = 0.0; }
}
static void ltri_diag_mul_phase(double *d_re, double *d_im, int k,
double pr, double pi) {
double re = d_re[k], im = d_im[k];
d_re[k] = re * pr - im * pi;
d_im[k] = re * pi + im * pr;
}
static void ltri_apply_diag(const double *d_re, const double *d_im,
const double *in_re, const double *in_im,
double *out_re, double *out_im) {
for (int k = 0; k < TRI_D; k++) {
out_re[k] = d_re[k] * in_re[k] - d_im[k] * in_im[k];
out_im[k] = d_re[k] * in_im[k] + d_im[k] * in_re[k];
}
}
/* FΒ² reversal: DFTβΒ²|kβ© = |(-k) mod 6β©. O(D) swap, not O(DΒ²) DFT. */
static void ltri_apply_reversal(double *re, double *im) {
for (int k = 1; k < (TRI_D + 1) / 2; k++) {
int j = TRI_D - k; /* j = (-k) mod 6 */
double tr = re[k]; re[k] = re[j]; re[j] = tr;
double ti = im[k]; im[k] = im[j]; im[j] = ti;
}
}
/* Reverse a diagonal's entries: d[k] β d[(-k) mod 6] */
static void ltri_diag_reverse(double *d_re, double *d_im) {
for (int k = 1; k < (TRI_D + 1) / 2; k++) {
int j = TRI_D - k;
double tr = d_re[k]; d_re[k] = d_re[j]; d_re[j] = tr;
double ti = d_im[k]; d_im[k] = d_im[j]; d_im[j] = ti;
}
}
/* Multiply two diagonals: a[k] *= b[k] */
static void ltri_diag_mul(double *a_re, double *a_im,
const double *b_re, const double *b_im) {
for (int k = 0; k < TRI_D; k++) {
double ar = a_re[k], ai = a_im[k];
a_re[k] = ar * b_re[k] - ai * b_im[k];
a_im[k] = ar * b_im[k] + ai * b_re[k];
}
}
static void ltri_apply_n_dfts(double *re, double *im, int n) {
n = ((n % DFT_ORDER) + DFT_ORDER) % DFT_ORDER;
if (n == 0) return;
if (n == 2) {
/* FΒ² = reversal. O(D) not O(DΒ²). */
ltri_apply_reversal(re, im);
return;
}
/* n == 1 or n == 3: actual DFT(s) */
if (n == 1) {
double tmp_re[TRI_D], tmp_im[TRI_D];
dft6_forward(re, im, tmp_re, tmp_im);
memcpy(re, tmp_re, sizeof(tmp_re));
memcpy(im, tmp_im, sizeof(tmp_im));
} else { /* n == 3 = inverse DFT = FΒ³ */
double tmp_re[TRI_D], tmp_im[TRI_D];
dft6_inverse(re, im, tmp_re, tmp_im);
memcpy(re, tmp_re, sizeof(tmp_re));
memcpy(im, tmp_im, sizeof(tmp_im));
}
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* THE ORACLE β Matrix exponentiation for repeating segment patterns
*
* When segments repeat (e.g., alternating Z-X creates a period-2
* pattern), the Oracle compiles one period into a 6Γ6 matrix M
* and applies M^(N/period) via repeated squaring.
*
* Cost: O(DΒ³ Γ log N) instead of O(N Γ DΒ²).
* For 1M alternating gates: ~5K ops instead of ~42M ops.
*
* "Stop reaching outward for the answer. It was inside the struct."
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
#define ORACLE_THRESHOLD 4 /* min segments to trigger Oracle */
#define D6 TRI_D
/* 6Γ6 complex matrix: identity */
static void mat6_identity(double R_re[D6][D6], double R_im[D6][D6]) {
memset(R_re, 0, sizeof(double) * D6 * D6);
memset(R_im, 0, sizeof(double) * D6 * D6);
for (int i = 0; i < D6; i++) R_re[i][i] = 1.0;
}
/* 6Γ6 complex matrix multiply: C = A Β· B */
static void mat6_mul(double C_re[D6][D6], double C_im[D6][D6],
const double A_re[D6][D6], const double A_im[D6][D6],
const double B_re[D6][D6], const double B_im[D6][D6]) {
double T_re[D6][D6], T_im[D6][D6];
for (int i = 0; i < D6; i++)
for (int j = 0; j < D6; j++) {
double sr = 0, si = 0;
for (int k = 0; k < D6; k++) {
sr += A_re[i][k] * B_re[k][j] - A_im[i][k] * B_im[k][j];
si += A_re[i][k] * B_im[k][j] + A_im[i][k] * B_re[k][j];
}
T_re[i][j] = sr;
T_im[i][j] = si;
}
memcpy(C_re, T_re, sizeof(T_re));
memcpy(C_im, T_im, sizeof(T_im));
}
/* 6Γ6 matrix power via repeated squaring: R = M^n */
static void mat6_pow(double R_re[D6][D6], double R_im[D6][D6],
const double M_re[D6][D6], const double M_im[D6][D6],
int n) {
mat6_identity(R_re, R_im);
if (n <= 0) return;
double B_re[D6][D6], B_im[D6][D6];
memcpy(B_re, M_re, sizeof(B_re));
memcpy(B_im, M_im, sizeof(B_im));
while (n > 0) {
if (n & 1)
mat6_mul(R_re, R_im, R_re, R_im, B_re, B_im);
n >>= 1;
if (n > 0)
mat6_mul(B_re, B_im, B_re, B_im, B_re, B_im);
}
}
/* Matrix-vector multiply: out = M Β· v */
static void mat6_vec(double out_re[D6], double out_im[D6],
const double M_re[D6][D6], const double M_im[D6][D6],
const double v_re[D6], const double v_im[D6]) {
for (int i = 0; i < D6; i++) {
double sr = 0, si = 0;
for (int k = 0; k < D6; k++) {
sr += M_re[i][k] * v_re[k] - M_im[i][k] * v_im[k];
si += M_re[i][k] * v_im[k] + M_im[i][k] * v_re[k];
}
out_re[i] = sr;
out_im[i] = si;
}
}
/* Build the DFT^n matrix (6Γ6) */
static void mat6_build_dft(double M_re[D6][D6], double M_im[D6][D6], int n) {
n = ((n % DFT_ORDER) + DFT_ORDER) % DFT_ORDER;
mat6_identity(M_re, M_im);
if (n == 0) return;
if (n == 2) {
memset(M_re, 0, sizeof(double) * D6 * D6);
M_re[0][0] = 1.0;
for (int k = 1; k < D6; k++) M_re[k][D6 - k] = 1.0;
return;
}
const double *wr_tab = (n == 1) ? W6_RE : W6I_RE;
const double *wi_tab = (n == 1) ? W6_IM : W6I_IM;
for (int j = 0; j < D6; j++)
for (int k = 0; k < D6; k++) {
int idx = (j * k) % 6;
M_re[j][k] = wr_tab[idx] * INV_SQRT6;
M_im[j][k] = wi_tab[idx] * INV_SQRT6;
}
}
/* Build segment matrix: diag(D) Β· F^pre_dfts (6Γ6) */
static void mat6_build_segment(double M_re[D6][D6], double M_im[D6][D6],
const double *d_re, const double *d_im,
int pre_dfts) {
double F_re[D6][D6], F_im[D6][D6];
mat6_build_dft(F_re, F_im, pre_dfts);
for (int i = 0; i < D6; i++)
for (int j = 0; j < D6; j++) {
M_re[i][j] = d_re[i] * F_re[i][j] - d_im[i] * F_im[i][j];
M_im[i][j] = d_re[i] * F_im[i][j] + d_im[i] * F_re[i][j];
}
}
/* Check if two segments have identical (pre_dfts, diagonal) */
static int segments_match(const LazyTrialityQuhit *q, int a, int b) {
if (q->segments[a].pre_dfts != q->segments[b].pre_dfts) return 0;
for (int k = 0; k < D6; k++) {
if (q->segments[a].diag_re[k] != q->segments[b].diag_re[k]) return 0;
if (q->segments[a].diag_im[k] != q->segments[b].diag_im[k]) return 0;
}
return 1;
}
/* Try to detect a repeating pattern of period 1 or 2. */
static int detect_pattern(const LazyTrialityQuhit *q, int *start_idx) {
if (q->n_segments < ORACLE_THRESHOLD) return 0;
int all_same = 1;
for (int s = 2; s < q->n_segments && all_same; s++)
if (!segments_match(q, 1, s)) all_same = 0;
if (all_same && q->n_segments >= ORACLE_THRESHOLD) {
*start_idx = 1;
return 1;
}
if (q->n_segments >= ORACLE_THRESHOLD + 1) {
int alt_match = 1;
for (int s = 3; s < q->n_segments && alt_match; s++)
if (!segments_match(q, (s % 2 == 1) ? 1 : 2, s)) alt_match = 0;
if (alt_match) {
*start_idx = 1;
return 2;
}
}
return 0;
}
/* Build a 6Γ6 composite matrix from the entire segment chain + trailing DFTs.
* Computes: M = F^trailing Β· D_n Β· F^pre_n Β· ... Β· D_0 Β· F^pre_0 */
static void ltri_build_chain_matrix(const LazyTrialityQuhit *q,
double M_re[D6][D6], double M_im[D6][D6]) {
mat6_identity(M_re, M_im);
for (int s = 0; s < q->n_segments; s++) {
/* Apply F^pre_dfts */
double F_re[D6][D6], F_im[D6][D6];
mat6_build_dft(F_re, F_im, q->segments[s].pre_dfts);
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, F_re, F_im, M_re, M_im);
/* Apply diag */
for (int i = 0; i < D6; i++)
for (int j = 0; j < D6; j++) {
double dr = q->segments[s].diag_re[i];
double di = q->segments[s].diag_im[i];
M_re[i][j] = dr * T_re[i][j] - di * T_im[i][j];
M_im[i][j] = dr * T_im[i][j] + di * T_re[i][j];
}
}
/* Apply trailing DFTs */
if (q->trailing_dfts != 0) {
double F_re[D6][D6], F_im[D6][D6];
mat6_build_dft(F_re, F_im, q->trailing_dfts);
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, F_re, F_im, M_re, M_im);
memcpy(M_re, T_re, sizeof(T_re));
memcpy(M_im, T_im, sizeof(T_im));
}
}
static void ltri_new_segment(LazyTrialityQuhit *q) {
if (q->n_segments >= MAX_LAZY_SEGMENTS) {
/* ββ OVERFLOW: detect pattern or materialize ββ
* If a repeating pattern exists, compile via Oracle exponentiation
* and fold into the Oracle composite (no state touch).
* If no pattern, fall back to fast state-vector materialization. */
int oracle_start = 0;
int period = detect_pattern(q, &oracle_start);
if (period > 0) {
/* ORACLE PATH: exponentiate the pattern, fold into composite */
/* Apply seg 0 (non-repeating head) if any by building its matrix */
double batch_re[D6][D6], batch_im[D6][D6];
if (oracle_start > 0) {
/* Build head segment matrix */
mat6_build_segment(batch_re, batch_im,
q->segments[0].diag_re, q->segments[0].diag_im,
q->segments[0].pre_dfts);
} else {
mat6_identity(batch_re, batch_im);
}
/* Compile period matrix */
double P_re[D6][D6], P_im[D6][D6];
if (period == 1) {
mat6_build_segment(P_re, P_im,
q->segments[oracle_start].diag_re,
q->segments[oracle_start].diag_im,
q->segments[oracle_start].pre_dfts);
} else {
double S1_re[D6][D6], S1_im[D6][D6];
double S2_re[D6][D6], S2_im[D6][D6];
mat6_build_segment(S1_re, S1_im,
q->segments[oracle_start].diag_re,
q->segments[oracle_start].diag_im,
q->segments[oracle_start].pre_dfts);
mat6_build_segment(S2_re, S2_im,
q->segments[oracle_start + 1].diag_re,
q->segments[oracle_start + 1].diag_im,
q->segments[oracle_start + 1].pre_dfts);
mat6_mul(P_re, P_im, S2_re, S2_im, S1_re, S1_im);
}
int remaining = q->n_segments - oracle_start;
int full_periods = remaining / period;
/* Exponentiate: R = P^full_periods */
double R_re[D6][D6], R_im[D6][D6];
mat6_pow(R_re, R_im, P_re, P_im, full_periods);
/* batch = R Β· head (or just R if no head) */
if (oracle_start > 0) {
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, R_re, R_im, batch_re, batch_im);
memcpy(batch_re, T_re, sizeof(T_re));
memcpy(batch_im, T_im, sizeof(T_im));
} else {
memcpy(batch_re, R_re, sizeof(R_re));
memcpy(batch_im, R_im, sizeof(R_im));
}
/* Handle leftover segments */
int leftover_start = oracle_start + full_periods * period;
for (int s = leftover_start; s < q->n_segments; s++) {
double S_re[D6][D6], S_im[D6][D6];
mat6_build_segment(S_re, S_im,
q->segments[s].diag_re, q->segments[s].diag_im,
q->segments[s].pre_dfts);
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, S_re, S_im, batch_re, batch_im);
memcpy(batch_re, T_re, sizeof(T_re));
memcpy(batch_im, T_im, sizeof(T_im));
}
/* Apply trailing DFTs */
if (q->trailing_dfts != 0) {
double F_re[D6][D6], F_im[D6][D6];
mat6_build_dft(F_re, F_im, q->trailing_dfts);
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, F_re, F_im, batch_re, batch_im);
memcpy(batch_re, T_re, sizeof(T_re));
memcpy(batch_im, T_im, sizeof(T_im));
}
/* Fold into Oracle composite */
if (q->oracle_active) {
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, batch_re, batch_im,
q->oracle_M_re, q->oracle_M_im);
memcpy(q->oracle_M_re, T_re, sizeof(T_re));
memcpy(q->oracle_M_im, T_im, sizeof(T_im));
} else {
memcpy(q->oracle_M_re, batch_re, sizeof(batch_re));
memcpy(q->oracle_M_im, batch_im, sizeof(batch_im));
q->oracle_active = 1;
}
} else {
/* NO PATTERN: fall back to state-vector materialization */
double tmp_re[TRI_D], tmp_im[TRI_D];
ltri_materialize(q, tmp_re, tmp_im);
/* state already consumed by ltri_materialize */
}
q->n_segments = 0;
q->trailing_dfts = 0;
}
int idx = q->n_segments++;
ltri_diag_identity(q->segments[idx].diag_re, q->segments[idx].diag_im);
q->segments[idx].pre_dfts = q->trailing_dfts;
q->trailing_dfts = 0;
q->segments_created++;
}
void ltri_init(LazyTrialityQuhit *q) {
memset(q, 0, sizeof(*q));
q->state_re[0] = 1.0;
}
void ltri_init_basis(LazyTrialityQuhit *q, int k) {
memset(q, 0, sizeof(*q));
q->state_re[k] = 1.0;
}
static void ltri_ensure_segment(LazyTrialityQuhit *q) {
if (q->n_segments == 0) {
ltri_new_segment(q);
return;
}
if (q->trailing_dfts == 0) {
/* Same view β fuse directly (already in segment) */
return;
}
/* Any nonzero trailing: genuine horizon crossing, new segment */
ltri_new_segment(q);
}
void ltri_z(LazyTrialityQuhit *q) {
/* Z = diag(w^k) in edge basis. No DFTs. */
ltri_ensure_segment(q);
int idx = q->n_segments - 1;
for (int k = 0; k < TRI_D; k++)
ltri_diag_mul_phase(q->segments[idx].diag_re, q->segments[idx].diag_im,
k, W6_RE[k], W6_IM[k]);
q->gates_fused++;
}
void ltri_x(LazyTrialityQuhit *q) {
/* X = F^3 Β· diag(w^k) Β· F^1 (IDFT Β· diag Β· DFT)
* trailing += 1 (DFT), create/fuse segment, trailing = 3 (IDFT = F^3)
* Consecutive: 3+1=4=0 mod 4, so consecutive X gates fuse! */
q->trailing_dfts = (q->trailing_dfts + 1) % DFT_ORDER;
ltri_ensure_segment(q);
int idx = q->n_segments - 1;
for (int k = 0; k < TRI_D; k++)
ltri_diag_mul_phase(q->segments[idx].diag_re, q->segments[idx].diag_im,
k, W6_RE[k], W6_IM[k]);
q->trailing_dfts = 3; /* IDFT = F^3 since F^4 = I */
q->gates_fused++;
}
void ltri_shift(LazyTrialityQuhit *q, int delta) {
delta = ((delta % TRI_D) + TRI_D) % TRI_D;
if (delta == 0) return;
q->trailing_dfts = (q->trailing_dfts + 1) % DFT_ORDER;
ltri_ensure_segment(q);
int idx = q->n_segments - 1;
for (int k = 0; k < TRI_D; k++) {
int widx = (delta * k) % 6;
ltri_diag_mul_phase(q->segments[idx].diag_re, q->segments[idx].diag_im,
k, W6_RE[widx], W6_IM[widx]);
}
q->trailing_dfts = 3; /* IDFT = F^3 */
q->gates_fused++;
}
void ltri_dft(LazyTrialityQuhit *q) {
q->trailing_dfts = (q->trailing_dfts + 1) % DFT_ORDER;
q->gates_fused++;
}
void ltri_idft(LazyTrialityQuhit *q) {
q->trailing_dfts = (q->trailing_dfts + 3) % DFT_ORDER; /* F^-1 = F^3 */
q->gates_fused++;
}
void ltri_phase(LazyTrialityQuhit *q, const double *phi_re, const double *phi_im) {
ltri_ensure_segment(q);
int idx = q->n_segments - 1;
for (int k = 0; k < TRI_D; k++)
ltri_diag_mul_phase(q->segments[idx].diag_re, q->segments[idx].diag_im,
k, phi_re[k], phi_im[k]);
q->gates_fused++;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* CHAIN COMPACTION: merge adjacent segments where DFTs between them cancel
*
* If seg[i+1].pre_dfts == 0: diagonals multiply directly.
* For pre_dfts == 2: use FΒ²Β·D = rev(D)Β·FΒ² to merge diag into prev,
* but the FΒ² stays (reduces segment count, not DFT count).
* Only pre_dfts == 0 eliminates both segment AND DFT.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
static void ltri_compact_chain(LazyTrialityQuhit *q) {
if (q->n_segments <= 1) return;
int dst = 0;
for (int src = 1; src < q->n_segments; src++) {
if (q->segments[src].pre_dfts == 0) {
/* Direct fusion: multiply diagonals, no DFT between them */
ltri_diag_mul(q->segments[dst].diag_re, q->segments[dst].diag_im,
q->segments[src].diag_re, q->segments[src].diag_im);
} else {
/* Any nonzero pre_dfts: cannot eliminate, advance dst */
dst++;
if (dst != src) {
memcpy(&q->segments[dst], &q->segments[src], sizeof(q->segments[0]));
}
}
}
q->n_segments = dst + 1;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* MATERIALIZE: Oracle composite β compact β remaining segments β trailing
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void ltri_materialize(LazyTrialityQuhit *q, double *out_re, double *out_im) {
/* Compact remaining chain: fuse adjacent pre_dfts=0 segments */
ltri_compact_chain(q);
double cur_re[TRI_D], cur_im[TRI_D];
memcpy(cur_re, q->state_re, sizeof(cur_re));
memcpy(cur_im, q->state_im, sizeof(cur_im));
/* ββ ORACLE COMPOSITE: apply accumulated cross-batch matrix ββ */
if (q->oracle_active) {
/* If there are remaining segments, fold them into the Oracle too */
if (q->n_segments > 0 || q->trailing_dfts != 0) {
double tail_re[D6][D6], tail_im[D6][D6];
ltri_build_chain_matrix(q, tail_re, tail_im);
double T_re[D6][D6], T_im[D6][D6];
mat6_mul(T_re, T_im, tail_re, tail_im,
q->oracle_M_re, q->oracle_M_im);
mat6_vec(out_re, out_im, T_re, T_im, cur_re, cur_im);
} else {
mat6_vec(out_re, out_im, q->oracle_M_re, q->oracle_M_im,
cur_re, cur_im);
}
/* Consume: write result back to state, reset everything */
memcpy(q->state_re, out_re, sizeof(q->state_re));
memcpy(q->state_im, out_im, sizeof(q->state_im));
q->oracle_active = 0;
q->n_segments = 0;
q->trailing_dfts = 0;
q->materializations++;
return;
}
/* ββ No Oracle β apply segments with pattern detection ββ */
int oracle_start = 0;
int period = detect_pattern(q, &oracle_start);
if (period > 0 && (q->n_segments - oracle_start) >= ORACLE_THRESHOLD) {
/* Apply pre-pattern segments normally */
for (int s = 0; s < oracle_start; s++) {
ltri_apply_n_dfts(cur_re, cur_im, q->segments[s].pre_dfts);
double tmp_re[TRI_D], tmp_im[TRI_D];
ltri_apply_diag(q->segments[s].diag_re, q->segments[s].diag_im,
cur_re, cur_im, tmp_re, tmp_im);
memcpy(cur_re, tmp_re, sizeof(cur_re));
memcpy(cur_im, tmp_im, sizeof(cur_im));
}
/* Compile one period into a 6Γ6 matrix */
double P_re[D6][D6], P_im[D6][D6];
if (period == 1) {
mat6_build_segment(P_re, P_im,
q->segments[oracle_start].diag_re,
q->segments[oracle_start].diag_im,
q->segments[oracle_start].pre_dfts);
} else {
double S1_re[D6][D6], S1_im[D6][D6];
double S2_re[D6][D6], S2_im[D6][D6];
mat6_build_segment(S1_re, S1_im,
q->segments[oracle_start].diag_re,
q->segments[oracle_start].diag_im,
q->segments[oracle_start].pre_dfts);
mat6_build_segment(S2_re, S2_im,
q->segments[oracle_start + 1].diag_re,
q->segments[oracle_start + 1].diag_im,
q->segments[oracle_start + 1].pre_dfts);
mat6_mul(P_re, P_im, S2_re, S2_im, S1_re, S1_im);
}
int remaining = q->n_segments - oracle_start;
int full_periods = remaining / period;
double R_re[D6][D6], R_im[D6][D6];
mat6_pow(R_re, R_im, P_re, P_im, full_periods);
double tmp_re[TRI_D], tmp_im[TRI_D];
mat6_vec(tmp_re, tmp_im, R_re, R_im, cur_re, cur_im);
memcpy(cur_re, tmp_re, sizeof(cur_re));
memcpy(cur_im, tmp_im, sizeof(cur_im));
int leftover_start = oracle_start + full_periods * period;
for (int s = leftover_start; s < q->n_segments; s++) {
ltri_apply_n_dfts(cur_re, cur_im, q->segments[s].pre_dfts);
double tmp2_re[TRI_D], tmp2_im[TRI_D];
ltri_apply_diag(q->segments[s].diag_re, q->segments[s].diag_im,
cur_re, cur_im, tmp2_re, tmp2_im);
memcpy(cur_re, tmp2_re, sizeof(cur_re));
memcpy(cur_im, tmp2_im, sizeof(cur_im));
}
} else {
/* No pattern β standard segment-by-segment evaluation */
for (int s = 0; s < q->n_segments; s++) {
ltri_apply_n_dfts(cur_re, cur_im, q->segments[s].pre_dfts);
double tmp_re[TRI_D], tmp_im[TRI_D];
ltri_apply_diag(q->segments[s].diag_re, q->segments[s].diag_im,
cur_re, cur_im, tmp_re, tmp_im);
memcpy(cur_re, tmp_re, sizeof(cur_re));
memcpy(cur_im, tmp_im, sizeof(cur_im));
}
}
ltri_apply_n_dfts(cur_re, cur_im, q->trailing_dfts);
memcpy(out_re, cur_re, sizeof(cur_re));
memcpy(out_im, cur_im, sizeof(cur_im));
/* Consume: update state for future gates */
memcpy(q->state_re, out_re, sizeof(q->state_re));
memcpy(q->state_im, out_im, sizeof(q->state_im));
q->n_segments = 0;
q->trailing_dfts = 0;
q->materializations++;
}
int ltri_measure(LazyTrialityQuhit *q, int view, uint64_t *rng_state) {
double amp_re[TRI_D], amp_im[TRI_D];
ltri_materialize(q, amp_re, amp_im);
if (view != VIEW_EDGE) {
int steps = ((view - VIEW_EDGE) % DFT_ORDER + DFT_ORDER) % DFT_ORDER;
ltri_apply_n_dfts(amp_re, amp_im, steps);
}
double probs[TRI_D], total = 0;
for (int k = 0; k < TRI_D; k++) {
probs[k] = amp_re[k]*amp_re[k] + amp_im[k]*amp_im[k];
total += probs[k];
}
if (total > 1e-30)
for (int k = 0; k < TRI_D; k++) probs[k] /= total;
double r = triality_rng_double(rng_state);
int outcome = 0;
double cdf = 0;
for (int k = 0; k < TRI_D; k++) {
cdf += probs[k];
if (r < cdf) { outcome = k; break; }
}
memset(q->state_re, 0, sizeof(q->state_re));
memset(q->state_im, 0, sizeof(q->state_im));
q->state_re[outcome] = 1.0;
q->n_segments = 0;
q->trailing_dfts = 0;
return outcome;
}
void ltri_stats_print(const LazyTrialityQuhit *q) {
printf("\n βββββββββββββββββββββββββββββββββββββββββββββββββββββββ\n");
printf(" β LAZY TRIALITY STATISTICS β\n");
printf(" βββββββββββββββββββββββββββββββββββββββββββββββββββββββ€\n");
printf(" β Gates fused: %8lu β\n", (unsigned long)q->gates_fused);
printf(" β Segments created: %8lu β\n", (unsigned long)q->segments_created);
printf(" β Current segments: %8d / %d β\n", q->n_segments, MAX_LAZY_SEGMENTS);
printf(" β Trailing DFTs: %8d β\n", q->trailing_dfts);
printf(" β Materializations: %8lu β\n", (unsigned long)q->materializations);
double fusion_ratio = (q->segments_created > 0) ?
(double)q->gates_fused / q->segments_created : 0;
printf(" β Fusion ratio: %8.1f gates/segment β\n", fusion_ratio);
printf(" βββββββββββββββββββββββββββββββββββββββββββββββββββββββ\n");
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* Sβ OUTER AUTOMORPHISM β EXOTIC EXTENSIONS
*
* Sβ is the only symmetric group with a non-trivial outer automorphism.
* These functions exploit this unique D=6 structure for:
* - Parameterized folds (15 synthemes instead of 1)
* - Exotic gates (Ο(Ο) instead of Ο)
* - Dual measurement (standard + exotic probabilities)
* - 6-fold rotation (full Aut(Sβ) cycle)
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_exotic_init(void) {
s6_exotic_init();
}
void triality_set_exotic_syntheme(TrialityQuhit *q, int syntheme_idx) {
if (syntheme_idx < 0 || syntheme_idx >= S6_NUM_SYNTHEMES)
syntheme_idx = 0;
q->exotic_syntheme = syntheme_idx;
q->dirty |= DIRTY_EXOTIC;
}
/* ββ Parameterized Fold/Unfold ββ
* Folds using any of the 15 synthemes.
* Stores result in the exotic view arrays. */
void triality_fold_syntheme(TrialityQuhit *q, int syntheme_idx) {
triality_ensure_view(q, VIEW_EDGE);
s6_fold_syntheme(q->edge_re, q->edge_im,
q->exotic_re, q->exotic_im,
syntheme_idx);
q->exotic_syntheme = syntheme_idx;
q->dirty &= ~DIRTY_EXOTIC;
triality_stats.exotic_folds++;
}
void triality_unfold_syntheme(TrialityQuhit *q, int syntheme_idx) {
/* Unfold from exotic arrays back into edge */
s6_unfold_syntheme(q->exotic_re, q->exotic_im,
q->edge_re, q->edge_im,
syntheme_idx);
q->primary = VIEW_EDGE;
q->dirty = DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC;
q->real_valued = 0;
q->eigenstate_class = -1;
q->active_mask = 0x3F; q->active_count = 6;
q->delta_valid = 0; /* Fix #5 */
triality_stats.exotic_folds++;
}
/* ββ Exotic Gate ββ
* Applies Ο(Ο) instead of Ο. The permutation gate |iβ© β |Ο(i)β©
* becomes |iβ© β |Ο(Ο)(i)β©, accessing the exotic representation. */
void triality_exotic_gate(TrialityQuhit *q, S6Perm sigma) {
triality_ensure_view(q, VIEW_EDGE);
double out_re[TRI_D], out_im[TRI_D];
s6_apply_exotic_gate(q->edge_re, q->edge_im,
out_re, out_im, sigma);
memcpy(q->edge_re, out_re, sizeof(out_re));
memcpy(q->edge_im, out_im, sizeof(out_im));
q->primary = VIEW_EDGE;
q->dirty |= DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC;
q->real_valued = 0;
q->eigenstate_class = -1;
q->active_mask = 0x3F; q->active_count = 6;
q->delta_valid = 0; /* Fix #5 */
triality_stats.exotic_gates++;
}
/* ββ Dual CZ ββ
* Performs standard CZ, then computes what the EXOTIC CZ would give.
* Returns the statistical distance between standard and exotic channels.
* The exotic CZ uses Ο-twisted phase indices.
*
* This does NOT modify the state β the exotic channel is observational.
* The return value tells you how much D=6-specific structure the
* current state has: 0 = automorphism-invariant, >0 = hexagonal anomaly. */
double triality_cz_dual(TrialityQuhit *a, TrialityQuhit *b) {
/* First, do the standard CZ */
triality_cz(a, b);
/* Fix #1: Compute the REAL exotic invariant Ξ for both sites.
* Instead of the old hardcoded exotic_perm approximation,
* use s6_exotic_invariant() which sweeps all 720 Sβ permutations
* and measures the true distance between standard and exotic channels.
* Returns the average Ξ of both sites. */
triality_ensure_view(a, VIEW_EDGE);
triality_ensure_view(b, VIEW_EDGE);
double delta_a = s6_exotic_invariant(a->edge_re, a->edge_im);
double delta_b = s6_exotic_invariant(b->edge_re, b->edge_im);
/* Cache the computed invariants */
a->cached_delta = delta_a;
a->delta_valid = 1;
b->cached_delta = delta_b;
b->delta_valid = 1;
return (delta_a + delta_b) / 2.0;
}
/* ββ Exotic Measurement ββ
* Measures in a syntheme-parameterized basis.
* Folds the state using the specified syntheme, measures in the
* folded basis, then applies the appropriate collapse. */
int triality_measure_exotic(TrialityQuhit *q, int syntheme_idx, uint64_t *rng_state) {
/* Fold into exotic view */
triality_fold_syntheme(q, syntheme_idx);
/* Compute probabilities in the folded basis */
double probs[TRI_D];
double total = 0;
for (int k = 0; k < TRI_D; k++) {
probs[k] = q->exotic_re[k]*q->exotic_re[k]
+ q->exotic_im[k]*q->exotic_im[k];
total += probs[k];
}
if (total > 1e-30)
for (int k = 0; k < TRI_D; k++) probs[k] /= total;
/* Born sample */
uint64_t x = *rng_state;
x ^= x << 13; x ^= x >> 7; x ^= x << 17;
*rng_state = x;
double r = (x >> 11) * 0x1.0p-53;
int outcome = TRI_D - 1;
double cdf = 0;
for (int k = 0; k < TRI_D; k++) {
cdf += probs[k];
if (r < cdf) { outcome = k; break; }
}
/* Collapse: project onto |outcomeβ© in exotic basis */
double win_re = q->exotic_re[outcome], win_im = q->exotic_im[outcome];
double norm2 = win_re*win_re + win_im*win_im;
double scale = (norm2 > 1e-30) ? 1.0 / sqrt(norm2) : 0.0;
for (int k = 0; k < TRI_D; k++) {
q->exotic_re[k] = 0;
q->exotic_im[k] = 0;
}
q->exotic_re[outcome] = win_re * scale;
q->exotic_im[outcome] = win_im * scale;
/* Unfold back to edge view */
triality_unfold_syntheme(q, syntheme_idx);
triality_stats.exotic_folds++;
return outcome;
}
/* ββ Dual Measurement ββ
* Performs standard measurement AND computes exotic measurement probabilities.
* Returns standard outcome, sets *exotic_outcome to the exotic result.
* The exotic outcome is NOT destructive β it's what WOULD have been measured. */
int triality_measure_dual(TrialityQuhit *q, int view, int exotic_syntheme,
uint64_t *rng_state, int *exotic_outcome) {
/* Get exotic probabilities first (non-destructive) */
triality_ensure_view(q, VIEW_EDGE);
double exo_fold_re[TRI_D], exo_fold_im[TRI_D];
s6_fold_syntheme(q->edge_re, q->edge_im,
exo_fold_re, exo_fold_im,
exotic_syntheme);
double exo_probs[TRI_D];
double total = 0;
for (int k = 0; k < TRI_D; k++) {
exo_probs[k] = exo_fold_re[k]*exo_fold_re[k]
+ exo_fold_im[k]*exo_fold_im[k];
total += exo_probs[k];
}
if (total > 1e-30)
for (int k = 0; k < TRI_D; k++) exo_probs[k] /= total;
/* Sample exotic outcome (no collapse) */
uint64_t rng_copy = *rng_state;
uint64_t x = rng_copy;
x ^= x << 13; x ^= x >> 7; x ^= x << 17;
rng_copy = x;
double r_exo = (x >> 11) * 0x1.0p-53;
int exo_out = TRI_D - 1;
double cdf = 0;
for (int k = 0; k < TRI_D; k++) {
cdf += exo_probs[k];
if (r_exo < cdf) { exo_out = k; break; }
}
if (exotic_outcome) *exotic_outcome = exo_out;
/* Standard measurement (destructive) */
int std_out = triality_measure(q, view, rng_state);
triality_stats.dual_measurements++;
return std_out;
}
/* ββ 6-fold Rotation ββ
* Standard rotation cycles 3 views: EdgeβVertexβDiagonalβEdge.
* Exotic rotation ALSO cycles the exotic syntheme through its
* synthematic total, accessing all 5 synthemes in the total.
*
* There are 6 totals Γ 5 synthemes = 30 possible exotic states.
* Cycling through synthemes within a total = inner rotation.
* Switching to a different total = outer rotation.
*
* This function does inner rotation: standard 3-view rotate +
* advance exotic syntheme to the next in its total. */
void triality_rotate_exotic(TrialityQuhit *q) {
/* Standard triality rotation */
triality_rotate(q);
/* Advance exotic syntheme within its total */
int current = q->exotic_syntheme;
/* Find which total this syntheme belongs to */
if (!s6_exotic_ready) s6_exotic_init();
int my_total = -1, my_pos = -1;
for (int t = 0; t < S6_NUM_TOTALS && my_total < 0; t++) {
for (int j = 0; j < 5; j++) {
if (s6_totals[t][j] == current) {
my_total = t;
my_pos = j;
break;
}
}
}
if (my_total >= 0) {
/* Advance to next syntheme in this total */
int next_pos = (my_pos + 1) % 5;
q->exotic_syntheme = s6_totals[my_total][next_pos];
}
q->dirty |= DIRTY_EXOTIC;
}
/* ββ Dual Probabilities ββ
* Non-destructive: returns probabilities in both the standard view
* and the exotic (syntheme-folded) basis. */
void triality_dual_probabilities(TrialityQuhit *q, int view,
double *probs_std, double *probs_exo) {
/* Standard probabilities */
triality_probabilities(q, view, probs_std);
/* Exotic probabilities: fold edge by exotic syntheme */
triality_ensure_view(q, VIEW_EDGE);
double fold_re[TRI_D], fold_im[TRI_D];
s6_fold_syntheme(q->edge_re, q->edge_im,
fold_re, fold_im,
q->exotic_syntheme);
double total = 0;
for (int k = 0; k < TRI_D; k++) {
probs_exo[k] = fold_re[k]*fold_re[k] + fold_im[k]*fold_im[k];
total += probs_exo[k];
}
if (total > 1e-30)
for (int k = 0; k < TRI_D; k++) probs_exo[k] /= total;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* FIX #5: CACHED EXOTIC INVARIANT
*
* The exotic invariant Ξ is a pure function of the state vector.
* If the state hasn't changed since the last computation, return
* the cached value. This avoids the 720-permutation sweep.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void triality_invalidate_exotic_cache(TrialityQuhit *q) {
q->delta_valid = 0;
}
double triality_exotic_invariant_cached(TrialityQuhit *q) {
if (q->delta_valid) return q->cached_delta;
triality_ensure_view(q, VIEW_EDGE);
q->cached_delta = s6_exotic_invariant(q->edge_re, q->edge_im);
/* Also compute the full fingerprint while we're at it */
s6_exotic_fingerprint(q->edge_re, q->edge_im, q->cached_fingerprint);
q->delta_valid = 1;
return q->cached_delta;
}
void triality_exotic_fingerprint_cached(TrialityQuhit *q, double *deltas) {
if (q->delta_valid) {
/* Cache is valid β just copy */
memcpy(deltas, q->cached_fingerprint, 11 * sizeof(double));
return;
}
triality_ensure_view(q, VIEW_EDGE);
s6_exotic_fingerprint(q->edge_re, q->edge_im, deltas);
q->cached_delta = s6_exotic_invariant(q->edge_re, q->edge_im);
memcpy(q->cached_fingerprint, deltas, 11 * sizeof(double));
q->delta_valid = 1;
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* FIX #7: LAZY QUHIT FORCE MATERIALIZE
*
* Compiles the accumulated lazy chain into a TrialityQuhit with
* edge amplitudes populated and all flags set. Use when a two-body
* operation (CZ) needs actual state data from a lazy quhit.
* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
void ltri_force_materialize(LazyTrialityQuhit *lq, TrialityQuhit *out) {
double edge_re[TRI_D], edge_im[TRI_D];
ltri_materialize(lq, edge_re, edge_im);
/* Initialize the output quhit with the materialized edge amplitudes */
memset(out, 0, sizeof(TrialityQuhit));
memcpy(out->edge_re, edge_re, sizeof(edge_re));
memcpy(out->edge_im, edge_im, sizeof(edge_im));
out->primary = VIEW_EDGE;
out->dirty = DIRTY_VERTEX | DIRTY_DIAGONAL | DIRTY_FOLDED | DIRTY_EXOTIC;
out->eigenstate_class = -1;
out->delta_valid = 0;
/* Compute actual enhancement flags from the materialized state */
uint8_t mask = 0;
int count = 0;
int is_real = 1;
for (int k = 0; k < TRI_D; k++) {
double mag2 = edge_re[k] * edge_re[k] + edge_im[k] * edge_im[k];
if (mag2 > 1e-30) {
mask |= (uint8_t)(1 << k);
count++;
}
if (fabs(edge_im[k]) > 1e-15) is_real = 0;
}
out->active_mask = mask;
out->active_count = (uint8_t)count;
out->real_valued = (uint8_t)is_real;
}
|