File size: 102,353 Bytes
5e4510c |
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 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 |
"""
Program database for OpenEvolve
"""
import base64
import json
import logging
import os
import random
import shutil
import time
import uuid
from dataclasses import asdict, dataclass, field, fields
# FileLock removed - no longer needed with threaded parallel processing
from typing import Any, Dict, List, Optional, Set, Tuple, Union
import numpy as np
from openevolve.config import DatabaseConfig
from openevolve.utils.code_utils import calculate_edit_distance
from openevolve.utils.metrics_utils import safe_numeric_average, get_fitness_score
logger = logging.getLogger(__name__)
def _safe_sum_metrics(metrics: Dict[str, Any]) -> float:
"""Safely sum only numeric metric values, ignoring strings and other types"""
numeric_values = [
v for v in metrics.values() if isinstance(v, (int, float)) and not isinstance(v, bool)
]
return sum(numeric_values) if numeric_values else 0.0
def _safe_avg_metrics(metrics: Dict[str, Any]) -> float:
"""Safely calculate average of only numeric metric values"""
numeric_values = [
v for v in metrics.values() if isinstance(v, (int, float)) and not isinstance(v, bool)
]
return sum(numeric_values) / max(1, len(numeric_values)) if numeric_values else 0.0
@dataclass
class Program:
"""Represents a program in the database"""
# Program identification
id: str
code: str
language: str = "python"
# Evolution information
parent_id: Optional[str] = None
generation: int = 0
timestamp: float = field(default_factory=time.time)
iteration_found: int = 0 # Track which iteration this program was found
# Performance metrics
metrics: Dict[str, float] = field(default_factory=dict)
# Derived features
complexity: float = 0.0
diversity: float = 0.0
# Metadata
metadata: Dict[str, Any] = field(default_factory=dict)
# Prompts
prompts: Optional[Dict[str, Any]] = None
# Artifact storage
artifacts_json: Optional[str] = None # JSON-serialized small artifacts
artifact_dir: Optional[str] = None # Path to large artifact files
# Embedding vector for novelty rejection sampling
embedding: Optional[List[float]] = None
def to_dict(self) -> Dict[str, Any]:
"""Convert to dictionary representation"""
return asdict(self)
@classmethod
def from_dict(cls, data: Dict[str, Any]) -> "Program":
"""Create from dictionary representation"""
# Get the valid field names for the Program dataclass
valid_fields = {f.name for f in fields(cls)}
# Filter the data to only include valid fields
filtered_data = {k: v for k, v in data.items() if k in valid_fields}
# Log if we're filtering out any fields
if len(filtered_data) != len(data):
filtered_out = set(data.keys()) - set(filtered_data.keys())
logger.debug(f"Filtered out unsupported fields when loading Program: {filtered_out}")
return cls(**filtered_data)
class ProgramDatabase:
"""
Database for storing and sampling programs during evolution
The database implements a combination of MAP-Elites algorithm and
island-based population model to maintain diversity during evolution.
It also tracks the absolute best program separately to ensure it's never lost.
"""
def __init__(self, config: DatabaseConfig):
self.config = config
# In-memory program storage
self.programs: Dict[str, Program] = {}
# Per-island feature grids for MAP-Elites
self.island_feature_maps: List[Dict[str, str]] = [{} for _ in range(config.num_islands)]
# Handle both int and dict types for feature_bins
if isinstance(config.feature_bins, int):
self.feature_bins = max(
config.feature_bins,
int(pow(config.archive_size, 1 / len(config.feature_dimensions)) + 0.99),
)
else:
# If dict, keep as is (we'll use feature_bins_per_dim instead)
self.feature_bins = 10 # Default fallback for backward compatibility
# Island populations
self.islands: List[Set[str]] = [set() for _ in range(config.num_islands)]
# Island management attributes
self.current_island: int = 0
self.island_generations: List[int] = [0] * config.num_islands
self.last_migration_generation: int = 0
self.migration_interval: int = getattr(config, "migration_interval", 10) # Default to 10
self.migration_rate: float = getattr(config, "migration_rate", 0.1) # Default to 0.1
# Archive of elite programs
self.archive: Set[str] = set()
# Track the absolute best program separately
self.best_program_id: Optional[str] = None
# Track best program per island for proper island-based evolution
self.island_best_programs: List[Optional[str]] = [None] * config.num_islands
# Track the last iteration number (for resuming)
self.last_iteration: int = 0
# Load database from disk if path is provided
if config.db_path and os.path.exists(config.db_path):
self.load(config.db_path)
# Prompt log
self.prompts_by_program: Dict[str, Dict[str, Dict[str, str]]] = None
# Set random seed for reproducible sampling if specified
if config.random_seed is not None:
import random
random.seed(config.random_seed)
logger.debug(f"Database: Set random seed to {config.random_seed}")
# Diversity caching infrastructure
self.diversity_cache: Dict[int, Dict[str, Union[float, float]]] = (
{}
) # hash -> {"value": float, "timestamp": float}
self.diversity_cache_size: int = 1000 # LRU cache size
self.diversity_reference_set: List[str] = (
[]
) # Reference program codes for consistent diversity
self.diversity_reference_size: int = getattr(config, "diversity_reference_size", 20)
# Feature scaling infrastructure
self.feature_stats: Dict[str, Dict[str, Union[float, float, List[float]]]] = {}
self.feature_scaling_method: str = "minmax" # Options: minmax, zscore, percentile
# Per-dimension bins support
if hasattr(config, "feature_bins") and isinstance(config.feature_bins, dict):
self.feature_bins_per_dim = config.feature_bins
else:
# Backward compatibility - use same bins for all dimensions
self.feature_bins_per_dim = {
dim: self.feature_bins for dim in config.feature_dimensions
}
logger.info(f"Initialized program database with {len(self.programs)} programs")
# Novelty judge setup
from openevolve.embedding import EmbeddingClient
self.novelty_llm = config.novelty_llm
self.embedding_client = (
EmbeddingClient(config.embedding_model) if config.embedding_model else None
)
self.similarity_threshold = config.similarity_threshold
def add(
self, program: Program, iteration: int = None, target_island: Optional[int] = None
) -> str:
"""
Add a program to the database
Args:
program: Program to add
iteration: Current iteration (defaults to last_iteration)
target_island: Specific island to add to (auto-detects parent's island if None)
Returns:
Program ID
"""
# Store the program
# If iteration is provided, update the program's iteration_found
if iteration is not None:
program.iteration_found = iteration
# Update last_iteration if needed
self.last_iteration = max(self.last_iteration, iteration)
self.programs[program.id] = program
# Calculate feature coordinates for MAP-Elites
feature_coords = self._calculate_feature_coords(program)
# Determine target island
# If target_island is not specified and program has a parent, inherit parent's island
if target_island is None and program.parent_id:
parent = self.programs.get(program.parent_id)
if parent and "island" in parent.metadata:
# Child inherits parent's island to maintain island isolation
island_idx = parent.metadata["island"]
logger.debug(
f"Program {program.id} inheriting island {island_idx} from parent {program.parent_id}"
)
else:
# Parent not found or has no island, use current_island
island_idx = self.current_island
if parent:
logger.warning(
f"Parent {program.parent_id} has no island metadata, using current_island {island_idx}"
)
else:
logger.warning(
f"Parent {program.parent_id} not found, using current_island {island_idx}"
)
elif target_island is not None:
# Explicit target island specified (e.g., for migrants)
island_idx = target_island
else:
# No parent and no target specified, use current island
island_idx = self.current_island
island_idx = island_idx % len(self.islands) # Ensure valid island
# Novelty check before adding
if not self._is_novel(program.id, island_idx):
logger.debug(
f"Program {program.id} failed in novelty check and won't be added in the island {island_idx}"
)
return program.id # Do not add non-novel program
# Add to island-specific feature map (replacing existing if better)
feature_key = self._feature_coords_to_key(feature_coords)
island_feature_map = self.island_feature_maps[island_idx]
should_replace = feature_key not in island_feature_map
if not should_replace:
# Check if the existing program still exists before comparing
existing_program_id = island_feature_map[feature_key]
if existing_program_id not in self.programs:
# Stale reference, replace it
should_replace = True
logger.debug(
f"Replacing stale program reference {existing_program_id} in island {island_idx} feature map"
)
else:
# Program exists, compare fitness
should_replace = self._is_better(program, self.programs[existing_program_id])
if should_replace:
# Log significant MAP-Elites events
coords_dict = {
self.config.feature_dimensions[i]: feature_coords[i]
for i in range(len(feature_coords))
}
if feature_key not in island_feature_map:
# New cell occupation in this island
logger.info(
"New MAP-Elites cell occupied in island %d: %s", island_idx, coords_dict
)
# Check coverage milestone for this island
total_possible_cells = self.feature_bins ** len(self.config.feature_dimensions)
island_coverage = (len(island_feature_map) + 1) / total_possible_cells
if island_coverage in [0.1, 0.25, 0.5, 0.75, 0.9]:
logger.info(
"Island %d MAP-Elites coverage reached %.1f%% (%d/%d cells)",
island_idx,
island_coverage * 100,
len(island_feature_map) + 1,
total_possible_cells,
)
else:
# Cell replacement - existing program being replaced in this island
existing_program_id = island_feature_map[feature_key]
if existing_program_id in self.programs:
existing_program = self.programs[existing_program_id]
new_fitness = get_fitness_score(program.metrics, self.config.feature_dimensions)
existing_fitness = get_fitness_score(
existing_program.metrics, self.config.feature_dimensions
)
logger.info(
"Island %d MAP-Elites cell improved: %s (fitness: %.3f -> %.3f)",
island_idx,
coords_dict,
existing_fitness,
new_fitness,
)
# use MAP-Elites to manage archive
if existing_program_id in self.archive:
self.archive.discard(existing_program_id)
self.archive.add(program.id)
# Remove replaced program from island set to keep it consistent with feature map
# This prevents accumulation of stale/replaced programs in the island
self.islands[island_idx].discard(existing_program_id)
island_feature_map[feature_key] = program.id
# Add to island
self.islands[island_idx].add(program.id)
# Track which island this program belongs to
program.metadata["island"] = island_idx
# Update archive
self._update_archive(program)
# Enforce population size limit BEFORE updating best program tracking
# This ensures newly added programs aren't immediately removed
self._enforce_population_limit(exclude_program_id=program.id)
# Update the absolute best program tracking (after population enforcement)
self._update_best_program(program)
# Update island-specific best program tracking
self._update_island_best_program(program, island_idx)
# Save to disk if configured
if self.config.db_path:
self._save_program(program)
logger.debug(f"Added program {program.id} to island {island_idx}")
return program.id
def get(self, program_id: str) -> Optional[Program]:
"""
Get a program by ID
Args:
program_id: Program ID
Returns:
Program or None if not found
"""
return self.programs.get(program_id)
def sample(self, num_inspirations: Optional[int] = None) -> Tuple[Program, List[Program]]:
"""
Sample a program and inspirations for the next evolution step
Args:
num_inspirations: Number of inspiration programs to sample (defaults to 5 for backward compatibility)
Returns:
Tuple of (parent_program, inspiration_programs)
"""
# Select parent program
parent = self._sample_parent()
# Select inspirations
if num_inspirations is None:
num_inspirations = 5 # Default for backward compatibility
inspirations = self._sample_inspirations(parent, n=num_inspirations)
logger.debug(f"Sampled parent {parent.id} and {len(inspirations)} inspirations")
return parent, inspirations
def sample_from_island(
self, island_id: int, num_inspirations: Optional[int] = None
) -> Tuple[Program, List[Program]]:
"""
Sample a program and inspirations from a specific island without modifying current_island
This method is thread-safe and doesn't modify shared state, avoiding race conditions
when multiple workers sample from different islands concurrently.
Uses the same exploration/exploitation/random strategy as sample() to ensure
consistent behavior between single-process and parallel execution modes.
Args:
island_id: The island to sample from
num_inspirations: Number of inspiration programs to sample (defaults to 5)
Returns:
Tuple of (parent_program, inspiration_programs)
"""
# Ensure valid island ID
island_id = island_id % len(self.islands)
# Get programs from the specific island
island_programs = list(self.islands[island_id])
if not island_programs:
# Island is empty, fall back to sampling from all programs
logger.debug(f"Island {island_id} is empty, sampling from all programs")
return self.sample(num_inspirations)
# Use exploration_ratio and exploitation_ratio to decide sampling strategy
# This matches the logic in _sample_parent() for consistent behavior
rand_val = random.random()
if rand_val < self.config.exploration_ratio:
# EXPLORATION: Sample randomly from island (diverse sampling)
parent = self._sample_from_island_random(island_id)
sampling_mode = "exploration"
elif rand_val < self.config.exploration_ratio + self.config.exploitation_ratio:
# EXPLOITATION: Sample from archive (elite programs)
parent = self._sample_from_archive_for_island(island_id)
sampling_mode = "exploitation"
else:
# WEIGHTED: Use fitness-weighted sampling (remaining probability)
parent = self._sample_from_island_weighted(island_id)
sampling_mode = "weighted"
# Select inspirations from the same island
if num_inspirations is None:
num_inspirations = 5 # Default for backward compatibility
# Get other programs from the island for inspirations
other_programs = [pid for pid in island_programs if pid != parent.id]
if len(other_programs) < num_inspirations:
# Not enough programs in island, use what we have
inspiration_ids = other_programs
else:
# Sample inspirations
inspiration_ids = random.sample(other_programs, num_inspirations)
inspirations = [self.programs[pid] for pid in inspiration_ids if pid in self.programs]
logger.debug(
f"Sampled parent {parent.id} and {len(inspirations)} inspirations from island {island_id} "
f"(mode: {sampling_mode}, rand_val: {rand_val:.3f})"
)
return parent, inspirations
def get_best_program(self, metric: Optional[str] = None) -> Optional[Program]:
"""
Get the best program based on a metric
Args:
metric: Metric to use for ranking (uses combined_score or average if None)
Returns:
Best program or None if database is empty
"""
if not self.programs:
return None
# If no specific metric and we have a tracked best program, return it
if metric is None and self.best_program_id:
if self.best_program_id in self.programs:
logger.debug(f"Using tracked best program: {self.best_program_id}")
return self.programs[self.best_program_id]
else:
logger.warning(
f"Tracked best program {self.best_program_id} no longer exists, will recalculate"
)
self.best_program_id = None
if metric:
# Sort by specific metric
sorted_programs = sorted(
[p for p in self.programs.values() if metric in p.metrics],
key=lambda p: p.metrics[metric],
reverse=True,
)
if sorted_programs:
logger.debug(f"Found best program by metric '{metric}': {sorted_programs[0].id}")
else:
# Sort by fitness (excluding feature dimensions)
sorted_programs = sorted(
self.programs.values(),
key=lambda p: get_fitness_score(p.metrics, self.config.feature_dimensions),
reverse=True,
)
if sorted_programs:
logger.debug(f"Found best program by fitness score: {sorted_programs[0].id}")
# Update the best program tracking if we found a better program
if sorted_programs and (
self.best_program_id is None or sorted_programs[0].id != self.best_program_id
):
old_id = self.best_program_id
self.best_program_id = sorted_programs[0].id
logger.info(f"Updated best program tracking from {old_id} to {self.best_program_id}")
# Also log the scores to help understand the update
if (
old_id
and old_id in self.programs
and "combined_score" in self.programs[old_id].metrics
and "combined_score" in self.programs[self.best_program_id].metrics
):
old_score = self.programs[old_id].metrics["combined_score"]
new_score = self.programs[self.best_program_id].metrics["combined_score"]
logger.info(
f"Score change: {old_score:.4f} → {new_score:.4f} ({new_score-old_score:+.4f})"
)
return sorted_programs[0] if sorted_programs else None
def get_top_programs(
self, n: int = 10, metric: Optional[str] = None, island_idx: Optional[int] = None
) -> List[Program]:
"""
Get the top N programs based on a metric
Args:
n: Number of programs to return
metric: Metric to use for ranking (uses average if None)
island_idx: If specified, only return programs from this island
Returns:
List of top programs
"""
# Validate island_idx parameter
if island_idx is not None and (island_idx < 0 or island_idx >= len(self.islands)):
raise IndexError(f"Island index {island_idx} is out of range (0-{len(self.islands)-1})")
if not self.programs:
return []
# Get candidate programs
if island_idx is not None:
# Island-specific query
island_programs = [
self.programs[pid] for pid in self.islands[island_idx] if pid in self.programs
]
candidates = island_programs
else:
# Global query
candidates = list(self.programs.values())
if not candidates:
return []
if metric:
# Sort by specific metric
sorted_programs = sorted(
[p for p in candidates if metric in p.metrics],
key=lambda p: p.metrics[metric],
reverse=True,
)
else:
# Sort by combined_score if available, otherwise by average of all numeric metrics
sorted_programs = sorted(
candidates,
key=lambda p: get_fitness_score(p.metrics, self.config.feature_dimensions),
reverse=True,
)
return sorted_programs[:n]
def save(self, path: Optional[str] = None, iteration: int = 0) -> None:
"""
Save the database to disk
Args:
path: Path to save to (uses config.db_path if None)
iteration: Current iteration number
"""
save_path = path or self.config.db_path
if not save_path:
logger.warning("No database path specified, skipping save")
return
# Perform artifact cleanup before saving
self._cleanup_old_artifacts(save_path)
# create directory if it doesn't exist
os.makedirs(save_path, exist_ok=True)
# Save each program
for program in self.programs.values():
prompts = None
if (
self.config.log_prompts
and self.prompts_by_program
and program.id in self.prompts_by_program
):
prompts = self.prompts_by_program[program.id]
self._save_program(program, save_path, prompts=prompts)
# Save metadata
metadata = {
"island_feature_maps": self.island_feature_maps,
"islands": [list(island) for island in self.islands],
"archive": list(self.archive),
"best_program_id": self.best_program_id,
"island_best_programs": self.island_best_programs,
"last_iteration": iteration or self.last_iteration,
"current_island": self.current_island,
"island_generations": self.island_generations,
"last_migration_generation": self.last_migration_generation,
"feature_stats": self._serialize_feature_stats(),
}
with open(os.path.join(save_path, "metadata.json"), "w") as f:
json.dump(metadata, f)
logger.info(f"Saved database with {len(self.programs)} programs to {save_path}")
def load(self, path: str) -> None:
"""
Load the database from disk
Args:
path: Path to load from
"""
if not os.path.exists(path):
logger.warning(f"Database path {path} does not exist, skipping load")
return
# Load metadata first
metadata_path = os.path.join(path, "metadata.json")
saved_islands = []
if os.path.exists(metadata_path):
with open(metadata_path, "r") as f:
metadata = json.load(f)
self.island_feature_maps = metadata.get(
"island_feature_maps", [{} for _ in range(self.config.num_islands)]
)
saved_islands = metadata.get("islands", [])
self.archive = set(metadata.get("archive", []))
self.best_program_id = metadata.get("best_program_id")
self.island_best_programs = metadata.get(
"island_best_programs", [None] * len(saved_islands)
)
self.last_iteration = metadata.get("last_iteration", 0)
self.current_island = metadata.get("current_island", 0)
self.island_generations = metadata.get("island_generations", [0] * len(saved_islands))
self.last_migration_generation = metadata.get("last_migration_generation", 0)
# Load feature_stats for MAP-Elites grid stability
self.feature_stats = self._deserialize_feature_stats(metadata.get("feature_stats", {}))
logger.info(f"Loaded database metadata with last_iteration={self.last_iteration}")
if self.feature_stats:
logger.info(f"Loaded feature_stats for {len(self.feature_stats)} dimensions")
# Load programs
programs_dir = os.path.join(path, "programs")
if os.path.exists(programs_dir):
for program_file in os.listdir(programs_dir):
if program_file.endswith(".json"):
program_path = os.path.join(programs_dir, program_file)
try:
with open(program_path, "r") as f:
program_data = json.load(f)
program = Program.from_dict(program_data)
self.programs[program.id] = program
except Exception as e:
logger.warning(f"Error loading program {program_file}: {str(e)}")
# Reconstruct island assignments from metadata
self._reconstruct_islands(saved_islands)
# Ensure island_generations list has correct length
if len(self.island_generations) != len(self.islands):
self.island_generations = [0] * len(self.islands)
# Ensure island_best_programs list has correct length
if len(self.island_best_programs) != len(self.islands):
self.island_best_programs = [None] * len(self.islands)
logger.info(f"Loaded database with {len(self.programs)} programs from {path}")
# Log the reconstructed island status
self.log_island_status()
def _reconstruct_islands(self, saved_islands: List[List[str]]) -> None:
"""
Reconstruct island assignments from saved metadata
Args:
saved_islands: List of island program ID lists from metadata
"""
# Initialize empty islands
num_islands = max(len(saved_islands), self.config.num_islands)
self.islands = [set() for _ in range(num_islands)]
missing_programs = []
restored_programs = 0
# Restore island assignments
for island_idx, program_ids in enumerate(saved_islands):
if island_idx >= len(self.islands):
continue
for program_id in program_ids:
if program_id in self.programs:
# Program exists, add to island
self.islands[island_idx].add(program_id)
# Set island metadata on the program
self.programs[program_id].metadata["island"] = island_idx
restored_programs += 1
else:
# Program missing, track it
missing_programs.append((island_idx, program_id))
# Clean up archive - remove missing programs
original_archive_size = len(self.archive)
self.archive = {pid for pid in self.archive if pid in self.programs}
# Clean up island_feature_maps - remove missing programs
feature_keys_to_remove = []
for island_idx, island_map in enumerate(self.island_feature_maps):
island_keys_to_remove = []
for key, program_id in island_map.items():
if program_id not in self.programs:
island_keys_to_remove.append(key)
feature_keys_to_remove.append((island_idx, key))
for key in island_keys_to_remove:
del island_map[key]
# Clean up island best programs - remove stale references
self._cleanup_stale_island_bests()
# Check best program
if self.best_program_id and self.best_program_id not in self.programs:
logger.warning(f"Best program {self.best_program_id} not found, will recalculate")
self.best_program_id = None
# Log reconstruction results
if missing_programs:
logger.warning(
f"Found {len(missing_programs)} missing programs during island reconstruction:"
)
for island_idx, program_id in missing_programs[:5]: # Show first 5
logger.warning(f" Island {island_idx}: {program_id}")
if len(missing_programs) > 5:
logger.warning(f" ... and {len(missing_programs) - 5} more")
if original_archive_size > len(self.archive):
logger.info(
f"Removed {original_archive_size - len(self.archive)} missing programs from archive"
)
if feature_keys_to_remove:
logger.info(
f"Removed {len(feature_keys_to_remove)} missing programs from island feature maps"
)
logger.info(f"Reconstructed islands: restored {restored_programs} programs to islands")
# If we have programs but no island assignments, distribute them
if self.programs and sum(len(island) for island in self.islands) == 0:
logger.info("No island assignments found, distributing programs across islands")
self._distribute_programs_to_islands()
def _distribute_programs_to_islands(self) -> None:
"""
Distribute loaded programs across islands when no island metadata exists
"""
program_ids = list(self.programs.keys())
# Distribute programs round-robin across islands
for i, program_id in enumerate(program_ids):
island_idx = i % len(self.islands)
self.islands[island_idx].add(program_id)
self.programs[program_id].metadata["island"] = island_idx
logger.info(f"Distributed {len(program_ids)} programs across {len(self.islands)} islands")
def _save_program(
self,
program: Program,
base_path: Optional[str] = None,
prompts: Optional[Dict[str, Dict[str, str]]] = None,
) -> None:
"""
Save a program to disk
Args:
program: Program to save
base_path: Base path to save to (uses config.db_path if None)
prompts: Optional prompts to save with the program, in the format {template_key: { 'system': str, 'user': str }}
"""
save_path = base_path or self.config.db_path
if not save_path:
return
# Create programs directory if it doesn't exist
programs_dir = os.path.join(save_path, "programs")
os.makedirs(programs_dir, exist_ok=True)
# Save program
program_dict = program.to_dict()
if prompts:
program_dict["prompts"] = prompts
program_path = os.path.join(programs_dir, f"{program.id}.json")
with open(program_path, "w") as f:
json.dump(program_dict, f)
def _calculate_feature_coords(self, program: Program) -> List[int]:
"""
Calculate feature coordinates for the MAP-Elites grid
Args:
program: Program to calculate features for
Returns:
List of feature coordinates
"""
coords = []
for dim in self.config.feature_dimensions:
# PRIORITY 1: Check if this is a custom metric from the evaluator
# This allows users to override built-in features with their own implementations
if dim in program.metrics:
# Use custom metric from evaluator
score = program.metrics[dim]
# Update stats and scale
self._update_feature_stats(dim, score)
scaled_value = self._scale_feature_value(dim, score)
num_bins = self.feature_bins_per_dim.get(dim, self.feature_bins)
bin_idx = int(scaled_value * num_bins)
bin_idx = max(0, min(num_bins - 1, bin_idx))
coords.append(bin_idx)
# PRIORITY 2: Fall back to built-in features if not in metrics
elif dim == "complexity":
# Use code length as complexity measure
complexity = len(program.code)
bin_idx = self._calculate_complexity_bin(complexity)
coords.append(bin_idx)
elif dim == "diversity":
# Use cached diversity calculation with reference set
if len(self.programs) < 2:
bin_idx = 0
else:
diversity = self._get_cached_diversity(program)
bin_idx = self._calculate_diversity_bin(diversity)
coords.append(bin_idx)
elif dim == "score":
# Use average of numeric metrics
if not program.metrics:
bin_idx = 0
else:
# Use fitness score for "score" dimension (consistent with rest of system)
avg_score = get_fitness_score(program.metrics, self.config.feature_dimensions)
# Update stats and scale
self._update_feature_stats("score", avg_score)
scaled_value = self._scale_feature_value("score", avg_score)
num_bins = self.feature_bins_per_dim.get("score", self.feature_bins)
bin_idx = int(scaled_value * num_bins)
bin_idx = max(0, min(num_bins - 1, bin_idx))
coords.append(bin_idx)
else:
# Feature not found - this is an error
raise ValueError(
f"Feature dimension '{dim}' specified in config but not found in program metrics. "
f"Available metrics: {list(program.metrics.keys())}. "
f"Built-in features: 'complexity', 'diversity', 'score'. "
f"Either remove '{dim}' from feature_dimensions or ensure your evaluator returns it."
)
# Only log coordinates at debug level for troubleshooting
logger.debug(
"MAP-Elites coords: %s",
str({self.config.feature_dimensions[i]: coords[i] for i in range(len(coords))}),
)
return coords
def _calculate_complexity_bin(self, complexity: int) -> int:
"""
Calculate the bin index for a given complexity value using feature scaling.
Args:
complexity: The complexity value (code length)
Returns:
Bin index in range [0, self.feature_bins - 1]
"""
# Update feature statistics
self._update_feature_stats("complexity", float(complexity))
# Scale the value using configured method
scaled_value = self._scale_feature_value("complexity", float(complexity))
# Get number of bins for this dimension
num_bins = self.feature_bins_per_dim.get("complexity", self.feature_bins)
# Convert to bin index
bin_idx = int(scaled_value * num_bins)
# Ensure bin index is within valid range
bin_idx = max(0, min(num_bins - 1, bin_idx))
return bin_idx
def _calculate_diversity_bin(self, diversity: float) -> int:
"""
Calculate the bin index for a given diversity value using feature scaling.
Args:
diversity: The average fast code diversity to other programs
Returns:
Bin index in range [0, self.feature_bins - 1]
"""
# Update feature statistics
self._update_feature_stats("diversity", diversity)
# Scale the value using configured method
scaled_value = self._scale_feature_value("diversity", diversity)
# Get number of bins for this dimension
num_bins = self.feature_bins_per_dim.get("diversity", self.feature_bins)
# Convert to bin index
bin_idx = int(scaled_value * num_bins)
# Ensure bin index is within valid range
bin_idx = max(0, min(num_bins - 1, bin_idx))
return bin_idx
def _feature_coords_to_key(self, coords: List[int]) -> str:
"""
Convert feature coordinates to a string key
Args:
coords: Feature coordinates
Returns:
String key
"""
return "-".join(str(c) for c in coords)
def _cosine_similarity(self, vec1: List[float], vec2: List[float]) -> float:
"""
Adapted from SakanaAI/ShinkaEvolve (Apache-2.0 License)
Original source: https://github.com/SakanaAI/ShinkaEvolve/blob/main/shinka/database/dbase.py#L1452
Compute cosine similarity between two vectors.
"""
if not vec1 or not vec2 or len(vec1) != len(vec2):
return 0.0
arr1 = np.array(vec1, dtype=np.float32)
arr2 = np.array(vec2, dtype=np.float32)
norm_a = np.linalg.norm(arr1)
norm_b = np.linalg.norm(arr2)
if norm_a == 0 or norm_b == 0:
return 0.0
similarity = np.dot(arr1, arr2) / (norm_a * norm_b)
return float(similarity)
def _llm_judge_novelty(self, program: Program, similar_program: Program) -> bool:
"""
Use LLM to judge if a program is novel compared to a similar existing program
"""
import asyncio
from openevolve.novelty_judge import NOVELTY_SYSTEM_MSG, NOVELTY_USER_MSG
user_msg = NOVELTY_USER_MSG.format(
language=program.language,
existing_code=similar_program.code,
proposed_code=program.code,
)
try:
# Check if we're already in an event loop
try:
loop = asyncio.get_running_loop()
# We're in an async context, need to run in a new thread
import concurrent.futures
with concurrent.futures.ThreadPoolExecutor() as executor:
future = executor.submit(
asyncio.run,
self.novelty_llm.generate_with_context(
system_message=NOVELTY_SYSTEM_MSG,
messages=[{"role": "user", "content": user_msg}],
),
)
content: str = future.result()
except RuntimeError:
# No event loop running, safe to use asyncio.run()
content: str = asyncio.run(
self.novelty_llm.generate_with_context(
system_message=NOVELTY_SYSTEM_MSG,
messages=[{"role": "user", "content": user_msg}],
)
)
if content is None or content is None:
logger.warning("Novelty LLM returned empty response")
return True
content = content.strip()
# Parse the response
NOVEL_i = content.upper().find("NOVEL")
NOT_NOVEL_i = content.upper().find("NOT NOVEL")
if NOVEL_i == -1 and NOT_NOVEL_i == -1:
logger.warning(f"Unexpected novelty LLM response: {content}")
return True # Assume novel if we can't parse
if NOVEL_i != -1 and NOT_NOVEL_i != -1:
# Both found, take the one that appears first
is_novel = NOVEL_i < NOT_NOVEL_i
elif NOVEL_i != -1:
is_novel = True
else:
is_novel = False
return is_novel
except Exception as e:
logger.error(f"Error in novelty LLM check: {e}")
return True
def _is_novel(self, program_id: int, island_idx: int) -> bool:
"""
Determine if a program is novel based on diversity to existing programs
Args:
program: Program to check
island_idx: Island index
Returns:
True if novel, False otherwise
"""
if self.embedding_client is None or self.similarity_threshold <= 0.0:
# Novelty checking disabled
return True
program = self.programs[program_id]
embd = self.embedding_client.get_embedding(program.code)
self.programs[program_id].embedding = embd
max_smlty = float("-inf")
max_smlty_pid = None
for pid in self.islands[island_idx]:
other = self.programs[pid]
if other.embedding is None:
logger.log(
"Warning: Program %s has no embedding, skipping similarity check", other.id
)
continue
similarity = self._cosine_similarity(embd, other.embedding)
if similarity >= max(max_smlty, self.similarity_threshold):
max_smlty = similarity
max_smlty_pid = pid
if max_smlty_pid is None:
# No similar programs found, consider it novel
return True
return self._llm_judge_novelty(program, self.programs[max_smlty_pid])
def _is_better(self, program1: Program, program2: Program) -> bool:
"""
Determine if program1 has better FITNESS than program2
Uses fitness calculation that excludes MAP-Elites feature dimensions
to prevent pollution of fitness comparisons.
Args:
program1: First program
program2: Second program
Returns:
True if program1 is better than program2
"""
# If no metrics, use newest
if not program1.metrics and not program2.metrics:
return program1.timestamp > program2.timestamp
# If only one has metrics, it's better
if program1.metrics and not program2.metrics:
return True
if not program1.metrics and program2.metrics:
return False
# Compare fitness (excluding feature dimensions)
fitness1 = get_fitness_score(program1.metrics, self.config.feature_dimensions)
fitness2 = get_fitness_score(program2.metrics, self.config.feature_dimensions)
return fitness1 > fitness2
def _update_archive(self, program: Program) -> None:
"""
Update the archive of elite programs
Args:
program: Program to consider for archive
"""
# If archive not full, add program
if len(self.archive) < self.config.archive_size:
self.archive.add(program.id)
return
# Clean up stale references and get valid archive programs
valid_archive_programs = []
stale_ids = []
for pid in self.archive:
if pid in self.programs:
valid_archive_programs.append(self.programs[pid])
else:
stale_ids.append(pid)
# Remove stale references from archive
for stale_id in stale_ids:
self.archive.discard(stale_id)
logger.debug(f"Removing stale program {stale_id} from archive")
# If archive is now not full after cleanup, just add the new program
if len(self.archive) < self.config.archive_size:
self.archive.add(program.id)
return
# Find worst program among valid programs
if valid_archive_programs:
worst_program = min(
valid_archive_programs,
key=lambda p: get_fitness_score(p.metrics, self.config.feature_dimensions),
)
# Replace if new program is better
if self._is_better(program, worst_program):
self.archive.remove(worst_program.id)
self.archive.add(program.id)
else:
# No valid programs in archive, just add the new one
self.archive.add(program.id)
def _update_best_program(self, program: Program) -> None:
"""
Update the absolute best program tracking
Args:
program: Program to consider as the new best
"""
# If we don't have a best program yet, this becomes the best
if self.best_program_id is None:
self.best_program_id = program.id
logger.debug(f"Set initial best program to {program.id}")
return
# Compare with current best program (if it still exists)
if self.best_program_id not in self.programs:
logger.warning(
f"Best program {self.best_program_id} no longer exists, clearing reference"
)
self.best_program_id = program.id
logger.info(f"Set new best program to {program.id}")
return
current_best = self.programs[self.best_program_id]
# Update if the new program is better
if self._is_better(program, current_best):
old_id = self.best_program_id
self.best_program_id = program.id
# Log the change
if "combined_score" in program.metrics and "combined_score" in current_best.metrics:
old_score = current_best.metrics["combined_score"]
new_score = program.metrics["combined_score"]
score_diff = new_score - old_score
logger.info(
f"New best program {program.id} replaces {old_id} (combined_score: {old_score:.4f} → {new_score:.4f}, +{score_diff:.4f})"
)
else:
logger.info(f"New best program {program.id} replaces {old_id}")
def _update_island_best_program(self, program: Program, island_idx: int) -> None:
"""
Update the best program tracking for a specific island
Args:
program: Program to consider as the new best for the island
island_idx: Island index
"""
# Ensure island_idx is valid
if island_idx >= len(self.island_best_programs):
logger.warning(f"Invalid island index {island_idx}, skipping island best update")
return
# If island doesn't have a best program yet, this becomes the best
current_island_best_id = self.island_best_programs[island_idx]
if current_island_best_id is None:
self.island_best_programs[island_idx] = program.id
logger.debug(f"Set initial best program for island {island_idx} to {program.id}")
return
# Check if current best still exists
if current_island_best_id not in self.programs:
logger.warning(
f"Island {island_idx} best program {current_island_best_id} no longer exists, updating to {program.id}"
)
self.island_best_programs[island_idx] = program.id
return
current_island_best = self.programs[current_island_best_id]
# Update if the new program is better
if self._is_better(program, current_island_best):
old_id = current_island_best_id
self.island_best_programs[island_idx] = program.id
# Log the change
if (
"combined_score" in program.metrics
and "combined_score" in current_island_best.metrics
):
old_score = current_island_best.metrics["combined_score"]
new_score = program.metrics["combined_score"]
score_diff = new_score - old_score
logger.debug(
f"Island {island_idx}: New best program {program.id} replaces {old_id} "
f"(combined_score: {old_score:.4f} → {new_score:.4f}, +{score_diff:.4f})"
)
else:
logger.debug(
f"Island {island_idx}: New best program {program.id} replaces {old_id}"
)
def _sample_parent(self) -> Program:
"""
Sample a parent program from the current island for the next evolution step
Returns:
Parent program from current island
"""
# Use exploration_ratio and exploitation_ratio to decide sampling strategy
rand_val = random.random()
if rand_val < self.config.exploration_ratio:
# EXPLORATION: Sample from current island (diverse sampling)
return self._sample_exploration_parent()
elif rand_val < self.config.exploration_ratio + self.config.exploitation_ratio:
# EXPLOITATION: Sample from archive (elite programs)
return self._sample_exploitation_parent()
else:
# RANDOM: Sample from any program (remaining probability)
return self._sample_random_parent()
def _sample_exploration_parent(self) -> Program:
"""
Sample a parent for exploration (from current island)
"""
current_island_programs = self.islands[self.current_island]
if not current_island_programs:
# If current island is empty, initialize with best program or random program
if self.best_program_id and self.best_program_id in self.programs:
# Create a copy of best program for the empty island (don't reuse same ID)
best_program = self.programs[self.best_program_id]
copy_program = Program(
id=str(uuid.uuid4()),
code=best_program.code,
language=best_program.language,
parent_id=best_program.id,
generation=best_program.generation,
timestamp=time.time(),
iteration_found=self.last_iteration,
metrics=best_program.metrics.copy(),
complexity=best_program.complexity,
diversity=best_program.diversity,
metadata={"island": self.current_island},
artifacts_json=best_program.artifacts_json,
artifact_dir=best_program.artifact_dir,
)
self.programs[copy_program.id] = copy_program
self.islands[self.current_island].add(copy_program.id)
logger.debug(
f"Initialized empty island {self.current_island} with copy of best program"
)
return copy_program
else:
# Use any available program
return next(iter(self.programs.values()))
# Clean up stale references and sample from current island
valid_programs = [pid for pid in current_island_programs if pid in self.programs]
# Remove stale program IDs from island
if len(valid_programs) < len(current_island_programs):
stale_ids = current_island_programs - set(valid_programs)
logger.debug(
f"Removing {len(stale_ids)} stale program IDs from island {self.current_island}"
)
for stale_id in stale_ids:
self.islands[self.current_island].discard(stale_id)
# If no valid programs after cleanup, reinitialize island
if not valid_programs:
logger.warning(
f"Island {self.current_island} has no valid programs after cleanup, reinitializing"
)
if self.best_program_id and self.best_program_id in self.programs:
# Create a copy of best program for the empty island (don't reuse same ID)
best_program = self.programs[self.best_program_id]
copy_program = Program(
id=str(uuid.uuid4()),
code=best_program.code,
language=best_program.language,
parent_id=best_program.id,
generation=best_program.generation,
timestamp=time.time(),
iteration_found=self.last_iteration,
metrics=best_program.metrics.copy(),
complexity=best_program.complexity,
diversity=best_program.diversity,
metadata={"island": self.current_island},
artifacts_json=best_program.artifacts_json,
artifact_dir=best_program.artifact_dir,
)
self.programs[copy_program.id] = copy_program
self.islands[self.current_island].add(copy_program.id)
logger.debug(
f"Reinitialized empty island {self.current_island} with copy of best program"
)
return copy_program
else:
return next(iter(self.programs.values()))
# Sample from valid programs
parent_id = random.choice(valid_programs)
return self.programs[parent_id]
def _sample_exploitation_parent(self) -> Program:
"""
Sample a parent for exploitation (from archive/elite programs)
"""
if not self.archive:
# Fallback to exploration if no archive
return self._sample_exploration_parent()
# Clean up stale references in archive
valid_archive = [pid for pid in self.archive if pid in self.programs]
# Remove stale program IDs from archive
if len(valid_archive) < len(self.archive):
stale_ids = self.archive - set(valid_archive)
logger.debug(f"Removing {len(stale_ids)} stale program IDs from archive")
for stale_id in stale_ids:
self.archive.discard(stale_id)
# If no valid archive programs, fallback to exploration
if not valid_archive:
logger.warning(
"Archive has no valid programs after cleanup, falling back to exploration"
)
return self._sample_exploration_parent()
# Prefer programs from current island in archive
archive_programs_in_island = [
pid
for pid in valid_archive
if self.programs[pid].metadata.get("island") == self.current_island
]
if archive_programs_in_island:
parent_id = random.choice(archive_programs_in_island)
return self.programs[parent_id]
else:
# Fall back to any valid archive program if current island has none
parent_id = random.choice(valid_archive)
return self.programs[parent_id]
def _sample_random_parent(self) -> Program:
"""
Sample a completely random parent from all programs
"""
if not self.programs:
raise ValueError("No programs available for sampling")
# Sample randomly from all programs
program_id = random.choice(list(self.programs.keys()))
return self.programs[program_id]
def _sample_from_island_weighted(self, island_id: int) -> Program:
"""
Sample a parent from a specific island using fitness-weighted selection
Args:
island_id: The island to sample from
Returns:
Parent program selected using fitness-weighted sampling
"""
island_id = island_id % len(self.islands)
island_programs = list(self.islands[island_id])
if not island_programs:
# Island is empty, fall back to any available program
logger.debug(f"Island {island_id} is empty, sampling from all programs")
return self._sample_random_parent()
# Select parent from island programs
if len(island_programs) == 1:
parent_id = island_programs[0]
else:
# Use weighted sampling based on program scores
island_program_objects = [
self.programs[pid] for pid in island_programs if pid in self.programs
]
if not island_program_objects:
# Fallback if programs not found
parent_id = random.choice(island_programs)
else:
# Calculate weights based on fitness scores
weights = []
for prog in island_program_objects:
fitness = get_fitness_score(prog.metrics, self.config.feature_dimensions)
# Add small epsilon to avoid zero weights
weights.append(max(fitness, 0.001))
# Normalize weights
total_weight = sum(weights)
if total_weight > 0:
weights = [w / total_weight for w in weights]
else:
weights = [1.0 / len(island_program_objects)] * len(island_program_objects)
# Sample parent based on weights
parent = random.choices(island_program_objects, weights=weights, k=1)[0]
parent_id = parent.id
parent = self.programs.get(parent_id)
if not parent:
# Should not happen, but handle gracefully
logger.error(f"Parent program {parent_id} not found in database")
return self._sample_random_parent()
return parent
def _sample_from_island_random(self, island_id: int) -> Program:
"""
Sample a completely random parent from a specific island (uniform distribution)
Args:
island_id: The island to sample from
Returns:
Parent program selected uniformly at random
"""
island_id = island_id % len(self.islands)
island_programs = list(self.islands[island_id])
if not island_programs:
# Island is empty, fall back to any available program
logger.debug(f"Island {island_id} is empty, sampling from all programs")
return self._sample_random_parent()
# Clean up stale references
valid_programs = [pid for pid in island_programs if pid in self.programs]
if not valid_programs:
logger.warning(
f"Island {island_id} has no valid programs, falling back to random sampling"
)
return self._sample_random_parent()
# Uniform random selection
parent_id = random.choice(valid_programs)
return self.programs[parent_id]
def _sample_from_archive_for_island(self, island_id: int) -> Program:
"""
Sample a parent from the archive, preferring programs from the specified island
Args:
island_id: The island to prefer programs from
Returns:
Parent program from archive (preferably from the specified island)
"""
if not self.archive:
# Fallback to weighted sampling from island
logger.debug(f"Archive is empty, falling back to weighted island sampling")
return self._sample_from_island_weighted(island_id)
# Clean up stale references in archive
valid_archive = [pid for pid in self.archive if pid in self.programs]
if not valid_archive:
logger.warning(
"Archive has no valid programs, falling back to weighted island sampling"
)
return self._sample_from_island_weighted(island_id)
island_id = island_id % len(self.islands)
# Prefer programs from the specified island in archive
archive_programs_in_island = [
pid for pid in valid_archive if self.programs[pid].metadata.get("island") == island_id
]
if archive_programs_in_island:
parent_id = random.choice(archive_programs_in_island)
return self.programs[parent_id]
else:
# Fall back to any valid archive program if island has none
parent_id = random.choice(valid_archive)
return self.programs[parent_id]
def _sample_inspirations(self, parent: Program, n: int = 5) -> List[Program]:
"""
Sample inspiration programs for the next evolution step.
For proper island-based evolution, inspirations are sampled ONLY from the
current island, maintaining genetic isolation between islands.
Args:
parent: Parent program
n: Number of inspirations to sample
Returns:
List of inspiration programs from the current island
"""
inspirations = []
# Get the parent's island (should be current_island)
parent_island = parent.metadata.get("island", self.current_island)
# Get all programs from the current island
island_program_ids = list(self.islands[parent_island])
island_programs = [self.programs[pid] for pid in island_program_ids if pid in self.programs]
if not island_programs:
logger.warning(f"Island {parent_island} has no programs for inspiration sampling")
return []
# Include the island's best program if available and different from parent
island_best_id = self.island_best_programs[parent_island]
if (
island_best_id is not None
and island_best_id != parent.id
and island_best_id in self.programs
):
island_best = self.programs[island_best_id]
inspirations.append(island_best)
logger.debug(
f"Including island {parent_island} best program {island_best_id} in inspirations"
)
elif island_best_id is not None and island_best_id not in self.programs:
# Clean up stale island best reference
logger.warning(
f"Island {parent_island} best program {island_best_id} no longer exists, clearing reference"
)
self.island_best_programs[parent_island] = None
# Add top programs from the island as inspirations
top_n = max(1, int(n * self.config.elite_selection_ratio))
top_island_programs = self.get_top_programs(n=top_n, island_idx=parent_island)
for program in top_island_programs:
if program.id not in [p.id for p in inspirations] and program.id != parent.id:
inspirations.append(program)
# Add diverse programs from within the island
if len(island_programs) > n and len(inspirations) < n:
remaining_slots = n - len(inspirations)
# Try to sample from different feature cells within the island
feature_coords = self._calculate_feature_coords(parent)
nearby_programs = []
# Create a mapping of feature cells to island programs for efficient lookup
island_feature_map = {}
for prog_id in island_program_ids:
if prog_id in self.programs:
prog = self.programs[prog_id]
prog_coords = self._calculate_feature_coords(prog)
cell_key = self._feature_coords_to_key(prog_coords)
island_feature_map[cell_key] = prog_id
# Try to find programs from nearby feature cells within the island
for _ in range(remaining_slots * 3): # Try more times to find nearby programs
# Perturb coordinates
perturbed_coords = [
max(0, min(self.feature_bins - 1, c + random.randint(-2, 2)))
for c in feature_coords
]
cell_key = self._feature_coords_to_key(perturbed_coords)
if cell_key in island_feature_map:
program_id = island_feature_map[cell_key]
if (
program_id != parent.id
and program_id not in [p.id for p in inspirations]
and program_id not in [p.id for p in nearby_programs]
and program_id in self.programs
):
nearby_programs.append(self.programs[program_id])
if len(nearby_programs) >= remaining_slots:
break
# If we still need more, add random programs from the island
if len(inspirations) + len(nearby_programs) < n:
remaining = n - len(inspirations) - len(nearby_programs)
# Get available programs from the island
excluded_ids = (
{parent.id}
.union(p.id for p in inspirations)
.union(p.id for p in nearby_programs)
)
available_island_ids = [
pid
for pid in island_program_ids
if pid not in excluded_ids and pid in self.programs
]
if available_island_ids:
random_ids = random.sample(
available_island_ids, min(remaining, len(available_island_ids))
)
random_programs = [self.programs[pid] for pid in random_ids]
nearby_programs.extend(random_programs)
inspirations.extend(nearby_programs)
# Log island isolation info
logger.debug(
f"Sampled {len(inspirations)} inspirations from island {parent_island} "
f"(island has {len(island_programs)} programs total)"
)
return inspirations[:n]
def _enforce_population_limit(self, exclude_program_id: Optional[str] = None) -> None:
"""
Enforce the population size limit by removing worst programs if needed
Args:
exclude_program_id: Program ID to never remove (e.g., newly added program)
"""
if len(self.programs) <= self.config.population_size:
return
# Calculate how many programs to remove
num_to_remove = len(self.programs) - self.config.population_size
logger.info(
f"Population size ({len(self.programs)}) exceeds limit ({self.config.population_size}), removing {num_to_remove} programs"
)
# Get programs sorted by fitness (worst first)
all_programs = list(self.programs.values())
# Sort by combined_score if available, otherwise by average metric (worst first)
sorted_programs = sorted(
all_programs,
key=lambda p: get_fitness_score(p.metrics, self.config.feature_dimensions),
)
# Remove worst programs, but never remove the best program or excluded program
programs_to_remove = []
protected_ids = {self.best_program_id, exclude_program_id} - {None}
for program in sorted_programs:
if len(programs_to_remove) >= num_to_remove:
break
# Don't remove the best program or excluded program
if program.id not in protected_ids:
programs_to_remove.append(program)
# If we still need to remove more and only have protected programs,
# remove from the remaining programs anyway (but keep the protected ones)
if len(programs_to_remove) < num_to_remove:
remaining_programs = [
p
for p in sorted_programs
if p not in programs_to_remove and p.id not in protected_ids
]
additional_removals = remaining_programs[: num_to_remove - len(programs_to_remove)]
programs_to_remove.extend(additional_removals)
# Remove the selected programs
for program in programs_to_remove:
program_id = program.id
# Remove from main programs dict
if program_id in self.programs:
del self.programs[program_id]
# Remove from island feature maps
for island_idx, island_map in enumerate(self.island_feature_maps):
keys_to_remove = []
for key, pid in island_map.items():
if pid == program_id:
keys_to_remove.append(key)
for key in keys_to_remove:
del island_map[key]
# Remove from islands
for island in self.islands:
island.discard(program_id)
# Remove from archive
self.archive.discard(program_id)
logger.debug(f"Removed program {program_id} due to population limit")
logger.info(f"Population size after cleanup: {len(self.programs)}")
# Clean up any stale island best program references after removal
self._cleanup_stale_island_bests()
# Island management methods
def set_current_island(self, island_idx: int) -> None:
"""Set which island is currently being evolved"""
self.current_island = island_idx % len(self.islands)
logger.debug(f"Switched to evolving island {self.current_island}")
def next_island(self) -> int:
"""Move to the next island in round-robin fashion"""
self.current_island = (self.current_island + 1) % len(self.islands)
logger.debug(f"Advanced to island {self.current_island}")
return self.current_island
def increment_island_generation(self, island_idx: Optional[int] = None) -> None:
"""Increment generation counter for an island"""
idx = island_idx if island_idx is not None else self.current_island
self.island_generations[idx] += 1
logger.debug(f"Island {idx} generation incremented to {self.island_generations[idx]}")
def should_migrate(self) -> bool:
"""Check if migration should occur based on generation counters"""
max_generation = max(self.island_generations)
return (max_generation - self.last_migration_generation) >= self.migration_interval
def migrate_programs(self) -> None:
"""
Perform migration between islands
This should be called periodically to share good solutions between islands
"""
if len(self.islands) < 2:
return
logger.info("Performing migration between islands")
for i, island in enumerate(self.islands):
if len(island) == 0:
continue
# Select top programs from this island for migration
island_programs = [self.programs[pid] for pid in island if pid in self.programs]
if not island_programs:
continue
# Sort by fitness (using combined_score or average metrics)
island_programs.sort(
key=lambda p: get_fitness_score(p.metrics, self.config.feature_dimensions),
reverse=True,
)
# Select top programs for migration
num_to_migrate = max(1, int(len(island_programs) * self.migration_rate))
migrants = island_programs[:num_to_migrate]
# Migrate to adjacent islands (ring topology)
target_islands = [(i + 1) % len(self.islands), (i - 1) % len(self.islands)]
for migrant in migrants:
# Prevent re-migration of already migrated programs to avoid exponential duplication.
# Analysis of actual evolution runs shows this causes severe issues:
# - Program cb5d07f2 had 183 descendant copies by iteration 850
# - Program 5645fbd2 had 31 descendant copies
# - IDs grow exponentially: program_migrant_2_migrant_3_migrant_4_migrant_0...
#
# This is particularly problematic for OpenEvolve's MAP-Elites + Island hybrid architecture:
# 1. All copies have identical code → same complexity/diversity/performance scores
# 2. They all map to the SAME MAP-Elites cell → only 1 survives, rest discarded
# 3. Wastes computation evaluating hundreds of identical programs
# 4. Reduces actual diversity as islands fill with duplicates
#
# By preventing already-migrated programs from migrating again, we ensure:
# - Each program migrates at most once per lineage
# - True diversity is maintained between islands
# - Computational resources aren't wasted on duplicates
# - Aligns with MAP-Elites' one-program-per-cell principle
if migrant.metadata.get("migrant", False):
continue
for target_island in target_islands:
# Skip migration if target island already has a program with identical code
# Identical code produces identical metrics, so migration would be wasteful
target_island_programs = [
self.programs[pid]
for pid in self.islands[target_island]
if pid in self.programs
]
has_duplicate_code = any(p.code == migrant.code for p in target_island_programs)
if has_duplicate_code:
logger.debug(
f"Skipping migration of program {migrant.id[:8]} to island {target_island} "
f"(duplicate code already exists)"
)
continue
# Create a copy for migration with simple new UUID
import uuid
migrant_copy = Program(
id=str(uuid.uuid4()),
code=migrant.code,
language=migrant.language,
parent_id=migrant.id,
generation=migrant.generation,
metrics=migrant.metrics.copy(),
metadata={**migrant.metadata, "island": target_island, "migrant": True},
)
# Use add() method to properly handle MAP-Elites deduplication,
# feature map updates, and island tracking
self.add(migrant_copy, target_island=target_island)
# Log migration
logger.info(
"Program %s migrated to island %d",
migrant_copy.id[:8],
target_island,
)
# Update last migration generation
self.last_migration_generation = max(self.island_generations)
logger.info(f"Migration completed at generation {self.last_migration_generation}")
# Validate migration results
self._validate_migration_results()
def _validate_migration_results(self) -> None:
"""
Validate migration didn't create inconsistencies
Checks that:
1. Program island metadata matches actual island assignment
2. No programs are assigned to multiple islands
3. All island best programs exist and are in correct islands
"""
seen_program_ids = set()
for i, island in enumerate(self.islands):
for program_id in island:
# Check for duplicate assignments
if program_id in seen_program_ids:
logger.error(f"Program {program_id} assigned to multiple islands")
continue
seen_program_ids.add(program_id)
# Check program exists
if program_id not in self.programs:
logger.warning(f"Island {i} contains nonexistent program {program_id}")
continue
# Check metadata consistency
program = self.programs[program_id]
stored_island = program.metadata.get("island")
if stored_island != i:
logger.warning(
f"Island mismatch for program {program_id}: "
f"in island {i} but metadata says {stored_island}"
)
# Validate island best programs
for i, best_id in enumerate(self.island_best_programs):
if best_id is not None:
if best_id not in self.programs:
logger.warning(f"Island {i} best program {best_id} does not exist")
elif best_id not in self.islands[i]:
logger.warning(f"Island {i} best program {best_id} not in island")
def _cleanup_stale_island_bests(self) -> None:
"""
Remove stale island best program references
Cleans up references to programs that no longer exist in the database
or are not actually in their assigned islands.
"""
cleaned_count = 0
for i, best_id in enumerate(self.island_best_programs):
if best_id is not None:
should_clear = False
# Check if program still exists
if best_id not in self.programs:
logger.debug(
f"Clearing stale island {i} best program {best_id} (program deleted)"
)
should_clear = True
# Check if program is still in the island
elif best_id not in self.islands[i]:
logger.debug(
f"Clearing stale island {i} best program {best_id} (not in island)"
)
should_clear = True
if should_clear:
self.island_best_programs[i] = None
cleaned_count += 1
if cleaned_count > 0:
logger.info(f"Cleaned up {cleaned_count} stale island best program references")
# Recalculate best programs for islands that were cleared
for i, best_id in enumerate(self.island_best_programs):
if best_id is None and len(self.islands[i]) > 0:
# Find new best program for this island
island_programs = [
self.programs[pid] for pid in self.islands[i] if pid in self.programs
]
if island_programs:
# Sort by fitness and update
best_program = max(
island_programs,
key=lambda p: p.metrics.get(
"combined_score", safe_numeric_average(p.metrics)
),
)
self.island_best_programs[i] = best_program.id
logger.debug(f"Recalculated island {i} best program: {best_program.id}")
def get_island_stats(self) -> List[dict]:
"""Get statistics for each island"""
stats = []
for i, island in enumerate(self.islands):
island_programs = [self.programs[pid] for pid in island if pid in self.programs]
if island_programs:
scores = [
get_fitness_score(p.metrics, self.config.feature_dimensions)
for p in island_programs
]
best_score = max(scores) if scores else 0.0
avg_score = sum(scores) / len(scores) if scores else 0.0
diversity = self._calculate_island_diversity(island_programs)
else:
best_score = avg_score = diversity = 0.0
stats.append(
{
"island": i,
"population_size": len(island_programs),
"best_score": best_score,
"average_score": avg_score,
"diversity": diversity,
"generation": self.island_generations[i],
"is_current": i == self.current_island,
}
)
return stats
def _calculate_island_diversity(self, programs: List[Program]) -> float:
"""Calculate diversity within an island (deterministic version)"""
if len(programs) < 2:
return 0.0
total_diversity = 0
comparisons = 0
# Use deterministic sampling instead of random.sample() to ensure consistent results
sample_size = min(5, len(programs)) # Reduced from 10 to 5
# Sort programs by ID for deterministic ordering
sorted_programs = sorted(programs, key=lambda p: p.id)
# Take first N programs instead of random sampling
sample_programs = sorted_programs[:sample_size]
# Limit total comparisons for performance
max_comparisons = 6 # Maximum comparisons to prevent long delays
for i, prog1 in enumerate(sample_programs):
for prog2 in sample_programs[i + 1 :]:
if comparisons >= max_comparisons:
break
# Use fast approximation instead of expensive edit distance
diversity = self._fast_code_diversity(prog1.code, prog2.code)
total_diversity += diversity
comparisons += 1
if comparisons >= max_comparisons:
break
return total_diversity / max(1, comparisons)
def _fast_code_diversity(self, code1: str, code2: str) -> float:
"""
Fast approximation of code diversity using simple metrics
Returns diversity score (higher = more diverse)
"""
if code1 == code2:
return 0.0
# Length difference (scaled to reasonable range)
len1, len2 = len(code1), len(code2)
length_diff = abs(len1 - len2)
# Line count difference
lines1 = code1.count("\n")
lines2 = code2.count("\n")
line_diff = abs(lines1 - lines2)
# Simple character set difference
chars1 = set(code1)
chars2 = set(code2)
char_diff = len(chars1.symmetric_difference(chars2))
# Combine metrics (scaled to match original edit distance range)
diversity = length_diff * 0.1 + line_diff * 10 + char_diff * 0.5
return diversity
def _get_cached_diversity(self, program: Program) -> float:
"""
Get diversity score for a program using cache and reference set
Args:
program: The program to calculate diversity for
Returns:
Diversity score (cached or newly computed)
"""
code_hash = hash(program.code)
# Check cache first
if code_hash in self.diversity_cache:
return self.diversity_cache[code_hash]["value"]
# Update reference set if needed
if (
not self.diversity_reference_set
or len(self.diversity_reference_set) < self.diversity_reference_size
):
self._update_diversity_reference_set()
# Compute diversity against reference set
diversity_scores = []
for ref_code in self.diversity_reference_set:
if ref_code != program.code: # Don't compare with itself
diversity_scores.append(self._fast_code_diversity(program.code, ref_code))
diversity = (
sum(diversity_scores) / max(1, len(diversity_scores)) if diversity_scores else 0.0
)
# Cache the result with LRU eviction
self._cache_diversity_value(code_hash, diversity)
return diversity
def _update_diversity_reference_set(self) -> None:
"""Update the reference set for diversity calculation"""
if len(self.programs) == 0:
return
# Select diverse programs for reference set
all_programs = list(self.programs.values())
if len(all_programs) <= self.diversity_reference_size:
self.diversity_reference_set = [p.code for p in all_programs]
else:
# Select programs with maximum diversity
selected = []
remaining = all_programs.copy()
# Start with a random program
first_idx = random.randint(0, len(remaining) - 1)
selected.append(remaining.pop(first_idx))
# Greedily add programs that maximize diversity to selected set
while len(selected) < self.diversity_reference_size and remaining:
max_diversity = -1
best_idx = -1
for i, candidate in enumerate(remaining):
# Calculate minimum diversity to selected programs
min_div = float("inf")
for selected_prog in selected:
div = self._fast_code_diversity(candidate.code, selected_prog.code)
min_div = min(min_div, div)
if min_div > max_diversity:
max_diversity = min_div
best_idx = i
if best_idx >= 0:
selected.append(remaining.pop(best_idx))
self.diversity_reference_set = [p.code for p in selected]
logger.debug(
f"Updated diversity reference set with {len(self.diversity_reference_set)} programs"
)
def _cache_diversity_value(self, code_hash: int, diversity: float) -> None:
"""Cache a diversity value with LRU eviction"""
# Check if cache is full
if len(self.diversity_cache) >= self.diversity_cache_size:
# Remove oldest entry
oldest_hash = min(self.diversity_cache.items(), key=lambda x: x[1]["timestamp"])[0]
del self.diversity_cache[oldest_hash]
# Add new entry
self.diversity_cache[code_hash] = {"value": diversity, "timestamp": time.time()}
def _invalidate_diversity_cache(self) -> None:
"""Invalidate the diversity cache when programs change significantly"""
self.diversity_cache.clear()
self.diversity_reference_set = []
logger.debug("Diversity cache invalidated")
def _update_feature_stats(self, feature_name: str, value: float) -> None:
"""
Update statistics for a feature dimension
Args:
feature_name: Name of the feature dimension
value: New value to incorporate into stats
"""
if feature_name not in self.feature_stats:
self.feature_stats[feature_name] = {
"min": value,
"max": value,
"values": [], # Keep recent values for percentile calculation if needed
}
stats = self.feature_stats[feature_name]
stats["min"] = min(stats["min"], value)
stats["max"] = max(stats["max"], value)
# Keep recent values for more sophisticated scaling methods
stats["values"].append(value)
if len(stats["values"]) > 1000: # Limit memory usage
stats["values"] = stats["values"][-1000:]
def _scale_feature_value(self, feature_name: str, value: float) -> float:
"""
Scale a feature value according to the configured scaling method
Args:
feature_name: Name of the feature dimension
value: Raw feature value
Returns:
Scaled value in range [0, 1]
"""
if feature_name not in self.feature_stats:
# No stats yet, return normalized by a reasonable default
return min(1.0, max(0.0, value))
stats = self.feature_stats[feature_name]
if self.feature_scaling_method == "minmax":
# Min-max normalization to [0, 1]
min_val = stats["min"]
max_val = stats["max"]
if max_val == min_val:
return 0.5 # All values are the same
scaled = (value - min_val) / (max_val - min_val)
return min(1.0, max(0.0, scaled)) # Ensure in [0, 1]
elif self.feature_scaling_method == "percentile":
# Use percentile ranking
values = stats["values"]
if not values:
return 0.5
# Count how many values are less than or equal to this value
count = sum(1 for v in values if v <= value)
percentile = count / len(values)
return percentile
else:
# Default to min-max if unknown method
return self._scale_feature_value_minmax(feature_name, value)
def _scale_feature_value_minmax(self, feature_name: str, value: float) -> float:
"""Helper for min-max scaling"""
if feature_name not in self.feature_stats:
return min(1.0, max(0.0, value))
stats = self.feature_stats[feature_name]
min_val = stats["min"]
max_val = stats["max"]
if max_val == min_val:
return 0.5
scaled = (value - min_val) / (max_val - min_val)
return min(1.0, max(0.0, scaled))
def _serialize_feature_stats(self) -> Dict[str, Any]:
"""
Serialize feature_stats for JSON storage
Returns:
Dictionary that can be JSON-serialized
"""
serialized = {}
for feature_name, stats in self.feature_stats.items():
# Convert to JSON-serializable format
serialized_stats = {}
for key, value in stats.items():
if key == "values":
# Limit size to prevent excessive memory usage
# Keep only the most recent 100 values for percentile calculations
if isinstance(value, list) and len(value) > 100:
serialized_stats[key] = value[-100:]
else:
serialized_stats[key] = value
else:
# Convert numpy types to Python native types
if hasattr(value, "item"): # numpy scalar
serialized_stats[key] = value.item()
else:
serialized_stats[key] = value
serialized[feature_name] = serialized_stats
return serialized
def _deserialize_feature_stats(
self, stats_dict: Dict[str, Any]
) -> Dict[str, Dict[str, Union[float, List[float]]]]:
"""
Deserialize feature_stats from loaded JSON
Args:
stats_dict: Dictionary loaded from JSON
Returns:
Properly formatted feature_stats dictionary
"""
if not stats_dict:
return {}
deserialized = {}
for feature_name, stats in stats_dict.items():
if isinstance(stats, dict):
# Ensure proper structure and types
deserialized_stats = {
"min": float(stats.get("min", 0.0)),
"max": float(stats.get("max", 1.0)),
"values": list(stats.get("values", [])),
}
deserialized[feature_name] = deserialized_stats
else:
logger.warning(
f"Skipping malformed feature_stats entry for '{feature_name}': {stats}"
)
return deserialized
def log_island_status(self) -> None:
"""Log current status of all islands"""
stats = self.get_island_stats()
logger.info("Island Status:")
for stat in stats:
current_marker = " *" if stat["is_current"] else " "
island_idx = stat["island"]
island_best_id = (
self.island_best_programs[island_idx]
if island_idx < len(self.island_best_programs)
else None
)
best_indicator = f" (best: {island_best_id})" if island_best_id else ""
logger.info(
f"{current_marker} Island {stat['island']}: {stat['population_size']} programs, "
f"best={stat['best_score']:.4f}, avg={stat['average_score']:.4f}, "
f"diversity={stat['diversity']:.2f}, gen={stat['generation']}{best_indicator}"
)
# Artifact storage and retrieval methods
def store_artifacts(self, program_id: str, artifacts: Dict[str, Union[str, bytes]]) -> None:
"""
Store artifacts for a program
Args:
program_id: ID of the program
artifacts: Dictionary of artifact name to content
"""
if not artifacts:
return
program = self.get(program_id)
if not program:
logger.warning(f"Cannot store artifacts: program {program_id} not found")
return
# Check if artifacts are enabled
artifacts_enabled = os.environ.get("ENABLE_ARTIFACTS", "true").lower() == "true"
if not artifacts_enabled:
logger.debug("Artifacts disabled, skipping storage")
return
# Split artifacts by size
small_artifacts = {}
large_artifacts = {}
size_threshold = getattr(self.config, "artifact_size_threshold", 32 * 1024) # 32KB default
for key, value in artifacts.items():
size = self._get_artifact_size(value)
if size <= size_threshold:
small_artifacts[key] = value
else:
large_artifacts[key] = value
# Store small artifacts as JSON
if small_artifacts:
program.artifacts_json = json.dumps(small_artifacts, default=self._artifact_serializer)
logger.debug(f"Stored {len(small_artifacts)} small artifacts for program {program_id}")
# Store large artifacts to disk
if large_artifacts:
artifact_dir = self._create_artifact_dir(program_id)
program.artifact_dir = artifact_dir
for key, value in large_artifacts.items():
self._write_artifact_file(artifact_dir, key, value)
logger.debug(f"Stored {len(large_artifacts)} large artifacts for program {program_id}")
def get_artifacts(self, program_id: str) -> Dict[str, Union[str, bytes]]:
"""
Retrieve all artifacts for a program
Args:
program_id: ID of the program
Returns:
Dictionary of artifact name to content
"""
program = self.get(program_id)
if not program:
return {}
artifacts = {}
# Load small artifacts from JSON
if program.artifacts_json:
try:
small_artifacts = json.loads(program.artifacts_json)
artifacts.update(small_artifacts)
except json.JSONDecodeError as e:
logger.warning(f"Failed to decode artifacts JSON for program {program_id}: {e}")
# Load large artifacts from disk
if program.artifact_dir and os.path.exists(program.artifact_dir):
disk_artifacts = self._load_artifact_dir(program.artifact_dir)
artifacts.update(disk_artifacts)
return artifacts
def _get_artifact_size(self, value: Union[str, bytes]) -> int:
"""Get size of an artifact value in bytes"""
if isinstance(value, str):
return len(value.encode("utf-8"))
elif isinstance(value, bytes):
return len(value)
else:
return len(str(value).encode("utf-8"))
def _artifact_serializer(self, obj):
"""JSON serializer for artifacts that handles bytes"""
if isinstance(obj, bytes):
return {"__bytes__": base64.b64encode(obj).decode("utf-8")}
raise TypeError(f"Object of type {type(obj)} is not JSON serializable")
def _artifact_deserializer(self, dct):
"""JSON deserializer for artifacts that handles bytes"""
if "__bytes__" in dct:
return base64.b64decode(dct["__bytes__"])
return dct
def _create_artifact_dir(self, program_id: str) -> str:
"""Create artifact directory for a program"""
base_path = getattr(self.config, "artifacts_base_path", None)
if not base_path:
base_path = (
os.path.join(self.config.db_path or ".", "artifacts")
if self.config.db_path
else "./artifacts"
)
artifact_dir = os.path.join(base_path, program_id)
os.makedirs(artifact_dir, exist_ok=True)
return artifact_dir
def _cleanup_old_artifacts(self, checkpoint_path: str) -> None:
"""
Remove artifact directories older than the configured retention period.
Args:
checkpoint_path: The path of the current checkpoint being saved, which
contains the artifacts folder to be cleaned.
"""
if not self.config.cleanup_old_artifacts:
return
artifacts_base_path = os.path.join(checkpoint_path, "artifacts")
if not os.path.isdir(artifacts_base_path):
return
now = time.time()
retention_seconds = self.config.artifact_retention_days * 24 * 60 * 60
deleted_count = 0
logger.debug(f"Starting artifact cleanup in {artifacts_base_path}...")
for dirname in os.listdir(artifacts_base_path):
dirpath = os.path.join(artifacts_base_path, dirname)
if os.path.isdir(dirpath):
try:
dir_mod_time = os.path.getmtime(dirpath)
if (now - dir_mod_time) > retention_seconds:
shutil.rmtree(dirpath)
deleted_count += 1
logger.debug(f"Removed old artifact directory: {dirpath}")
except FileNotFoundError:
# Can happen in race conditions; ignore.
continue
except Exception as e:
logger.error(f"Error removing artifact directory {dirpath}: {e}")
if deleted_count > 0:
logger.info(f"Cleaned up {deleted_count} old artifact directories.")
def _write_artifact_file(self, artifact_dir: str, key: str, value: Union[str, bytes]) -> None:
"""Write an artifact to a file"""
# Sanitize filename
safe_key = "".join(c for c in key if c.isalnum() or c in "._-")
if not safe_key:
safe_key = "artifact"
file_path = os.path.join(artifact_dir, safe_key)
try:
if isinstance(value, str):
with open(file_path, "w", encoding="utf-8") as f:
f.write(value)
elif isinstance(value, bytes):
with open(file_path, "wb") as f:
f.write(value)
else:
# Convert to string and write
with open(file_path, "w", encoding="utf-8") as f:
f.write(str(value))
except Exception as e:
logger.warning(f"Failed to write artifact {key} to {file_path}: {e}")
def _load_artifact_dir(self, artifact_dir: str) -> Dict[str, Union[str, bytes]]:
"""Load artifacts from a directory"""
artifacts = {}
try:
for filename in os.listdir(artifact_dir):
file_path = os.path.join(artifact_dir, filename)
if os.path.isfile(file_path):
try:
# Try to read as text first
with open(file_path, "r", encoding="utf-8") as f:
content = f.read()
artifacts[filename] = content
except UnicodeDecodeError:
# If text fails, read as binary
with open(file_path, "rb") as f:
content = f.read()
artifacts[filename] = content
except Exception as e:
logger.warning(f"Failed to read artifact file {file_path}: {e}")
except Exception as e:
logger.warning(f"Failed to list artifact directory {artifact_dir}: {e}")
return artifacts
def log_prompt(
self,
program_id: str,
template_key: str,
prompt: Dict[str, str],
responses: Optional[List[str]] = None,
) -> None:
"""
Log a prompt for a program.
Only logs if self.config.log_prompts is True.
Args:
program_id: ID of the program to log the prompt for
template_key: Key for the prompt template
prompt: Prompts in the format {template_key: { 'system': str, 'user': str }}.
responses: Optional list of responses to the prompt, if available.
"""
if not self.config.log_prompts:
return
if responses is None:
responses = []
prompt["responses"] = responses
if self.prompts_by_program is None:
self.prompts_by_program = {}
if program_id not in self.prompts_by_program:
self.prompts_by_program[program_id] = {}
self.prompts_by_program[program_id][template_key] = prompt
|