File size: 93,036 Bytes
7f611c5 | 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 | """
AdaEvolve Database - Population management with adaptive search intensity.
A clean implementation that embodies adaptive optimization principles:
1. Accumulated improvement signal per island determines search intensity
2. UCB with decayed magnitude rewards for island selection
3. High productivity → exploit, Low productivity → explore
4. UnifiedArchive per island maintains diversity even during exploitation
5. Dynamic island spawning when global stagnation is detected
6. Paradigm breakthrough for high-level strategy shifts
"""
import json
import logging
import os
import random
import uuid
from typing import Any, Dict, List, Optional, Set, Tuple
from skydiscover.config import DatabaseConfig
from skydiscover.search.adaevolve.adaptation import AdaptiveState, MultiDimensionalAdapter
from skydiscover.search.adaevolve.archive import (
ArchiveConfig,
UnifiedArchive,
create_diversity_strategy,
)
from skydiscover.search.adaevolve.paradigm import ParadigmTracker
from skydiscover.search.base_database import Program, ProgramDatabase
from skydiscover.utils.metrics import compute_proxy_score, get_score
logger = logging.getLogger(__name__)
# ------------------------------------------------------------------
# Sampling Mode Labels (injected into prompt by the framework's
# _format_current_program via the parent dict key)
# ------------------------------------------------------------------
# --- Code / Algorithm Optimization Labels ---
EXPLORE_LABEL = """\
## PARENT SELECTION CONTEXT
This parent was selected through diversity-driven sampling to explore different regions.
### EXPLORATION GUIDANCE
- Consider alternative algorithmic approaches
- Don't be constrained by the parent's approach
- Look for fundamentally different algorithms or novel techniques
- Balance creativity with correctness
Your goal: Discover new approaches that might outperform current solutions."""
EXPLOIT_LABEL = """\
## PARENT SELECTION CONTEXT
This parent was selected from the archive of top-performing programs.
### OPTIMIZATION GUIDANCE
- This solution works well, but meaningful improvements are still possible
- You may refine the existing approach OR introduce better algorithms
- Consider: algorithmic improvements, better data structures, efficient libraries
- Ensure correctness is maintained
Your goal: Improve upon this solution."""
# --- Prompt Optimization Labels ---
EXPLORE_LABEL_PROMPT_OPT = """\
## PARENT SELECTION CONTEXT
This prompt was selected through diversity-driven sampling to explore different instruction strategies.
### EXPLORATION GUIDANCE
- Try a fundamentally different prompt structure or instruction strategy
- Don't be constrained by the parent prompt's phrasing or approach
- Consider: different reasoning guidance, output format changes, adding/removing examples, role changes
- A completely different style of instruction may unlock better LLM performance
Your goal: Discover new prompt strategies that might outperform current approaches."""
EXPLOIT_LABEL_PROMPT_OPT = """\
## PARENT SELECTION CONTEXT
This prompt was selected from the archive of top-performing prompts.
### REFINEMENT GUIDANCE
- This prompt works well, but meaningful improvements are still possible
- Refine the wording, tighten constraints, clarify ambiguous instructions
- Consider: more precise language, better reasoning guidance, stronger output format enforcement
- Small targeted edits to a good prompt can yield significant score gains
Your goal: Refine and improve this prompt."""
# ------------------------------------------------------------------
# Heterogeneous Island Configuration Presets
# ------------------------------------------------------------------
# Each preset defines different weights for the elite score computation,
# creating islands that specialize in different aspects of the search.
ISLAND_CONFIG_PRESETS = [
{
"name": "balanced",
"description": "Balanced quality-diversity tradeoff (default)",
"pareto_weight": 0.4,
"fitness_weight": 0.3,
"novelty_weight": 0.3,
"elite_ratio": 0.2,
},
{
"name": "quality",
"description": "Focuses on fitness/quality over diversity",
"pareto_weight": 0.2,
"fitness_weight": 0.6,
"novelty_weight": 0.2,
"elite_ratio": 0.3,
},
{
"name": "diversity",
"description": "Focuses on novelty/diversity over quality",
"pareto_weight": 0.3,
"fitness_weight": 0.2,
"novelty_weight": 0.5,
"elite_ratio": 0.1,
},
{
"name": "pareto",
"description": "Strongly favors Pareto-optimal solutions",
"pareto_weight": 0.6,
"fitness_weight": 0.2,
"novelty_weight": 0.2,
"elite_ratio": 0.2,
},
{
"name": "exploration",
"description": "Aggressive exploration with minimal elite protection",
"pareto_weight": 0.2,
"fitness_weight": 0.3,
"novelty_weight": 0.5,
"elite_ratio": 0.05,
},
]
def get_island_config_preset(name: str) -> Dict[str, Any]:
"""Get an island configuration preset by name."""
for preset in ISLAND_CONFIG_PRESETS:
if preset["name"] == name:
return preset.copy()
raise ValueError(f"Unknown island config preset: {name}")
class AdaEvolveDatabase(ProgramDatabase):
"""
AdaEvolve population database with adaptive multi-island search.
Key Design Principles:
1. MultiDimensionalAdapter handles ALL per-island adaptive state
2. No separate island arrays - adapter.states[i] is the adaptive state for island i
3. UnifiedArchive per island for quality-diversity (can be disabled for ablation)
4. No explicit stagnation tracking - search intensity handles exploration automatically
5. UCB with decayed magnitude rewards prevents breakthrough memory problem
6. Dynamic island spawning when global productivity drops
7. Paradigm breakthrough for high-level strategy shifts
"""
def __init__(self, name: str, config: DatabaseConfig):
super().__init__(name, config)
# Language-aware label selection (set by Runner after creation)
# Default to "python"; overridden to "text" for prompt optimization
self.language: str = "python"
# Configuration
self.num_islands = getattr(config, "num_islands", 4)
self.current_island = 0
self.migration_interval = getattr(config, "migration_interval", 50)
self.migration_count = getattr(config, "migration_count", 3)
self._iteration_count = 0
self.population_size = config.population_size
self.higher_is_better = getattr(config, "higher_is_better", {}) or {}
self.fitness_key = getattr(config, "fitness_key", None)
self.pareto_objectives = list(getattr(config, "pareto_objectives", []) or [])
# Unified archive flag (can be disabled for ablation studies)
self.use_unified_archive = getattr(config, "use_unified_archive", True)
# Adaptive configuration
self.decay = getattr(config, "decay", 0.9)
self.intensity_min = getattr(config, "intensity_min", 0.1)
self.intensity_max = getattr(config, "intensity_max", 0.7)
# Ablation flags for adaptive mechanisms
# use_adaptive_search: When False, use fixed exploration ratio instead of G-based intensity
# use_ucb_selection: When False, use round-robin island selection instead of UCB
# use_migration: When False, disable inter-island migration
self.use_adaptive_search = getattr(config, "use_adaptive_search", True)
self.use_ucb_selection = getattr(config, "use_ucb_selection", True)
self.use_migration = getattr(config, "use_migration", True)
self.fixed_intensity = getattr(config, "fixed_intensity", 0.4)
# Validate intensity bounds
if self.intensity_min > self.intensity_max:
logger.warning(
f"intensity_min ({self.intensity_min}) > intensity_max ({self.intensity_max}). "
f"This inverts the exploration/exploitation logic! Swapping values."
)
self.intensity_min, self.intensity_max = self.intensity_max, self.intensity_min
if not (0.0 <= self.decay <= 1.0):
logger.warning(f"decay ({self.decay}) should be in [0, 1]. Clamping.")
self.decay = max(0.0, min(1.0, self.decay))
# other context program mix (local vs global)
self.local_context_program_ratio = getattr(config, "local_context_program_ratio", 0.6)
# Dynamic island spawning configuration
self.use_dynamic_islands = getattr(config, "use_dynamic_islands", False)
self.max_islands = getattr(config, "max_islands", 8)
self.spawn_productivity_threshold = getattr(config, "spawn_productivity_threshold", 0.02)
self.spawn_cooldown = getattr(config, "spawn_cooldown_iterations", 50)
self.last_spawn_iteration = -self.spawn_cooldown
self.island_config_names: List[str] = ["balanced"] * self.num_islands
if self.use_dynamic_islands and not self.use_unified_archive:
logger.warning(
"use_dynamic_islands=true requires use_unified_archive=true. "
"Dynamic island spawning will be disabled."
)
# Paradigm breakthrough configuration
self.use_paradigm_breakthrough = getattr(config, "use_paradigm_breakthrough", False)
if self.use_paradigm_breakthrough:
self.paradigm_tracker = ParadigmTracker(
window_size=getattr(config, "paradigm_window_size", 30),
improvement_threshold=getattr(config, "paradigm_improvement_threshold", 0.05),
max_paradigm_uses=getattr(config, "paradigm_max_uses", 5),
max_tried_paradigms=getattr(config, "paradigm_max_tried", 10),
num_paradigms_to_generate=getattr(config, "paradigm_num_to_generate", 3),
)
else:
self.paradigm_tracker = None
# Multi-dimensional adapter handles ALL per-island adaptive state
self.adapter = MultiDimensionalAdapter(decay=self.decay)
for i in range(self.num_islands):
state = AdaptiveState(
decay=self.decay,
intensity_min=self.intensity_min,
intensity_max=self.intensity_max,
)
self.adapter.add_dimension(state)
# Per-island storage: UnifiedArchive (default) or legacy list
if self.use_unified_archive:
self.archives: List[UnifiedArchive] = []
self._init_archives(config)
self.islands = None # Not used in archive mode
self.children_map = None # Archive handles genealogy
else:
self.archives = None # Not used in legacy mode
self.islands: List[List[Program]] = [[] for _ in range(self.num_islands)]
self.children_map: List[Dict[str, List[str]]] = [{} for _ in range(self.num_islands)]
self._diversity_strategy_type = getattr(config, "diversity_strategy", "code")
# Global best tracking
self._global_best_score = float("-inf")
# Cached global Pareto front (lazy, invalidated on population changes)
self._global_pareto_cache: Optional[List[Program]] = None
self._global_pareto_cache_valid: bool = False
# Last sampling mode (stashed by sample() for the controller to read)
self._last_sampling_mode: Optional[str] = None
logger.info(
f"AdaEvolveDatabase initialized: "
f"num_islands={self.num_islands}, "
f"decay={self.decay}, "
f"intensity=[{self.intensity_min}, {self.intensity_max}], "
f"migration={self.use_migration} (interval={self.migration_interval}), "
f"unified_archive={self.use_unified_archive}, "
f"adaptive_search={self.use_adaptive_search}, "
f"ucb_selection={self.use_ucb_selection}, "
f"dynamic_islands={self.use_dynamic_islands}, "
f"paradigm_breakthrough={self.use_paradigm_breakthrough}, "
f"multiobjective={self.is_multiobjective_enabled()}"
)
def _init_archives(self, config: DatabaseConfig) -> None:
"""Initialize per-island UnifiedArchives."""
higher_is_better = getattr(config, "higher_is_better", {})
pareto_objectives = getattr(config, "pareto_objectives", [])
pareto_objectives_weight = getattr(config, "pareto_objectives_weight", 0.0)
self._diversity_strategy_type = getattr(config, "diversity_strategy", "code")
for i in range(self.num_islands):
archive_config = ArchiveConfig(
max_size=config.population_size,
k_neighbors=getattr(config, "k_neighbors", 5),
elite_ratio=getattr(config, "archive_elite_ratio", 0.2),
pareto_weight=getattr(config, "pareto_weight", 0.4),
fitness_weight=getattr(config, "fitness_weight", 0.3),
novelty_weight=getattr(config, "novelty_weight", 0.3),
higher_is_better=higher_is_better,
pareto_objectives=pareto_objectives,
pareto_objectives_weight=pareto_objectives_weight,
fitness_key=getattr(config, "fitness_key", None),
)
# Create FRESH diversity strategy per island
# This is critical for stateful strategies like MetricDiversity
# which maintain internal state (KNN archive) that would be
# contaminated if shared across islands
diversity_strategy = create_diversity_strategy(
self._diversity_strategy_type,
higher_is_better=higher_is_better,
)
archive = UnifiedArchive(
config=archive_config,
diversity_strategy=diversity_strategy,
)
self.archives.append(archive)
logger.debug(
f"Initialized {self.num_islands} archives: "
f"max_size={config.population_size}, diversity={self._diversity_strategy_type}"
)
# =========================================================================
# Population Storage Access
# =========================================================================
@property
def active_programs(self) -> Dict[str, Program]:
"""Programs currently in all island populations."""
result = {}
if self.use_unified_archive and self.archives:
for archive in self.archives:
for p in archive.get_all():
result[p.id] = p
else:
for island in self.islands:
for p in island:
result[p.id] = p
return result
def get_island_population(self, island_idx: int) -> List[Program]:
"""Get all programs in a specific island."""
if 0 <= island_idx < self.num_islands:
if self.use_unified_archive and self.archives:
return self.archives[island_idx].get_all()
else:
return list(self.islands[island_idx])
return []
def get_island_size(self, island_idx: int) -> int:
"""Get number of programs in a specific island."""
if 0 <= island_idx < self.num_islands:
if self.use_unified_archive and self.archives:
return self.archives[island_idx].size()
else:
return len(self.islands[island_idx])
return 0
# =========================================================================
# Core Interface
# =========================================================================
def _get_mode_labels(self) -> Tuple[str, str]:
"""Return (explore_label, exploit_label) appropriate for the language."""
if self.language.lower() in ("text", "prompt"):
return EXPLORE_LABEL_PROMPT_OPT, EXPLOIT_LABEL_PROMPT_OPT
return EXPLORE_LABEL, EXPLOIT_LABEL
def seed_all_islands(self, program: Program, iteration: Optional[int] = None) -> None:
"""
Seed all islands with copies of the initial program.
Args:
program: The initial/seed program to copy to all islands
iteration: Current iteration (for tracking)
"""
logger.info(f"Seeding all {self.num_islands} islands with initial program")
for island_idx in range(self.num_islands):
if island_idx == 0:
# Add original program to island 0
self.add(program, iteration=iteration, target_island=0)
else:
# Create a copy with new ID for other islands
copy = Program(
id=str(uuid.uuid4()),
solution=program.solution,
language=program.language,
metrics=program.metrics.copy() if program.metrics else {},
iteration_found=iteration or 0,
parent_id=None,
generation=0,
metadata={"seeded_to_island": island_idx},
)
self.add(copy, iteration=iteration, target_island=island_idx)
logger.info(
f"All islands seeded. Island sizes: "
f"{[self.get_island_size(i) for i in range(self.num_islands)]}"
)
def add(
self,
program: Program,
iteration: Optional[int] = None,
parent_id: Optional[str] = None,
target_island: Optional[int] = None,
**kwargs,
) -> str:
"""
Add a program to the population and update adaptive state.
Args:
program: Program to add
iteration: Current iteration (for tracking)
parent_id: Parent's ID (for genealogy)
target_island: Specific island (for migrations). None = current_island.
Returns:
Program ID
"""
island_idx = target_island if target_island is not None else self.current_island
is_migration = target_island is not None and target_island != self.current_island
if island_idx < 0 or island_idx >= self.num_islands:
raise ValueError(f"Invalid island index {island_idx}")
# Update iteration tracking
if iteration is not None:
program.iteration_found = iteration
self.last_iteration = max(self.last_iteration, iteration)
# Add to archive or legacy list
was_added = False
if self.use_unified_archive and self.archives:
was_added = self.archives[island_idx].add(program)
if was_added:
self.programs[program.id] = program
else:
logger.debug(
f"Archive rejected program {program.id[:8]} on island {island_idx} "
f"(fitness={self._get_fitness(program):.4f})"
)
else:
# Legacy mode: list-based storage
self.programs[program.id] = program
self.islands[island_idx].append(program)
was_added = True
# Track sibling relationship (only for mutations, not migrations)
if parent_id is not None and not is_migration:
self.children_map[island_idx].setdefault(parent_id, []).append(program.id)
# Enforce population limit in legacy mode
self._enforce_island_population_limit(island_idx)
if was_added:
# Update adaptive state
fitness = self._get_fitness(program)
if not is_migration:
# Regular evaluation: full update (UCB rewards, visits, G, best_score)
self.adapter.record_evaluation(island_idx, fitness)
else:
# Migration: update best_score and G only (for correct search intensity)
# UCB stats remain unchanged (island didn't earn the improvement)
# This fixes: 1) future delta calculations, 2) exploitation mode trigger
self.adapter.receive_external_improvement(island_idx, fitness)
# Invalidate BEFORE _update_best_program so it can read the stale
# cache as the "previous" front and detect front membership changes.
self._invalidate_global_pareto_cache()
# Update global best and track for paradigm
global_improved = self._update_best_program(program)
# Record improvement for paradigm tracking
if self.paradigm_tracker is not None and not is_migration:
self.paradigm_tracker.record_improvement(global_improved, self._global_best_score)
# Save if configured
if self.config.db_path:
self._save_program(program)
logger.debug(
f"Added program {program.id[:8]} to island {island_idx} "
f"(migration={is_migration})"
)
return program.id
def sample(
self,
num_context_programs: Optional[int] = 4,
force_exploration: bool = False,
**kwargs,
) -> Tuple[Dict[str, Program], Dict[str, List[Program]]]:
"""
Sample parent and other context programs using adaptive search intensity.
The search intensity determines sampling mode:
- High intensity → exploration mode (sample by novelty)
- Low intensity → exploitation mode (sample by fitness)
UnifiedArchive maintains diversity even during exploitation via
elite_score which combines fitness, novelty, and Pareto status.
Returns the standard framework format:
- parent_dict: Dict mapping a label string to one parent Program.
The label is EXPLORE_LABEL, EXPLOIT_LABEL, or "" (balanced).
- context_programs_dict: Dict mapping "" to a list of context programs.
The sampling mode is also stored on self._last_sampling_mode for
the controller to read (for logging, paradigm, sibling context).
Args:
num_context_programs: Number of context programs
force_exploration: Force exploration mode
Returns:
Tuple of (parent_dict, context_programs_dict)
"""
island_idx = self.current_island
if self.use_unified_archive and self.archives:
return self._sample_from_archive(island_idx, num_context_programs, force_exploration)
else:
return self._sample_legacy(island_idx, num_context_programs, force_exploration)
def _sample_from_archive(
self,
island_idx: int,
num_context_programs: Optional[int] = 4,
force_exploration: bool = False,
) -> Tuple[Dict[str, Program], Dict[str, List[Program]]]:
"""Sample using the per-island unified archive."""
archive = self.archives[island_idx]
if archive.size() == 0:
raise ValueError(f"Cannot sample: island {island_idx} is empty")
# Get search intensity: adaptive (G-based) or fixed
if self.use_adaptive_search:
intensity = self.adapter.get_search_intensity(island_idx)
else:
intensity = self.fixed_intensity
if force_exploration:
intensity = self.intensity_max
# Determine sampling mode based on intensity
# Formula: exploration=intensity%, exploitation=(1-intensity)*70%, balanced=(1-intensity)*30%
# Example with intensity=0.4: exploration=40%, exploitation=42%, balanced=18%
rand = random.random()
if rand < intensity:
mode = "exploration"
elif rand < intensity + (1 - intensity) * 0.7:
mode = "exploitation"
else:
mode = "balanced"
# Sample parent based on mode
population = archive.get_all()
if mode == "exploitation":
if archive.config.pareto_objectives and archive._pareto_ranks:
parent = self._sample_pareto_front(archive, population)
else:
parent = self._sample_top(population)
else:
# exploration and balanced use archive's novelty-aware sampling
parent = archive.sample_parent(mode)
# Hybrid context programs: local diversity + global top
num = num_context_programs or 4
local_count = max(1, int(num * self.local_context_program_ratio))
global_count = num - local_count
# Local: most different from parent (but from top performers - see sample_other_context_programs)
local_context_programs = archive.sample_other_context_programs(parent, local_count)
# Global: top performers across all islands (cross-pollination)
global_context_programs = self._sample_global_top(parent.id, global_count)
other_context_programs = local_context_programs + global_context_programs
# Map mode to label for the framework's prompt injection
explore_label, exploit_label = self._get_mode_labels()
if mode == "exploration":
label = explore_label
elif mode == "exploitation":
label = exploit_label
else:
label = ""
# Stash mode for controller to read (logging, paradigm, sibling context)
self._last_sampling_mode = mode
logger.debug(
f"Sampled parent {parent.id[:8]} from island {island_idx} "
f"in {mode} mode (intensity={intensity:.2f})"
)
return {label: parent}, {"": other_context_programs}
def _sample_legacy(
self,
island_idx: int,
num_context_programs: Optional[int] = 4,
force_exploration: bool = False,
) -> Tuple[Dict[str, Program], Dict[str, List[Program]]]:
"""Sample using legacy list-based logic."""
population = self.islands[island_idx]
if not population:
raise ValueError(f"Cannot sample: island {island_idx} is empty")
# Get search intensity: adaptive (G-based) or fixed
if self.use_adaptive_search:
intensity = self.adapter.get_search_intensity(island_idx)
else:
intensity = self.fixed_intensity
if force_exploration:
intensity = self.intensity_max
# Determine sampling mode based on intensity
# Formula: exploration=intensity%, exploitation=(1-intensity)*70%, balanced=(1-intensity)*30%
# Example with intensity=0.4: exploration=40%, exploitation=42%, balanced=18%
rand = random.random()
if rand < intensity:
parent = self._sample_random(population)
mode = "exploration"
elif rand < intensity + (1 - intensity) * 0.7:
parent = self._sample_top(population)
mode = "exploitation"
else:
parent = self._sample_weighted(population)
mode = "balanced"
# Sample context programs from ALL islands (global cross-pollination)
num = num_context_programs or 4
other_context_programs = self._sample_global_top(parent.id, num)
# Map mode to label for the framework's prompt injection
explore_label, exploit_label = self._get_mode_labels()
if mode == "exploration":
label = explore_label
elif mode == "exploitation":
label = exploit_label
else:
label = ""
# Stash mode for controller to read (logging, paradigm, sibling context)
self._last_sampling_mode = mode
logger.debug(
f"Sampled parent {parent.id[:8]} from island {island_idx} "
f"in {mode} mode (intensity={intensity:.2f})"
)
return {label: parent}, {"": other_context_programs}
def _sample_random(self, population: List[Program]) -> Program:
"""Sample uniformly at random (exploration)."""
return random.choice(population)
def _sample_top(self, population: List[Program]) -> Program:
"""Sample from top performers (exploitation)."""
sorted_pop = sorted(population, key=self._get_fitness, reverse=True)
top_k = max(1, len(sorted_pop) // 4)
return random.choice(sorted_pop[:top_k])
def _sample_pareto_front(self, archive, population: List[Program]) -> Program:
"""Sample from Pareto front weighted by crowding distance.
Falls back to _sample_top if front is too small.
"""
archive._ensure_cache_valid()
front_programs = [
archive.get(pid)
for pid, rank in archive._pareto_ranks.items()
if rank == 0 and archive.get(pid) is not None
]
if len(front_programs) < 2:
return self._sample_top(population)
weights = []
for p in front_programs:
cd = archive._crowding_distances.get(p.id, 0.0)
if cd == float("inf"):
cd = 1e6
weights.append(max(cd, 0.001))
return random.choices(front_programs, weights=weights, k=1)[0]
def _sample_weighted(self, population: List[Program]) -> Program:
"""Sample weighted by fitness (balanced)."""
weights = []
for prog in population:
fitness = self._get_fitness(prog)
weights.append(max(fitness, 0.001)) # Avoid zero weights
total = sum(weights)
weights = [w / total for w in weights]
return random.choices(population, weights=weights, k=1)[0]
def _sample_global_top(self, exclude_id: str, n: int) -> List[Program]:
"""Sample top programs from ALL islands for cross-pollination."""
all_programs = self._all_population_programs()
candidates = [p for p in all_programs if p.id != exclude_id]
if len(candidates) <= n:
return candidates
if self.is_multiobjective_enabled():
pareto_front = [p for p in self.get_global_pareto_front() if p.id != exclude_id]
if len(pareto_front) >= n:
return pareto_front[:n]
front_ids = {program.id for program in pareto_front}
remaining = sorted(
[program for program in candidates if program.id not in front_ids],
key=self._get_fitness,
reverse=True,
)
return pareto_front + remaining[: max(0, n - len(pareto_front))]
sorted_candidates = sorted(candidates, key=self._get_fitness, reverse=True)
return sorted_candidates[:n]
def _enforce_island_population_limit(self, island_idx: int) -> None:
"""Remove worst programs if island exceeds population limit (legacy mode only)."""
if self.use_unified_archive:
return # Archives handle their own limits
population = self.islands[island_idx]
if len(population) <= self.population_size:
return
# Sort by fitness (best first)
population.sort(key=self._get_fitness, reverse=True)
# Keep top population_size, remove rest
removed = population[self.population_size :]
self.islands[island_idx] = population[: self.population_size]
# Also remove from global registry (but preserve best program)
for prog in removed:
if prog.id in self.programs and prog.id != self.best_program_id:
del self.programs[prog.id]
logger.debug(
f"Removed {len(removed)} programs from island {island_idx} "
f"to enforce population limit"
)
# =========================================================================
# Island Lifecycle
# =========================================================================
def end_iteration(self, iteration: int) -> None:
"""
End-of-iteration housekeeping.
Handles:
- Dynamic island spawning (if enabled and stagnating)
- Island selection (UCB with decayed magnitude rewards OR round-robin)
- Migration (at interval)
"""
self._iteration_count = iteration
# Check if we should spawn a new island
if self._should_spawn_island():
self._spawn_island()
# Select next island: UCB (adaptive) or round-robin (ablation)
if self.use_ucb_selection:
self.current_island = self.adapter.select_dimension_ucb(iteration)
else:
# Round-robin selection for ablation
# Use (iteration + 1) because this is called at END of current iteration
# and sets the island for the NEXT iteration
self.current_island = (iteration + 1) % self.num_islands
# Periodic migration (can be disabled for ablation)
if self.use_migration and iteration > 0 and iteration % self.migration_interval == 0:
self._migrate()
logger.info(f"Migration completed at iteration {iteration}")
def _migrate(self) -> None:
"""
Ring migration: copy top programs to next island.
Ring topology: island i → island (i+1) % num_islands
"""
if self.use_unified_archive and self.archives:
self._migrate_archives()
else:
self._migrate_legacy()
def _migrate_archives(self) -> None:
"""Migrate top programs between archives."""
for src_island in range(self.num_islands):
dest_island = (src_island + 1) % self.num_islands
# Get top programs from source
top_programs = self.archives[src_island].get_top_programs(self.migration_count)
if not top_programs:
continue
for program in top_programs:
# Skip if already in destination
if self._has_duplicate_solution(dest_island, program.solution):
continue
# Create migrant copy
migrant = Program(
id=str(uuid.uuid4()),
solution=program.solution,
language=program.language,
metrics=program.metrics.copy() if program.metrics else {},
iteration_found=program.iteration_found,
parent_id=program.id,
generation=program.generation,
metadata={"migrated_from": src_island, "migrated_to": dest_island},
)
self.add(migrant, parent_id=None, target_island=dest_island)
if top_programs:
logger.debug(
f"Migrated {len(top_programs)} programs from island {src_island} "
f"to island {dest_island}"
)
def _migrate_legacy(self) -> None:
"""Legacy migration: copy single best program to next island."""
migrants: List[Tuple[int, Program]] = []
for i in range(self.num_islands):
if self.islands[i]:
best = max(self.islands[i], key=self._get_fitness)
migrants.append((i, best))
for src_island, program in migrants:
dest_island = (src_island + 1) % self.num_islands
if self._has_duplicate_solution(dest_island, program.solution):
continue
migrant = Program(
id=str(uuid.uuid4()),
solution=program.solution,
language=program.language,
metrics=program.metrics.copy() if program.metrics else {},
iteration_found=program.iteration_found,
parent_id=program.id,
generation=program.generation,
metadata={"migrated_from": src_island, "migrated_to": dest_island},
)
self.add(migrant, parent_id=None, target_island=dest_island)
def _has_duplicate_solution(self, island_idx: int, solution: str) -> bool:
"""Check if island already has a program with identical solution."""
if self.use_unified_archive and self.archives:
return any(p.solution == solution for p in self.archives[island_idx].get_all())
else:
return any(p.solution == solution for p in self.islands[island_idx])
# =========================================================================
# Statistics
# =========================================================================
def get_stats(self) -> Dict[str, Any]:
"""Get comprehensive statistics for logging/debugging."""
adapter_stats = self.adapter.get_stats()
island_stats = []
for i in range(self.num_islands):
dim_stats = (
adapter_stats["dimensions"][i] if i < len(adapter_stats["dimensions"]) else {}
)
if self.use_unified_archive and self.archives:
archive = self.archives[i]
island_stats.append(
{
"island": i,
"population_size": archive.size(),
"top_count": len(archive.get_top_programs()),
"is_current": i == self.current_island,
**dim_stats,
}
)
else:
island_stats.append(
{
"island": i,
"population_size": len(self.islands[i]),
"top_count": 0,
"is_current": i == self.current_island,
**dim_stats,
}
)
return {
"num_islands": self.num_islands,
"current_island": self.current_island,
"global_best_score": self._global_best_score,
"global_productivity": adapter_stats["global_productivity"],
"iteration": self._iteration_count,
"use_unified_archive": self.use_unified_archive,
"use_adaptive_search": self.use_adaptive_search,
"use_ucb_selection": self.use_ucb_selection,
"islands": island_stats,
}
def get_comprehensive_iteration_stats(
self,
iteration: int,
sampling_mode: Optional[str] = None,
sampling_intensity: Optional[float] = None,
) -> Dict[str, Any]:
"""
Get comprehensive statistics for JSON logging at each iteration.
This method collects ALL AdaEvolve signals for detailed analysis including:
- Island-level adaptive state (G, intensity, UCB stats)
- Global evolution state
- Paradigm breakthrough state
- Dynamic island spawning state
Args:
iteration: Current iteration number
sampling_mode: The sampling mode used this iteration (exploration/exploitation/balanced)
sampling_intensity: The search intensity value used this iteration
Returns:
Comprehensive dictionary with all AdaEvolve signals
"""
import math
# =========================================================================
# Island-level statistics
# =========================================================================
island_stats = []
for i in range(self.num_islands):
state = self.adapter.states[i] if i < len(self.adapter.states) else None
island_data = {
"island_idx": i,
"is_current": i == self.current_island,
"config_name": (
self.island_config_names[i] if i < len(self.island_config_names) else "unknown"
),
}
# Population stats
if self.use_unified_archive and self.archives and i < len(self.archives):
archive = self.archives[i]
island_data["population_size"] = archive.size()
island_data["top_count"] = len(archive.get_top_programs())
if hasattr(archive, "stats"):
archive_stats = archive.stats()
island_data["archive_stats"] = archive_stats
elif self.islands and i < len(self.islands):
island_data["population_size"] = len(self.islands[i])
island_data["top_count"] = 0
# Adaptive state (G, intensity, etc.)
if state:
island_data["accumulated_signal_G"] = state.accumulated_signal
island_data["best_score"] = (
state.best_score if not math.isinf(state.best_score) else None
)
island_data["search_intensity"] = state.get_search_intensity()
island_data["improvement_count"] = state.improvement_count
island_data["total_evaluations"] = state.total_evaluations
island_data["productivity"] = state.get_productivity()
# Hyperparameters
island_data["decay"] = state.decay
island_data["intensity_min"] = state.intensity_min
island_data["intensity_max"] = state.intensity_max
# UCB stats
if i < len(self.adapter.dimension_visits):
island_data["ucb_raw_visits"] = self.adapter.dimension_visits[i]
if i < len(self.adapter.decayed_visits):
island_data["ucb_decayed_visits"] = self.adapter.decayed_visits[i]
if i < len(self.adapter.dimension_rewards):
island_data["ucb_decayed_rewards"] = self.adapter.dimension_rewards[i]
dec_visits = (
self.adapter.decayed_visits[i] if i < len(self.adapter.decayed_visits) else 0.0
)
island_data["ucb_reward_avg"] = (
self.adapter.dimension_rewards[i] / dec_visits if dec_visits > 0 else 0.0
)
island_stats.append(island_data)
# =========================================================================
# Global statistics
# =========================================================================
best_program = self.get_best_program()
pareto_front = self.get_global_pareto_front() if self.is_multiobjective_enabled() else []
global_stats = {
"iteration": iteration,
"num_islands": self.num_islands,
"current_island_idx": self.current_island,
"global_best_score": (
self._global_best_score if not math.isinf(self._global_best_score) else None
),
"global_best_program_id": self.best_program_id,
"optimization_mode": "pareto" if self.is_multiobjective_enabled() else "scalar",
"pareto_objectives": list(self.pareto_objectives),
"higher_is_better": dict(self.higher_is_better),
"fitness_proxy_key": self.fitness_key,
"global_pareto_front_size": len(pareto_front),
"global_pareto_front_ids": [program.id for program in pareto_front],
"global_productivity": self.adapter.get_global_productivity(),
"total_programs": len(self.programs),
# UCB global state
"ucb_global_best_score": (
self.adapter.global_best_score
if not math.isinf(self.adapter.global_best_score)
else None
),
"ucb_exploration_constant": self.adapter.ucb_exploration,
"ucb_min_visits": self.adapter.min_visits,
}
# Best program details (truncated code for logging)
if best_program:
code_preview = (
best_program.solution[:500] + "..."
if len(best_program.solution) > 500
else best_program.solution
)
global_stats["best_program"] = {
"id": best_program.id,
"metrics": best_program.metrics,
"generation": best_program.generation,
"iteration_found": best_program.iteration_found,
"is_pareto_representative": self.is_multiobjective_enabled(),
"code_length": len(best_program.solution),
"code_preview": code_preview,
}
# =========================================================================
# Sampling state (for this iteration)
# =========================================================================
sampling_stats = {
"mode": sampling_mode,
"intensity_used": sampling_intensity,
"use_adaptive_search": self.use_adaptive_search,
"use_ucb_selection": self.use_ucb_selection,
"fixed_intensity": self.fixed_intensity if not self.use_adaptive_search else None,
}
# =========================================================================
# Paradigm breakthrough state
# =========================================================================
paradigm_stats = {
"enabled": self.use_paradigm_breakthrough,
}
if self.use_paradigm_breakthrough and self.paradigm_tracker is not None:
tracker = self.paradigm_tracker
paradigm_stats.update(
{
"is_stagnating": tracker.is_paradigm_stagnating(),
"has_active_paradigm": tracker.has_active_paradigm(),
"improvement_rate": tracker.get_improvement_rate(),
"improvement_threshold": tracker.improvement_threshold,
"window_size": tracker.window_size,
"improvement_history_length": len(tracker.improvement_history),
# Active paradigms
"num_active_paradigms": len(tracker.active_paradigms),
"current_paradigm_index": tracker.current_paradigm_index,
"max_paradigm_uses": tracker.max_paradigm_uses,
# Count non-exhausted paradigms
"num_non_exhausted_paradigms": sum(
1
for i in range(len(tracker.active_paradigms))
if tracker.paradigm_usage_counts.get(i, 0) < tracker.max_paradigm_uses
),
# Paradigm usage counts
"paradigm_usage_counts": dict(tracker.paradigm_usage_counts),
# Current paradigm details
"current_paradigm": None,
# Previously tried paradigms
"num_tried_paradigms": len(tracker.tried_paradigms),
"tried_paradigms_summary": [
{
"idea": p.get("idea", "N/A"),
"outcome": p.get("outcome", "UNCLEAR"),
"score_improvement": p.get("score_improvement", 0.0),
"uses": p.get("uses", 0),
}
for p in tracker.tried_paradigms[-5:] # Last 5 tried
],
# Score tracking
"best_score_at_paradigm_gen": tracker.best_score_at_paradigm_gen,
"best_score_during_paradigm": tracker.best_score_during_paradigm,
}
)
# Current paradigm details (if available)
current = tracker.get_current_paradigm()
if current:
paradigm_stats["current_paradigm"] = {
"idea": current.get("idea", "N/A"),
"description": current.get("description", "N/A"),
"approach_type": current.get("approach_type", "N/A"),
"what_to_optimize": current.get("what_to_optimize", "N/A"),
"cautions": current.get("cautions", "N/A"),
"uses_remaining": (
tracker.max_paradigm_uses
- tracker.paradigm_usage_counts.get(tracker.current_paradigm_index, 0)
),
}
# All active paradigms summary
paradigm_stats["active_paradigms"] = [
{
"index": i,
"idea": p.get("idea", "N/A"),
"approach_type": p.get("approach_type", "N/A"),
"uses": tracker.paradigm_usage_counts.get(i, 0),
"exhausted": tracker.paradigm_usage_counts.get(i, 0)
>= tracker.max_paradigm_uses,
}
for i, p in enumerate(tracker.active_paradigms)
]
# =========================================================================
# Dynamic island spawning state
# =========================================================================
dynamic_island_stats = {
"enabled": self.use_dynamic_islands,
}
if self.use_dynamic_islands:
dynamic_island_stats.update(
{
"max_islands": self.max_islands,
"current_num_islands": self.num_islands,
"islands_remaining": self.max_islands - self.num_islands,
"last_spawn_iteration": self.last_spawn_iteration,
"spawn_cooldown": self.spawn_cooldown,
"iterations_since_spawn": iteration - self.last_spawn_iteration,
"spawn_productivity_threshold": self.spawn_productivity_threshold,
"would_spawn": self._should_spawn_island(),
}
)
# =========================================================================
# Configuration summary
# =========================================================================
config_stats = {
"decay": self.decay,
"intensity_min": self.intensity_min,
"intensity_max": self.intensity_max,
"population_size": self.population_size,
"migration_interval": self.migration_interval,
"migration_count": self.migration_count,
"use_migration": self.use_migration,
"use_unified_archive": self.use_unified_archive,
"local_context_program_ratio": self.local_context_program_ratio,
}
# =========================================================================
# Assemble complete stats
# =========================================================================
return {
"iteration": iteration,
"timestamp": None, # Will be filled by controller
"global": global_stats,
"islands": island_stats,
"sampling": sampling_stats,
"paradigm": paradigm_stats,
"dynamic_islands": dynamic_island_stats,
"config": config_stats,
}
# =========================================================================
# Save and Load (Override base class)
# =========================================================================
def save(self, path: Optional[str] = None, iteration: int = 0) -> None:
"""
Save database with AdaEvolve-specific state.
This properly saves:
1. All programs (via base class)
2. Island membership (which programs in which island)
3. Archive genealogy state (parent-child tracking)
4. Adaptive state (UCB rewards, accumulated signals)
5. Paradigm tracker state
"""
save_path = path or self.config.db_path
if not save_path:
logger.warning("No database path specified, skipping save")
return
# Sync programs dict from archives/islands
# CRITICAL: Preserve best program before rebuilding programs dict
best_id = self.best_program_id
best_program = self.programs.get(best_id) if best_id else None
self.programs = {}
if self.use_unified_archive and self.archives:
for archive in self.archives:
for p in archive.get_all():
self.programs[p.id] = p
else:
for island in self.islands:
for p in island:
self.programs[p.id] = p
# Restore best program if it was evicted (safety net)
if best_program and best_id not in self.programs:
self.programs[best_id] = best_program
# Re-add to first archive to ensure it survives future save cycles
if self.use_unified_archive and self.archives:
self.archives[0].add(best_program)
logger.warning(f"Restored evicted best program {best_id[:8]} during save")
# Save base state (programs, prompts, artifacts)
super().save(save_path, iteration)
# Build AdaEvolve metadata
metadata = {
"num_islands": self.num_islands,
"current_island": self.current_island,
"iteration_count": self._iteration_count,
"global_best_score": self._global_best_score,
"decay": self.decay,
"intensity_min": self.intensity_min,
"intensity_max": self.intensity_max,
"migration_interval": self.migration_interval,
"diversity_strategy_type": self._diversity_strategy_type,
"use_unified_archive": self.use_unified_archive,
# Ablation flags
"use_adaptive_search": self.use_adaptive_search,
"use_ucb_selection": self.use_ucb_selection,
"fixed_intensity": self.fixed_intensity,
# Adapter state (UCB rewards, accumulated signals, etc.)
"adapter": self.adapter.to_dict(),
# Island config names for dynamic spawning
"island_config_names": self.island_config_names,
}
# Island membership and genealogy depend on mode
if self.use_unified_archive and self.archives:
metadata["islands"] = [[p.id for p in archive.get_all()] for archive in self.archives]
metadata["archive_genealogies"] = [
archive.get_genealogy_state() for archive in self.archives
]
else:
metadata["islands"] = [[p.id for p in island] for island in self.islands]
metadata["children_map"] = self.children_map
# Save dynamic island state if enabled
if self.use_dynamic_islands:
metadata["use_dynamic_islands"] = True
metadata["max_islands"] = self.max_islands
metadata["last_spawn_iteration"] = self.last_spawn_iteration
# Save paradigm tracker state if enabled
if self.use_paradigm_breakthrough and self.paradigm_tracker is not None:
metadata["use_paradigm_breakthrough"] = True
metadata["paradigm_tracker"] = self.paradigm_tracker.to_dict()
os.makedirs(save_path, exist_ok=True)
metadata_path = os.path.join(save_path, "adaevolve_metadata.json")
with open(metadata_path, "w") as f:
from skydiscover.search.utils.checkpoint_manager import SafeJSONEncoder
json.dump(metadata, f, indent=2, cls=SafeJSONEncoder)
logger.info(f"Saved AdaEvolve state to {save_path}")
def load(self, path: str) -> None:
"""
Load database with AdaEvolve-specific state.
Restores:
1. All programs (via base class)
2. Island membership (programs to correct archives/islands)
3. Archive genealogy state (or children_map for legacy)
4. Adaptive state (UCB rewards, accumulated signals)
5. Paradigm tracker state
"""
# Load base state (programs dict, best_program_id, last_iteration)
super().load(path)
# Load AdaEvolve metadata
metadata_path = os.path.join(path, "adaevolve_metadata.json")
if not os.path.exists(metadata_path):
logger.warning(
f"No AdaEvolve metadata found at {path}, distributing programs to islands"
)
self._distribute_programs_to_islands()
return
with open(metadata_path, "r") as f:
metadata = json.load(f)
# Restore scalar state
saved_num_islands = metadata.get("num_islands", self.num_islands)
self.current_island = metadata.get("current_island", 0)
self._iteration_count = metadata.get("iteration_count", 0)
self._global_best_score = metadata.get("global_best_score", float("-inf"))
self._diversity_strategy_type = metadata.get("diversity_strategy_type", "code")
# NOTE: Ablation flags are NOT restored from checkpoint.
# The current config's ablation settings take precedence.
# This allows running ablation experiments from existing checkpoints.
# (e.g., load a baseline checkpoint and run no_adaptive_search ablation)
#
# The adaptive STATE (G, UCB rewards, visits) IS restored from checkpoint,
# only the FLAGS are kept from current config.
# Handle dynamic island count - may need to expand
if saved_num_islands > self.num_islands:
logger.info(
f"Checkpoint has {saved_num_islands} islands, " f"expanding from {self.num_islands}"
)
self._expand_to_island_count(saved_num_islands, metadata)
self.num_islands = saved_num_islands
# Load adapter state
if "adapter" in metadata:
self.adapter = MultiDimensionalAdapter.from_dict(metadata["adapter"])
# Restore island config names
self.island_config_names = metadata.get(
"island_config_names", ["balanced"] * self.num_islands
)
# Restore dynamic island state
if metadata.get("use_dynamic_islands", False):
self.use_dynamic_islands = True
self.max_islands = metadata.get("max_islands", self.max_islands)
self.last_spawn_iteration = metadata.get("last_spawn_iteration", 0)
# Restore paradigm tracker state IF current config has it enabled
# We respect the current config's flag, not the checkpoint's flag
# This allows ablation: load checkpoint with paradigm, run without it
if self.use_paradigm_breakthrough and "paradigm_tracker" in metadata:
# Current config wants paradigm - restore state from checkpoint
self.paradigm_tracker = ParadigmTracker.from_dict(metadata["paradigm_tracker"])
# Restore island membership based on mode
island_ids = metadata.get("islands", [])
if self.use_unified_archive:
# Reinitialize archives to ensure clean state before restoring
self.archives = []
self._init_archives(self.config)
genealogies = metadata.get("archive_genealogies", [])
for island_idx, program_ids in enumerate(island_ids):
if island_idx >= len(self.archives):
break
archive = self.archives[island_idx]
# Restore genealogy state first (for parent-child tracking)
if island_idx < len(genealogies):
archive.set_genealogy_state(genealogies[island_idx])
# Add programs to archive
for pid in program_ids:
if pid in self.programs:
archive.add(self.programs[pid])
else:
# Legacy mode: restore to island lists
self.islands = [[] for _ in range(self.num_islands)]
self.children_map = metadata.get("children_map", [{} for _ in range(self.num_islands)])
for island_idx, program_ids in enumerate(island_ids):
if island_idx >= self.num_islands:
break
for pid in program_ids:
if pid in self.programs:
self.islands[island_idx].append(self.programs[pid])
self._invalidate_global_pareto_cache()
logger.info(
f"Loaded AdaEvolve state from {path}: "
f"{self.num_islands} islands, {len(self.programs)} programs, "
f"unified_archive={self.use_unified_archive}"
)
def _distribute_programs_to_islands(self) -> None:
"""
Distribute programs to islands when no island membership info is available.
Used as fallback when loading from a checkpoint without AdaEvolve metadata.
"""
programs_list = list(self.programs.values())
if not programs_list:
return
# Sort by fitness (best first)
programs_list.sort(key=lambda p: self._get_fitness(p), reverse=True)
# Distribute round-robin to islands
for i, program in enumerate(programs_list):
island_idx = i % self.num_islands
if self.use_unified_archive and self.archives:
if island_idx < len(self.archives):
self.archives[island_idx].add(program)
else:
if island_idx < len(self.islands):
self.islands[island_idx].append(program)
self._invalidate_global_pareto_cache()
logger.info(f"Distributed {len(programs_list)} programs across {self.num_islands} islands")
def _expand_to_island_count(self, target_count: int, metadata: Dict[str, Any]) -> None:
"""
Expand archives/islands to accommodate more islands from checkpoint.
Args:
target_count: Target number of islands
metadata: Checkpoint metadata for config restoration
"""
# Legacy mode: just expand island lists
if not self.use_unified_archive:
while len(self.islands) < target_count:
self.islands.append([])
self.children_map.append({})
self.island_config_names.append("balanced")
# Add adaptive state dimension
state = AdaptiveState(
decay=self.decay,
intensity_min=self.intensity_min,
intensity_max=self.intensity_max,
)
self.adapter.add_dimension(state)
return
higher_is_better = getattr(self.config, "higher_is_better", {})
saved_config_names = metadata.get("island_config_names", [])
while len(self.archives) < target_count:
new_idx = len(self.archives)
# Get config name from saved state or default to "balanced"
config_name = (
saved_config_names[new_idx] if new_idx < len(saved_config_names) else "balanced"
)
preset = get_island_config_preset(config_name)
archive_config = ArchiveConfig(
max_size=self.population_size,
k_neighbors=getattr(self.config, "k_neighbors", 5),
elite_ratio=preset["elite_ratio"],
pareto_weight=preset["pareto_weight"],
fitness_weight=preset["fitness_weight"],
novelty_weight=preset["novelty_weight"],
higher_is_better=higher_is_better,
)
# Create fresh diversity strategy
diversity_strategy = create_diversity_strategy(
self._diversity_strategy_type,
higher_is_better=higher_is_better,
)
new_archive = UnifiedArchive(
config=archive_config,
diversity_strategy=diversity_strategy,
)
self.archives.append(new_archive)
self.island_config_names.append(config_name)
# Add adaptive state dimension
state = AdaptiveState(
decay=self.decay,
intensity_min=self.intensity_min,
intensity_max=self.intensity_max,
)
self.adapter.add_dimension(state)
# =========================================================================
# Helpers
# =========================================================================
def is_multiobjective_enabled(self) -> bool:
"""Return True when explicit Pareto objectives are configured."""
return bool(self.pareto_objectives)
def _metric_to_maximization_value(self, metric_name: str, value: Any) -> Optional[float]:
"""Convert a metric to an internal score where larger is always better."""
from skydiscover.utils.metrics import normalize_metric_value
return normalize_metric_value(metric_name, value, self.higher_is_better)
def _get_multiobjective_proxy_score(self, program: Program) -> float:
"""Return a scalar proxy for adaptive state and deterministic tie-breaking."""
metrics = getattr(program, "metrics", None) or {}
return compute_proxy_score(
metrics,
fitness_key=self.fitness_key,
pareto_objectives=self.pareto_objectives if self.is_multiobjective_enabled() else None,
higher_is_better=self.higher_is_better,
)
def get_program_proxy_score(self, program: Optional[Program]) -> float:
"""Public wrapper for the scalar proxy used by AdaEvolve internals."""
if program is None:
return float("-inf")
return self._get_multiobjective_proxy_score(program)
def _all_population_programs(self) -> List[Program]:
"""Return all currently active programs across islands."""
if self.use_unified_archive and self.archives:
programs = []
for archive in self.archives:
programs.extend(archive.get_all())
return programs
if self.islands:
programs = []
for island in self.islands:
programs.extend(island)
return programs
return list(self.programs.values())
def _get_objective_vector(self, program: Program) -> Optional[List[float]]:
"""Return the configured objective vector for a program.
Missing or non-numeric objectives are filled with ``-inf`` so that
programs with incomplete metrics cannot accidentally dominate
fully-evaluated programs (all objectives are in "higher is better"
space after normalisation).
"""
if not self.is_multiobjective_enabled():
return None
metrics = getattr(program, "metrics", None) or {}
vector: List[float] = []
for objective in self.pareto_objectives:
normalized = self._metric_to_maximization_value(objective, metrics.get(objective))
vector.append(normalized if normalized is not None else float("-inf"))
return vector
@staticmethod
def _dominates(vec_a: List[float], vec_b: List[float]) -> bool:
"""True if vec_a Pareto-dominates vec_b (same-length vectors required)."""
if len(vec_a) != len(vec_b):
raise ValueError(
f"Objective vectors must have equal length, got {len(vec_a)} vs {len(vec_b)}"
)
at_least_one_better = False
for a, b in zip(vec_a, vec_b):
if a < b:
return False
if a > b:
at_least_one_better = True
return at_least_one_better
def _get_archive_crowding_distance(self, program: Program) -> float:
"""Return archive crowding distance when available."""
if not (self.use_unified_archive and self.archives):
return 0.0
for archive in self.archives:
if archive.contains(program.id):
archive._ensure_cache_valid()
return archive._crowding_distances.get(program.id, 0.0)
return 0.0
def _get_archive_elite_score(self, program: Program) -> float:
"""Return cached archive elite score when available."""
if not (self.use_unified_archive and self.archives):
return 0.0
for archive in self.archives:
if archive.contains(program.id):
archive._ensure_cache_valid()
return archive._elite_scores.get(program.id, 0.0)
return 0.0
def _get_pareto_representative_sort_key(
self, program: Program
) -> Tuple[float, float, float, int, str]:
"""Sort key for choosing one stable representative from a Pareto front.
Higher values win (used with ``max``). Ties are broken by:
proxy score → crowding distance → elite score → newer iteration → ID.
"""
return (
self._get_multiobjective_proxy_score(program),
self._get_archive_crowding_distance(program),
self._get_archive_elite_score(program),
getattr(program, "iteration_found", 0), # newer wins ties
program.id,
)
def _choose_pareto_representative(self, front: List[Program]) -> Optional[Program]:
"""Choose a deterministic representative program from a Pareto front."""
if not front:
return None
return max(front, key=self._get_pareto_representative_sort_key)
def _invalidate_global_pareto_cache(self) -> None:
"""Mark the cached global Pareto front as stale.
The *stale* cache is intentionally preserved (not cleared) so that
``_update_best_program`` can read the pre-mutation front and detect
whether a newly added program entered the front.
"""
self._global_pareto_cache_valid = False
def _compute_global_pareto_front(self) -> List[Program]:
"""O(n²) computation of the non-dominated front across all islands."""
programs = self._all_population_programs()
if not programs:
return []
objective_vectors = {
program.id: self._get_objective_vector(program) or [] for program in programs
}
front = []
for candidate in programs:
vec_candidate = objective_vectors[candidate.id]
dominated = False
for challenger in programs:
if challenger.id == candidate.id:
continue
if self._dominates(objective_vectors[challenger.id], vec_candidate):
dominated = True
break
if not dominated:
front.append(candidate)
return sorted(front, key=self._get_pareto_representative_sort_key, reverse=True)
def get_global_pareto_front(self) -> List[Program]:
"""Return the non-dominated Pareto front across all islands (cached)."""
if not self.is_multiobjective_enabled():
return []
if not self._global_pareto_cache_valid:
self._global_pareto_cache = self._compute_global_pareto_front()
self._global_pareto_cache_valid = True
return list(self._global_pareto_cache or [])
def _get_fitness(self, program: Program) -> float:
"""Get scalar fitness score used by adaptive state and fallbacks."""
return self._get_multiobjective_proxy_score(program)
def _update_best_program(self, program: Program) -> bool:
"""
Update global best program tracking.
Returns:
True if this program is a new global best, False otherwise
"""
if self.is_multiobjective_enabled():
previous_best_id = self.best_program_id
previous_best_score = self._global_best_score
# Read the STALE cache (snapshot of the front before this program
# was added). The cache was invalidated by add() but the old list
# is intentionally preserved for exactly this comparison.
previous_front_ids: Set[str] = (
{p.id for p in (self._global_pareto_cache or [])}
if not self._global_pareto_cache_valid
else set()
)
# Now recompute (cache is invalid, so this triggers O(n²) rebuild).
front = self.get_global_pareto_front()
representative = self._choose_pareto_representative(front)
if representative is None:
return False
self.best_program_id = representative.id
self._global_best_score = self._get_fitness(representative)
front_ids = {p.id for p in front}
entered_front = program.id in front_ids and program.id not in previous_front_ids
representative_changed = representative.id != previous_best_id
score_improved = self._global_best_score > previous_best_score
return entered_front or representative_changed or score_improved
fitness = self._get_fitness(program)
if fitness > self._global_best_score:
self._global_best_score = fitness
self.best_program_id = program.id
logger.debug(f"New global best: {program.id[:8]} with fitness {fitness:.6f}")
return True
return False
def get_children(self, parent_id: str, limit: int = 5) -> List[Program]:
"""
Get recent children of a parent on the current island.
Used by controller for sibling context - shows what mutations
have been tried on this parent before.
Args:
parent_id: ID of the parent program
limit: Maximum number of children to return
Returns:
List of child programs (most recent last)
"""
if self.use_unified_archive and self.archives:
archive = self.archives[self.current_island]
# Use archive's genealogy tracking if available
if hasattr(archive, "get_children"):
children = archive.get_children(parent_id)
return children[-limit:]
# Fallback: scan all programs (less efficient)
children = [p for p in archive.get_all() if getattr(p, "parent_id", None) == parent_id]
else:
# Legacy mode: use children_map
child_ids = self.children_map[self.current_island].get(parent_id, [])
children = [self.programs[cid] for cid in child_ids if cid in self.programs]
# Sort by iteration_found to get most recent
children.sort(key=lambda p: getattr(p, "iteration_found", 0))
return children[-limit:]
# =========================================================================
# Query Methods
# =========================================================================
def get_best_program(self, metric: Optional[str] = None) -> Optional[Program]:
"""
Get the best program across all islands.
Uses tracked best_program_id as authoritative source, falling back to
archive/island search. This prevents silent data loss when the best program
has been evicted from archives but is still tracked.
"""
if metric is None and self.is_multiobjective_enabled():
front = self.get_global_pareto_front()
representative = self._choose_pareto_representative(front)
if representative is not None:
self.best_program_id = representative.id
self._global_best_score = self._get_fitness(representative)
return representative
# First, check if we have a tracked best program (authoritative)
# This handles the case where best program was evicted from archives
if self.best_program_id and self.best_program_id in self.programs:
tracked_best = self.programs[self.best_program_id]
tracked_fitness = self._get_fitness(tracked_best)
# Verify it's still actually the best by checking archives/islands
population_best = None
population_best_fitness = float("-inf")
if self.use_unified_archive and self.archives:
for archive in self.archives:
if hasattr(archive, "get_best"):
candidate = archive.get_best()
else:
all_progs = archive.get_all()
candidate = max(all_progs, key=self._get_fitness) if all_progs else None
if candidate:
fitness = self._get_fitness(candidate)
if fitness > population_best_fitness:
population_best_fitness = fitness
population_best = candidate
else:
for island in self.islands:
if island:
candidate = max(island, key=self._get_fitness)
fitness = self._get_fitness(candidate)
if fitness > population_best_fitness:
population_best_fitness = fitness
population_best = candidate
# Return the better of tracked vs population best
if tracked_fitness >= population_best_fitness:
return tracked_best
else:
# Population has a better program - update tracking
self.best_program_id = population_best.id
self._global_best_score = population_best_fitness
return population_best
# Fallback: search archives/islands (for cases where tracking is not set)
best = None
best_fitness = float("-inf")
if self.use_unified_archive and self.archives:
for archive in self.archives:
if hasattr(archive, "get_best"):
candidate = archive.get_best()
else:
all_progs = archive.get_all()
candidate = max(all_progs, key=self._get_fitness) if all_progs else None
if candidate:
fitness = self._get_fitness(candidate)
if fitness > best_fitness:
best_fitness = fitness
best = candidate
else:
for island in self.islands:
if island:
candidate = max(island, key=self._get_fitness)
fitness = self._get_fitness(candidate)
if fitness > best_fitness:
best_fitness = fitness
best = candidate
return best
def get_top_programs(self, n: int = 10, metric: Optional[str] = None) -> List[Program]:
"""Get top n programs across all islands.
When *metric* is provided, programs are sorted by that specific metric
(respecting ``higher_is_better`` if configured). Otherwise, multiobjective
mode returns the non-dominated front padded with proxy-score-ranked
programs, and scalar mode sorts by the default proxy fitness.
"""
all_programs = self._all_population_programs()
if metric:
# Sort by the requested metric, applying direction normalisation.
def _metric_key(p: Program) -> float:
val = (getattr(p, "metrics", None) or {}).get(metric)
normalized = self._metric_to_maximization_value(metric, val)
return normalized if normalized is not None else float("-inf")
sorted_programs = sorted(all_programs, key=_metric_key, reverse=True)
return sorted_programs[:n]
if not self.is_multiobjective_enabled():
sorted_programs = sorted(all_programs, key=self._get_fitness, reverse=True)
return sorted_programs[:n]
pareto_front = self.get_global_pareto_front()
if len(pareto_front) >= n:
return pareto_front[:n]
front_ids = {program.id for program in pareto_front}
remaining = sorted(
[program for program in all_programs if program.id not in front_ids],
key=self._get_fitness,
reverse=True,
)
return pareto_front + remaining[: max(0, n - len(pareto_front))]
def get_top_programs_for_island(self, island_idx: Optional[int] = None) -> List[Program]:
"""Get top programs for an island (current island if not specified)."""
idx = island_idx if island_idx is not None else self.current_island
if 0 <= idx < self.num_islands:
if self.use_unified_archive and self.archives:
return self.archives[idx].get_top_programs()
else:
# Legacy mode: return top 25% programs
population = self.islands[idx]
if not population:
return []
sorted_pop = sorted(population, key=self._get_fitness, reverse=True)
return sorted_pop[: max(1, len(sorted_pop) // 4)]
return []
def get_pareto_front(self, island_idx: Optional[int] = None) -> List[Program]:
"""Get the Pareto front for a specific island or globally across all islands."""
if not self.is_multiobjective_enabled():
return self.get_top_programs_for_island(island_idx)
if island_idx is None:
return self.get_global_pareto_front()
if 0 <= island_idx < self.num_islands:
if self.use_unified_archive and self.archives:
return self.archives[island_idx].get_pareto_front()
population = self.get_island_population(island_idx)
if not population:
return []
front = []
objective_vectors = {
program.id: self._get_objective_vector(program) or [] for program in population
}
for candidate in population:
dominated = False
for challenger in population:
if challenger.id == candidate.id:
continue
if self._dominates(
objective_vectors[challenger.id], objective_vectors[candidate.id]
):
dominated = True
break
if not dominated:
front.append(candidate)
return sorted(front, key=self._get_pareto_representative_sort_key, reverse=True)
return []
def get_archive_stats(self, island_idx: Optional[int] = None) -> Dict[str, Any]:
"""Get archive statistics for an island."""
idx = island_idx if island_idx is not None else self.current_island
if 0 <= idx < self.num_islands:
if self.use_unified_archive and self.archives and hasattr(self.archives[idx], "stats"):
return self.archives[idx].stats()
top_count = len(self.get_top_programs_for_island(idx))
return {
"size": self.get_island_size(idx),
"max_size": self.population_size,
"top_count": top_count,
"pareto_count": top_count, # Backwards compatibility
}
# =========================================================================
# Program Merging
# =========================================================================
def find_merge_candidates(
self, island_idx: Optional[int] = None
) -> Optional[Tuple[Program, Program, Program]]:
"""Find merge candidates on an island."""
idx = island_idx if island_idx is not None else self.current_island
if 0 <= idx < self.num_islands:
if (
self.use_unified_archive
and self.archives
and hasattr(self.archives[idx], "find_merge_candidates")
):
return self.archives[idx].find_merge_candidates()
# Legacy mode doesn't support merging
return None
def add_merged_program(
self,
program: Program,
parent_ids: List[str],
iteration: Optional[int] = None,
island_idx: Optional[int] = None,
) -> str:
"""Add a merged program to an island."""
idx = island_idx if island_idx is not None else self.current_island
if idx < 0 or idx >= self.num_islands:
raise ValueError(f"Invalid island index {idx}")
if iteration is not None:
program.iteration_found = iteration
self.last_iteration = max(self.last_iteration, iteration)
was_added = False
if self.use_unified_archive and self.archives:
if hasattr(self.archives[idx], "add_merged_program"):
was_added = self.archives[idx].add_merged_program(program, parent_ids)
else:
was_added = self.archives[idx].add(program)
else:
# Legacy mode: just add to island list
self.islands[idx].append(program)
was_added = True
self._enforce_island_population_limit(idx)
if was_added:
self.programs[program.id] = program
fitness = self._get_fitness(program)
self.adapter.record_evaluation(idx, fitness)
self._invalidate_global_pareto_cache()
self._update_best_program(program)
if self.config.db_path:
self._save_program(program)
logger.debug(f"Added merged program {program.id[:8]} to island {idx}")
return program.id
# =========================================================================
# Dynamic Island Spawning
# =========================================================================
def _should_spawn_island(self) -> bool:
"""
Check if we should spawn a new island.
Triggers spawning when:
1. Dynamic islands is enabled
2. Using unified archives (legacy mode doesn't support spawning)
3. Haven't reached max_islands limit
4. Cooldown period has passed since last spawn
5. Global productivity is below threshold (all islands struggling)
"""
if not self.use_dynamic_islands:
return False
# Dynamic spawning only works with unified archives
if not self.use_unified_archive:
return False
if not self.programs:
return False
if self.num_islands >= self.max_islands:
return False
iterations_since_spawn = self._iteration_count - self.last_spawn_iteration
if iterations_since_spawn < self.spawn_cooldown:
return False
# Check global productivity from adapter
global_productivity = self.adapter.get_global_productivity()
if global_productivity >= self.spawn_productivity_threshold:
return False
logger.info(
f"Spawn conditions met: global_productivity={global_productivity:.3f} "
f"< threshold={self.spawn_productivity_threshold}, "
f"islands={self.num_islands}/{self.max_islands}"
)
return True
def _spawn_island(self) -> int:
"""
Spawn a new island and initialize it with top programs.
Returns:
Index of the newly created island
"""
new_island_idx = self.num_islands
# Select config for new island
config_name, preset = self._select_spawn_config()
# Create new archive with the selected preset
higher_is_better = getattr(self.config, "higher_is_better", {})
archive_config = ArchiveConfig(
max_size=self.population_size,
k_neighbors=getattr(self.config, "k_neighbors", 5),
elite_ratio=preset["elite_ratio"],
pareto_weight=preset["pareto_weight"],
fitness_weight=preset["fitness_weight"],
novelty_weight=preset["novelty_weight"],
higher_is_better=higher_is_better,
pareto_objectives=getattr(self.config, "pareto_objectives", []),
pareto_objectives_weight=getattr(self.config, "pareto_objectives_weight", 0.0),
fitness_key=getattr(self.config, "fitness_key", None),
)
# Create FRESH diversity strategy for new island
# This is critical for stateful strategies like MetricDiversity
# which maintain internal state that would be contaminated if shared
diversity_strategy = create_diversity_strategy(
self._diversity_strategy_type,
higher_is_better=higher_is_better,
)
new_archive = UnifiedArchive(
config=archive_config,
diversity_strategy=diversity_strategy,
)
self.archives.append(new_archive)
self.island_config_names.append(config_name)
# Add new dimension to adapter
state = AdaptiveState(
decay=self.decay,
intensity_min=self.intensity_min,
intensity_max=self.intensity_max,
)
self.adapter.add_dimension(state)
# Seed new island with top programs
self._seed_new_island(new_island_idx)
# Update count and record spawn
self.num_islands += 1
self.last_spawn_iteration = self._iteration_count
logger.info(
f"Spawned new island {new_island_idx} with config '{config_name}' "
f"(total islands: {self.num_islands}/{self.max_islands})"
)
return new_island_idx
def _select_spawn_config(self) -> Tuple[str, Dict[str, Any]]:
"""
Select a configuration preset for a new island.
Prefers presets that are not yet used or underused.
"""
usage_counts = {preset["name"]: 0 for preset in ISLAND_CONFIG_PRESETS}
for name in self.island_config_names:
if name in usage_counts:
usage_counts[name] += 1
min_usage = min(usage_counts.values())
underused = [
preset for preset in ISLAND_CONFIG_PRESETS if usage_counts[preset["name"]] == min_usage
]
selected = random.choice(underused)
return selected["name"], selected
def _seed_new_island(self, island_idx: int) -> None:
"""Seed a new island with top programs from existing islands."""
# Gather top programs from all existing islands
all_programs = []
for i in range(island_idx): # Don't include the new island
all_programs.extend(self.archives[i].get_all())
if not all_programs:
return
# Get top programs to seed
sorted_programs = sorted(all_programs, key=self._get_fitness, reverse=True)
seed_count = min(5, len(sorted_programs))
for program in sorted_programs[:seed_count]:
# Create copy for new island
copy = Program(
id=str(uuid.uuid4()),
solution=program.solution,
language=program.language,
metrics=program.metrics.copy() if program.metrics else {},
iteration_found=self._iteration_count,
parent_id=program.id,
generation=program.generation,
metadata={"seeded_to_spawned_island": island_idx},
)
self.archives[island_idx].add(copy)
self.programs[copy.id] = copy
self._invalidate_global_pareto_cache()
# =========================================================================
# Paradigm Breakthrough
# =========================================================================
def is_paradigm_stagnating(self) -> bool:
"""Check if global improvement rate is below threshold for paradigm generation."""
if self.paradigm_tracker is None:
return False
return self.paradigm_tracker.is_paradigm_stagnating()
def has_active_paradigm(self) -> bool:
"""Check if there's an active paradigm available."""
if self.paradigm_tracker is None:
return False
return self.paradigm_tracker.has_active_paradigm()
def get_current_paradigm(self) -> Optional[Dict[str, Any]]:
"""Get the current active paradigm if available."""
if self.paradigm_tracker is None:
return None
return self.paradigm_tracker.get_current_paradigm()
def use_paradigm(self) -> None:
"""Record one use of the current paradigm."""
if self.paradigm_tracker is not None:
self.paradigm_tracker.use_paradigm()
def set_paradigms(self, paradigms: List[Dict[str, Any]]) -> None:
"""Set new paradigms from generator."""
if self.paradigm_tracker is not None:
self.paradigm_tracker.set_paradigms(paradigms, self._global_best_score)
def get_previously_tried_ideas(self) -> List[str]:
"""Get formatted list of previously tried paradigm ideas."""
if self.paradigm_tracker is None:
return []
return self.paradigm_tracker.get_previously_tried_ideas()
def get_paradigm_num_to_generate(self) -> int:
"""Get the configured number of paradigms to generate."""
if self.paradigm_tracker is None:
return 3
return self.paradigm_tracker.num_paradigms_to_generate
|