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 2548 2549 2550 2551 2552 2553
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Macaulay2
Source: https://macaulay2.com/
Files-Excluded:
M2/Macaulay2/packages/Style/katex
M2/Macaulay2/packages/Style/prism.js*
M2/Macaulay2/packages/Visualize/css/BootSideMenu.css
M2/Macaulay2/packages/Visualize/css/bootstrap*.min.css
M2/Macaulay2/packages/Visualize/css/nouislider.*
M2/Macaulay2/packages/Visualize/fonts
M2/Macaulay2/packages/Visualize/js/BootSideMenu.js
M2/Macaulay2/packages/Visualize/js/bootstrap.min.js
M2/Macaulay2/packages/Visualize/js/clipboard.min.js
M2/Macaulay2/packages/Visualize/js/d3.v3.min.js
M2/Macaulay2/packages/Visualize/js/jquery-1.11.3.min.js
M2/Macaulay2/packages/Visualize/js/nouislider.min.js
M2/Macaulay2/packages/Visualize/js/three.min.js
Comment: Files-Excluded field removes embedded Javascript libraries.
.
An email from Dan Grayson dated 2020-08-03 clarified the
licenses of code contributed by authors other than himself and Mike
Stillman:
.
"A priori the author of a file is the copyright holder, by default.
We haven't always been alert about asking authors to put their code
in the public domain, although I have done that in a few
cases. . . My general attitude is that anyone who contributes code to
us is putting it in the public domain, implicitly."
Files: *
Copyright: 1993-2025 The Macaulay2 Authors
Comment: Copyright originally held by Dan Grayson and Mike Stillman.
Transferred to "The Macaulay2 Authors" (which includes Dan & Mike) beginning
with version 1.25.05, released in May 2025. See
https://github.com/Macaulay2/M2/wiki/The-Macaulay2-Authors for a list.
License: GPL-2+
Files: debian/*
Copyright: 2015-2025 Doug Torrance <dtorrance@debian.org>
License: GPL-2+
Files: M2/cmake/FindBDWGC.cmake
M2/cmake/FindFactory.cmake
M2/cmake/FindFlint.cmake
M2/cmake/FindFrobby.cmake
M2/cmake/FindGDBM.cmake
M2/cmake/FindMathic.cmake
M2/cmake/FindMathicgb.cmake
M2/cmake/FindMemtailor.cmake
M2/cmake/FindMPSolve.cmake
M2/cmake/FindNTL.cmake
Copyright: 2020 Mahrud Sayrafi <mahrud@umn.edu>
Comment: The files themselves only contain the line "Redistribution
and use is allowed according to the terms of the BSD license." In an
email, the author confirmed that the license in question is the
3-clause version, which is the same license used by CMake itself. See
https://cmake.org/licensing/. This comment also applies to the other
Find*.cmake files below.
License: BSD-3-Clause
Files: M2/cmake/FindCDDLIB.cmake
Copyright: 2006 Laurent Montel <montel@kde.org>
2018 Thomas Baumgart <tbaumgart@kde.org>
2020 Mahrud Sayrafi <mahrud@umn.edu>
License: BSD-3-Clause
Files: M2/cmake/FindGMP.cmake
Copyright: 2016 Jack Poulson <jack.poulson@gmail.com>
2020 Mahrud Sayrafi <mahrud@umn.edu>
License: BSD-3-Clause
Files: M2/cmake/FindMPFR.cmake
Copyright: 2006, 2007 Montel Laurent <montel@kde.org>
2008, 2009 Gael Guennebaud <g.gael@free.fr>
2010 Jitse Niesen <jitse@maths.leeds.ac.uk>
2015 Jack Poulson <jack.poulson@gmail.com>
2020 Mahrud Sayrafi <mahrud@umn.edu>
License: BSD-3-Clause
Files: M2/cmake/FindTBB.cmake
Copyright: 2012 Sergiu Dotenco
License: Expat
Files: M2/m4/ax_blas.m4
M2/m4/ax_lapack.m4
Copyright: 2008-2009 Steven G. Johnson <stevenj@alum.mit.edu>
2019 Geoffrey M. Oxberry <goxberry@gmail.com>
License: GPL-2+ with autoconf exception
Files: M2/m4/ax_boost_base.m4
Copyright: 2008 Thomas Porschberg <thomas@randspringer.de>
2009 Peter Adolphs
License: FSFAP
Files: M2/m4/ax_boost_regex.m4
Copyright: 2008 Thomas Porschberg <thomas@randspringer.de>
2008 Michael Tindal
License: FSFAP
Files: M2/m4/ax_compare_version.m4
Copyright: 2008 Tim Toolan <toolan@ele.uri.edu>
License: FSFAP
Files: M2/m4/ax_recursive_eval.m4
Copyright: 2008 Alexandre Duret-Lutz <adl@gnu.org>
License: GPL-2+ with autoconf exception
Files: M2/Macaulay2/d/boost-regex.cpp
M2/Macaulay2/d/regex.dd
M2/Macaulay2/m2/markdown.m2
M2/Macaulay2/m2/regex.m2
Copyright: 2020 Mahrud Sayrafi
Comment: See Comment at top of this file.
License: public-domain
Files: M2/Macaulay2/d/python-c.c
Copyright: 2000-20009 Alex Martelli
2008-2023 Case Van Horsen
Comment: GMP <-> Python integer conversion routines from gmpy2
License: LGPL-3.0+
Files: M2/Macaulay2/e/bibasis/*
M2/Macaulay2/packages/BIBasis.m2
Copyright: 2006-2011 Mikhail V. Zinin <mzinin@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/e/franzi*
Copyright: Franziska Hinkelmann
License: public-domain
Files: M2/Macaulay2/e/localring.cpp
M2/Macaulay2/e/localring.hpp
M2/Macaulay2/e/mutablecomplex.cpp
M2/Macaulay2/e/mutablecomplex.hpp
M2/Macaulay2/m2/localring.m2
M2/Macaulay2/packages/PruneComplex*
Copyright: 2017 Mahrud Sayrafi <mahrud@berkeley.edu>
2017 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/e/mpreal.h
Copyright: 2008-2019 Pavel Holoborodko
License: GPL-3+
Files: M2/Macaulay2/e/mutablemat-imp.hpp
M2/Macaulay2/e/NAG.cpp
M2/Macaulay2/e/NAG.hpp
M2/Macaulay2/e/SLP.cpp
M2/Macaulay2/e/SLP.hpp
M2/Macaulay2/e/SLP-defs.hpp
M2/Macaulay2/e/SLP-imp.hpp
Copyright: 2008, 2015 Anton Leykin and Mike Stillman
Comment: Anton Leykin's code in this file is in the public domain.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/e/unit-tests/GivaroTest.cpp
Copyright: 1994-2009 The Givaro group
License: CECILL-B
Files: M2/Macaulay2/editors/pygments/macaulay2.py.in
Copyright: 2006-2021 Pygments team
Comment: The copyright header says to "see AUTHORS". This refers to
the AUTHORS file in the Pygments source. See the Debian "pygments"
source package or https://github.com/pygments/pygments.
License: BSD-2-clause
Files: M2/Macaulay2/editors/vim/m2.vim.plugin
Copyright: 2010 David Cook II <dcook@ms.uky.edu>
License: public-domain
Files: M2/Macaulay2/m2/book.m2
Copyright: 1997 Daniel R. Grayson
2020 Mahrud Sayrafi
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/m2/expressions.m2
Copyright: 1992-2002 Daniel R. Grayson
2018 P. Zinn-Justin
Comment: See M2/LICENSING-NOTES
License: GPL-2+ and public-domain
Files: M2/Macaulay2/m2/fano.m2
M2/Macaulay2/tests/normal/testsubring.m2
Copyright: 1996, 1997 Michael Stillman and David Eisenbud
License: GPL-2+
Files: M2/Macaulay2/m2/hypertext.m2
Copyright: 1993-2003 Daniel R. Grayson
2020 P. Zinn-Justin
2020 Mahrud Sayrafi
Comment: See M2/LICENSING-NOTES
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/PrimaryDecomposition*
Copyright: 2020 Mike Stillman <mike@math.cornell.edu>
2020 Carolyn Yackel <cyackel@math.indiana.edu>
2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Mahrud Sayrafi <mahrud@umn.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/m2/minPres.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/minimalPresentation-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/trim-doc.m2
M2/Macaulay2/packages/PrimaryDecomposition/primaryDecomposition-test.m2
Copyright: 2006 Amelia Taylor
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/m2/schubert.m2
Copyright: Bernd Sturmfels
Josephine Yu
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/m2/webapp.m2
M2/Macaulay2/packages/CotangentSchubert*
M2/Macaulay2/packages/MergeTeX*
M2/Macaulay2/packages/OnlineLookup.m2
M2/Macaulay2/packages/VectorGraphics*
Copyright: 2018-2022 Paul Zinn-Justin <pzinn@unimelb.edu.au>
Comment: See M2/LICENSING-NOTES
License: public-domain
Files: M2/Macaulay2/packages/A1BrouwerDegrees*
Copyright: 2023 Nikita Borisov <nborisov@sas.upenn.edu>
2023 Thomas Brazelton <brazelton@math.harvard.edu>
2023 Frenly Espino <frenly@sas.upenn.edu>
2023 Tom Hagedorn <hagedorn@tcnj.edu>
2023 Zhaobo Han <zbtomhan@sas.upenn.edu>
2023 Jordy Lopez Garcia <jordy.lopez@tamu.edu>
2023 Joel Louwsma <jlouwsma@niagara.edu>
2023 Andrew Tawfeek <atawfeek@uw.edu>
2023 Wern Juin Gabriel Ong <gong@bowdoin.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/AbstractSimplicialComplexes.m2
Copyright: 2024 Nathan Grieve <nathan.m.grieve@gmail.com>
License: GPL-3+
Files: M2/Macaulay2/packages/AdjointIdeal*
M2/Macaulay2/packages/ConvexInterface*
M2/Macaulay2/packages/MapleInterface*
M2/Macaulay2/packages/Parametrization*
M2/Macaulay2/packages/SRdeformations.m2
Copyright: 2009 Janko Boehm <boehm@math.uni-sb.de>
License: GPL-2+
Files: M2/Macaulay2/packages/AdjunctionForSurfaces.m2
M2/Macaulay2/tests/normal/schreyer.m2
Copyright: 2024 Frank Schreyer <schreyer@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/AlgebraicSplines.m2
Copyright: 2014-2015 Mike Dipasquale <mdipasq@okstate.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/AllMarkovBases.m2
Copyright: 2025 Alexander Milner <A.J.C.Milner@sms.ed.ac.uk>
2025 Oliver Clarke <oliver.clarke@durham.ac.uk>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/AnalyzeSheafOnP1.m2
M2/Macaulay2/packages/ChainComplexOperations.m2
M2/Macaulay2/packages/CompleteIntersectionResolutions.m2
M2/Macaulay2/packages/HigherCIOperators.m2
M2/Macaulay2/packages/HomotopyLieAlgebra.m2
M2/Macaulay2/packages/Isomorphism.m2
M2/Macaulay2/packages/MCMApproximations.m2
M2/Macaulay2/packages/PlaneCurveLinearSeries.m2
Copyright: 2013-2024 David Eisenbud <de@berkeley.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/AssociativeAlgebras*
M2/Macaulay2/packages/NCAlgebraV2.m2
M2/Macaulay2/packages/undistributed-packages/SuffixTrees.m2
Copyright: 2016, 2021 Frank Moore <moorewf@wfu.edu>
2016, 2021 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/AInfinity.m2
M2/Macaulay2/packages/BeginningMacaulay2*
M2/Macaulay2/packages/EagonResolution.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/pushForward-doc.m2
M2/Macaulay2/packages/MonomialOrbits.m2
M2/Macaulay2/packages/Truncations.m2
M2/Macaulay2/packages/undistributed-packages/RandomSearch.m2
Copyright: 2006, 2009, 2018, 2020, 2021 David Eisenbud <de@msri.org>
2006, 2009, 2018, 2020, 2021 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/BernsteinSato*
M2/Macaulay2/packages/WeylAlgebras*
Copyright: 2023 Anton Leykin <leykin@math.gatech.edu>
2023 Harrison Tsai
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Bertini*
Copyright: 2020 Elizabeth Gross <elizabeth.gross@sjsu.edu>
2020 Jose Israel Rodriguez <Jose@math.wisc.edu>
2020 Dan Bates <bates@math.colostate.edu>
2020 Anton Leykin <leykin@math.gatech.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/BettiCharacters.m2
M2/Macaulay2/packages/HighestWeights*
Copyright: 2014, 2021 Federico Galetto <galetto.federico@gmail.com>
License: GPL-3+
Files: M2/Macaulay2/packages/BGG.m2
Copyright: 2016 Hirotachi Abo <abo@uidaho.edu>
2016 Wolfram Decker <decker@math.uni-sb.de>
2016 David Eisenbud <de@msri.org>
2016 Frank Schreyer <schreyer@math.uni-sb.de>
2016 Gregory G. Smith <ggsmith@mast.queensu.ca>
2016 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/BinomialEdgeIdeals.m2
Copyright: 2015 Tobias Windisch <windisch@ovgu.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Binomials.m2
M2/Macaulay2/packages/Cyclotomic.m2
Copyright: 2009-2014 Thomas Kahle <thomas-kahle@gmx.de>
License: GPL-2+
Files: M2/Macaulay2/packages/BoijSoederberg.m2
Copyright: 2015 David Eisenbud <de@msri.org>
2015 Frank Schreyer <schreyer@math.uni-sb.de>
2015 Mike Stillman <mike@math.cornell.edu>
2015 Courtney Gibbons <crgibbon@hamilton.edu>
2015 Branden Stone <bstone@adelphi.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Book3264Examples.m2
Copyright: 2010 Charley Crissman <charleyc@math.berkeley.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/BooleanGB.m2
Copyright: 2011 Franziska Hinkelmann <fhinkel@vt.edu>
2011 Mike Stillman
2011 Elizabeth Arnold
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Brackets.m2
Copyright: 2025 Dalton Bidleman <deb0036@auburn.edu>
2025 Tim Duff <tduff@missouri.edu>
2025 Jack Kendrick <jackgk@uw.edu>
2025 Michael Zeng <zengrf@uw.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Bruns.m2
Copyright: 2008 David Eisenbud <de@msri.org>
2008 Sonja Petrovic
2008 Adam Van Tuyl
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/CellularResolutions*
Copyright: 2023 Jay Yang <jayy@wustl.edu>
2023 Aleksandra Sobieska <asobieska@math.wisc.edu>
License: public-domain
Files: M2/Macaulay2/packages/ChainComplexExtras.m2
Copyright: 2016 David Eisenbud <de@msri.org>
2016 Frank Moore <fmoore@math.unl.edu>
2016 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
2016 Greg Smith <ggsmith@mast.queensu.ca>
2016 Lily Silverstein <lsilverstein@cpp.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/CharacteristicClasses.m2
Copyright: 2015 Martin Helmer <martin.helmer@berkeley.edu>
2015 Christine Jost <christine.e.jost@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Chordal*
Copyright: 2017 Diego Cifuentes <diegcif@mit.edu>
2017 Pablo Parrilo <parrilo@mit.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/CodingTheory.m2
Copyright: 2021 Taylor Ball <trball13@gmail.com>
2021 Eduardo Camps <camps@esfm.ipn.mx>
2021 Henry Chimal-Dzul <hc118813@ohio.edu>
2021 Delio Jaramillo-Velez <djaramillo@math.cinvestav.mx>
2021 Hiram H. Lopez <h.lopezvaldez@csuohio.edu>
2021 Nathan Nichols <nathannichols454@gmail.com>
2021 Matthew Perkins <m.r.perkins73@vikes.csuohio.edu>
2021 Ivan Soprunov <i.soprunov@csuohio.edu>
2021 German Vera <gveram1100@alumno.ipn.mx>
2021 Gwyn Whieldon <gwyn.whieldon@gmail.com>
License: GPL-3+
Files: M2/Macaulay2/packages/CoincidentRootLoci*
Copyright: 2020 Maria Chiara Brambilla <brambilla@dipmat.univpm.it>
2020 Giovanni Staglianò <giovannistagliano@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Complexes.m2
Copyright: 2020 Gregory G. Smith <ggsmith@mast.queensu.ca>
2020 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/ConformalBlocks.m2
M2/Macaulay2/packages/StatePolytope*
Copyright: 2008, 2018 Dave Swinarski <dswinarski@fordham.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ConnectionMatrices*
Copyright: 2025 Paul Goerlach <paul.goerlach@ovgu.de>
2025 Joris Koefler <joris.koefler@mis.mpg.de>
2025 Mahrud Sayrafi <mahrud@fields.utoronto.ca>
2025 Anna-Laura Sattelberger <anna-laura.sattelberger@mis.mpg.de>
2025 Hendrik Schroeder <h.schroeder@tu-berlin.de>
2025 Nicolas Weiss <nicolas.weiss@mis.mpg.de>
2025 Francesca Zaffalon <francesca.zaffalon@mis.mpg.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/CorrespondenceScrolls.m2
Copyright: 2018 David Eisenbud <de@msri.org>
2018 Frank-Olaf Schreyer
2018 Alessio Sammartano
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Cremona*
M2/Macaulay2/packages/MultiprojectiveVarieties.m2
M2/Macaulay2/packages/Resultants.m2
M2/Macaulay2/packages/SparseResultants.m2
M2/Macaulay2/packages/SpecialFanoFourfolds.m2
Copyright: 2020 Giovanni Staglianò <giovannistagliano@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/DecomposableSparseSystems*
Copyright: 2020 Taylor Brysiewicz <taylorbrysiewicz@gmail.com>
2020 Jose Israel Rodriguez <Jose@math.wisc.edu>
2020 Frank Sottile <sottile@math.tamu.edu>
2020 Thomas Yahl <thomasjyahl@tamu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Depth.m2
Copyright: 2010 Bart Snapp <snapp@math.ohio-state.edu>
2016 David Eisenbud <de@msri.org>
2016 Branden Stone <bstone@adelphi.edu>
License: public-domain
Files: M2/Macaulay2/packages/DeterminantalRepresentations.m2
Copyright: 2019 Justin Chen <jchen646@gatech.edu>
2019 Papri Dey <papridey@berkeley.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/DGAlgebras.m2
Copyright: 2017 Frank Moore <moorewf@wfu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/DiffAlg.m2
Copyright: 2018 Manuel Dubinsky <manudubinsky@gmail.com>
2018 Cesar Massri <cmassri@caece.edu.ar>
2018 Ariel Molinuevo <amoli@dm.uba.ar>
2018 Federico Quallbrunn <fquallb@dm.uba.ar>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Divisor.m2
Copyright: 2018 Karl Schwede <kschwede@gmail.com>
2018 Zhaoning Yang <zyy5054@gmail.com>
License: public-domain
Files: M2/Macaulay2/packages/Dmodules*
Copyright: 1999-2009 Anton Leykin <leykin@math.gatech.edu>
1999-2009 Harrison Tsai
License: GPL-2+
Files: M2/Macaulay2/packages/EdgeIdeals.m2
Copyright: 2008-2010 Chris Francisco <chris@math.okstate.edu>
2008-2010 Andrew Hoefel <handrew@mathstat.dal.ca>
2008-2010 Adam Van Tuyl <avantuyl@lakeheadu.ca>
License: GPL-2+
Files: M2/Macaulay2/packages/EliminationMatrices.m2
Copyright: 2011, 2012 Nicolás Botbol <nbotbol@dm.uba.ar>
2011, 2012 Laurent Busé <Laurent.Buse@inria.fr>
2011, 2012 Manuel Dubinsky <manudubinsky@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/EllipticCurves.m2
Copyright: 2014 Alessandro Oneto <oneto@math.su.se>
2014 Stefano Marseglia <stefanom@math.su.se>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/EngineTests*
M2/Macaulay2/packages/undistributed-packages/CustomEngineTests.m2
M2/Macaulay2/packages/undistributed-packages/FastLinearAlgebra*
Copyright: 2011 Michael E. Stillman <mike@math.cornell.edu>
2011 Jakob Kröker <kroeker@math.uni-hannover.de>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/EnumerationCurves.m2
Copyright: 2013 Hiep Dang <hiepdt_tt@dlu.edu.vn>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/EquivariantGB*
Copyright: 2014 Chris Hillar <chillar@msri.org>
2014 Robert Krone <krone@math.gatech.edu>
2014 Anton Leykin <leykin@math.gatech.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/EigenSolver.m2
Copyright: 2020 Laurent Busé <Laurent.Buse@inria.fr>
2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Kisun Lee <kil004@ucsd.edu>
2020 Anton Leykin <anton.leykin@gmail.com>
2020 Tomas Pajdla <pajdla@cvut.cz>
2020 Erika Pirnes <pirnes@wisc.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ExampleSystems*
Copyright: 2020 Anton Leykin <leykin@math.gatech.edu>
2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Kelly Maluccio <kmaluccio@math.tamu.edu>
2020 Leah Gold <L.Gold33@csuohio.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ExteriorIdeals.m2
M2/Macaulay2/packages/ExteriorModules.m2
Copyright: 2017, 2021 Marilena Crupi <mcrupi@unime.it>
2017, 2021 Luca Amata <lamata@unime.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/FastMinors.m2
Copyright: 2021 Boyana Martinova <u1056124@utah.edu>
2021 Marcus Robinson <robinson@math.utah.edu>
2021 Karl Schwede <schwede@math.utah.edu>
2021 Yuhui (Wei) Yao <yuhuiyao4ever@gmail.com>
License: public-domain
Files: M2/Macaulay2/packages/FGLM.m2
Copyright: 2019 Dylan Peifer <djp282@cornell.edu>
2019 Mahrud Sayrafi <mahrud@umn.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/FiniteFittingIdeals.m2
Copyright: 2015 Gustav Sædén Ståhl <gss@math.kth.se>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ForeignFunctions.m2
M2/Macaulay2/packages/JSON.m2
M2/Macaulay2/packages/Probability.m2
M2/Macaulay2/packages/RInterface*
Copyright: 2022-2023 Doug Torrance <dtorrance@piedmont.edu>
Comment: See Comment at the top of the file.
License: public-domain
Files: M2/Macaulay2/packages/FormalGroupLaws.m2
M2/Macaulay2/packages/Graphics.m2
M2/Macaulay2/packages/WeylGroups*
Copyright: 2010, 2012 Baptiste Calmès
2010, 2012 Viktor Petrov
License: GPL-2+
Files: M2/Macaulay2/packages/FourierMotzkin.m2
Copyright: 1998-2000, 2006, 2008, 2010 Gregory G. Smith <ggsmith@mast.queensu.ca>
License: GPL-2+
Files: M2/Macaulay2/packages/FourTiTwo.m2
Copyright: 2008, 2009 Mike Stillman <mike@math.cornell.edu>
2008, 2009 Josephine Yu <jyu@math.mit.edu>
2008, 2009 Sonja Petrovic <petrovic@psu.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/FrobeniusThresholds*
Copyright: 2019 Juliette Bruce <juliette.bruce@math.wisc.edu>
2019 Daniel Hernández <hernandez@ku.edu>
2019 Karl Schwede <schwede@math.utah.edu>
2019 Dan Smolkin <smolkin@math.utah.edu>
2019 Pedro Teixeira <pteixeir@knox.edu>
2019 Emily Witt <witt@ku.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/FunctionFieldDesingularization.m2
M2/Macaulay2/packages/QthPower.m2
Copyright: 2014, 2021 Douglas A. Leonard <leonada@auburn.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/GameTheory.m2
Copyright: 2025 Erin Connelly <erin.connelly@uni-osnabrueck.de>
2025 Vincenzo Galgano <galgano@mpi-cbg.de>
2025 Zhuang He <zhuang.he@unito.it>
2025 Lars Kastner <kastner@math.tu-berlin.de>
2025 Giacomo Maletto <gmaletto@kth.se>
2025 Elke Neuhaus <elke@neuhaus-rp.de>
2025 Irem Portakal <mail@irem-portakal.de>
2025 Hannah Tillmann-Morris <tillmann@mis.mpg.de>
2025 Chenyang Zhao <cz2922@ic.ac.uk>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/GenericInitialIdeal.m2
M2/Macaulay2/packages/Regularity.m2
Copyright: 2008, 2009 Alexandra Seceleanu <asecele2@uiuc.edu>
2008, 2009 Nathaniel Stapleton <nstaple2@math.uiuc.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/GeometricDecomposability.m2
Copyright: 2022 Mike Cummings <cummim5@mcmaster.ca>
2022 Adam Van Tuyl <vantuyl@math.mcmaster.ca>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/gfanInterface.m2
Copyright: 2012 Mike Stillman <mike@math.cornell.edu>
2012 Andrew Hoefel <andrew.hoefel@gmail.com>
2012 Diane Maclagan <D.Maclagan@warwick.ac.uk>
2012 Josephine Yu
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/GKMVarieties*
Copyright: 2020 Chris Eur <chriseur@stanford.edu>
2020 Ritvik Ramkumar <ritvik@math.berkeley.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/GradedLieAlgebras*
Copyright: 2020 Clas Löfwall <clas.lofwall@gmail.com>
2020 Samuel Lundqvist <samuel@math.su.se>
License: GPL-2+
Files: M2/Macaulay2/packages/GraphicalModels.m2
Copyright: 2013 Luis Garcia-Puente <lgarcia@shsu.edu>
2013 Sonja Petrovic <sonja@psu.edu>
2013 Mike Stillman <mike@math.cornell.edu>
2013 Seth Sullivant <smsulli2@ncsu.edu>
2013 Alexander Diaz
2013 Shaowei Lin
2013 David Murrugarra
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/GraphicalModelsMLE.m2
Copyright: 2020 Carlos Amendola <carlos.amendola@tum.de>
2020 Luis David Garcia Puente <lgarcia@shsu.edu>
2020 Roser Homs Pons <roser.homs@tum.de>
2020 Olga Kuznetsova <kuznetsova.olga@gmail.com>
2020 Harshit J Motwani <harshitmotwani2015@gmail.com>
2020 Elina Robeva <erobeva@gmail.com>
2020 David Swinarski <dswinarski@fordham.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/Graphs.m2
Copyright: 2010 Amelia Taylor <originalbrickhouse@gmail.com>
2010 Augustine O'Keefe <aokeefe@tulane.edu>
2014 Jack Burkart <jburkar1@nd.edu>
2014 David Cook II <dwcook@eiu.edu>
2014 Caroline Jansen <cjansen@nd.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/GroebnerStrata.m2
Copyright: 2021 Mike Stillman <mike@math.cornell.edu>
2021 Kristine Jones <kejones84@gmail.com>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/GroebnerWalk.m2
Copyright: 2017 Dylan Peifer <djp282@cornell.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/Hadamard.m2
Copyright: 2020 Iman Bahmani Jafarloo <ibahmani89@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/HodgeIntegrals.m2
Copyright: 2010 Stephanie Yang <stpyang@math.kth.se>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/HolonomicSystems*
Copyright: 2023 Mahrud Sayrafi <mahrud@umn.edu>
2023 Christine Berkesch <cberkesc@umn.edu>
2023 Anton Leykin <leykin@math.gatech.edu>
2023 Harrison Tsai
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/HyperplaneArrangements.m2
Copyright: 2008-2016 Graham Denham
2008-2016 Gregory G. Smith <ggsmith@mast.queensu.ca>
License: GPL-2+
Files: M2/Macaulay2/packages/IncidenceCorrespondenceCohomology.m2
Copyright: 2024 Annet Kyomuhangi <annet.kyomuhangi@gmail.com>
2024 Emanuela Marangone <emanuela.marangone@umanitoba.ca>
2024 Claudiu Raicu <craicu@nd.edu>
2024 Ethan Reed <ereed4@nd.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/IntegerProgramming.m2
Copyright: 2025 Mike Cummings <mike.cummings@uwaterloo.ca>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/IntegralClosure*
Copyright: 2020 David Eisenbud <de@msri.org>
2020 Mike Stillman <mike@math.cornell.edu>
2020 Amelia Taylor <originalbrickhouse@gmail.com>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/InvariantRing.m2
Copyright: 2014 Thomas Hawes <thomas.hawes@maths.ox.ac.uk>
License: GPL-2+
Files: M2/Macaulay2/packages/InverseSystems.m2
Copyright: 2018 David Eisenbud <de@msri.org>
2018 Mats Boij <boij@kth.se>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Jets*
Copyright: 2021 Federico Galetto <galetto.federico@gmail.com>
2021 Nicholas Iammarino <nickiammarino@gmail.com>
License: GPL-3+
Files: M2/Macaulay2/packages/JSON/test-parse.m2
Copyright: 2016 Nicolas Seriot
Comment: tests from JSON Parsing Test Suite
https://github.com/nst/JSONTestSuite
License: Expat
Files: M2/Macaulay2/packages/InvolutiveBases.m2
Copyright: 2009 Daniel Robertz <daniel@momo.math.rwth-aachen.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/K3Carpets.m2
M2/Macaulay2/packages/NumericalSemigroups.m2
Copyright: 2018, 2024 David Eisenbud <de@berkeley.edu>
2018, 2024 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/K3Surfaces.m2
Copyright: 2021 Michael Hoff <hahn@math.uni-sb.de>
2021 Giovanni Staglianò <giovanni.stagliano@unict.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Kronecker.m2
Copyright: 2010 Edward Carter <edward.carter@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/KustinMiller.m2
Copyright: 2011 Janko Boehm <boehm@math.uni-sb.de>
2011 Stavros Papadakis <papadak@math.ist.utl.pt>
License: GPL-2+
Files: M2/Macaulay2/packages/LatticePolytopes.m2
Copyright: 2015 Anders Lundman <alundman@math.kth.se>
2015 Gustav Sædén Ståhl <gss@math.kth.se>
License: public-domain
Files: M2/Macaulay2/packages/LexIdeals.m2
Copyright: 2008 Chris Francisco <chris@math.okstate.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/LieTypes.m2
Copyright: 2018 Dave Swinarski <dswinarski@fordham.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/LinearTruncations.m2
Copyright: 2021 Lauren Cranton Heller <lch@math.berkeley.edu>
2021 David Eisenbud <de@msri.org>
2021 Navid Nemati <Navid.Nemati@inria.fr>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/LocalRings*
Copyright: 2017 Mahrud Sayrafi <mahrud@berkeley.edu>
2008, 2017 Mike Stillman <mike@math.cornell.edu>
2008 David Eisenbud <de@msri.org>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/M0nbar.m2
Copyright: 2014 Han-Bom Moon <hmoon8@fordham.edu>
2014 David Swinarski <dswinarski@fordham.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/ov_hashtables.m2
M2/Macaulay2/packages/Macaulay2Doc/ov_lists.m2
qCopyright: 2018 Daniel R. Grayson
2018 Lily Silverstein
License: GPL-2+
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/accumulate-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/append-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/commonest-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/compositions-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/deepSplice-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/delete-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/demark-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/drop-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/first-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/flatten-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/fold-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/horizontalJoin-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/insert-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/merge-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/part-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/partitions-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/parts-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/polarize-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/prepend-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/separate-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/substring-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/uniform-doc.m2
Copyright: 2018 Lily Silverstein
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/all-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/any-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/apply-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/atan-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/cos-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/hilbertPolynomial-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/hilbertSeries-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/poincare-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/reduceHilbert-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/sin-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/sinh-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/tan-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/tanh-doc.m2
Copyright: L. Gold
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/applyKeys-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/applyPairs-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/applyValues-doc.m2
Copyright: L. Gold, Lily Silverstein
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/betti-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/koszul-doc.m2
Copyright: Giulio Caviglia, Manoj Kummini
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/binomial-doc.m2
Copyright: M2Fest2005 DE
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/char-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/source-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/target-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/transpose-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/ov_groebner_bases.m2
Copyright: Manoj Kummini
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/compress-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/diagonalMatrix-doc.m2
Copyright: 2005 M2fest
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/degreesRing-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/hilbertFunction-doc.m2
Copyright: L. Gold
Dan Grayson
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/frac-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/permanents-doc.m2
Copyright: 2005 M2Fest -- Irena
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/irreducibleCharacteristicSeries-doc.m2
Copyright: Decker
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/intersect-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/regularity-doc.m2
M2/Macaulay2/packages/PrimaryDecomposition/doc.m2
Copyright: Giulio
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/minors-doc.m2
Copyright: Jonah Blasiak, Manoj Kummini
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/pdim-doc.m2
Copyright: L.Gold, Josephine, Jonah
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/operators/remainder.m2
Copyright: Manoj Kummini, Michael E. Stillman
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/ov_monomial_orderings.m2
Copyright: Irena Peeva, Mike Stillman
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Markov.m2
Copyright: Luis Garcia
Mike Stillman
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/MatchingFields.m2
Copyright: 2022 Oliver Clarke <oliver.clarke@ed.ac.uk>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MatrixSchubert*
Copyright: 2023 Ayah Almousa <almou007@umn.edu>
2023 Sean Grate <sean.grate@auburn.edu>
2023 Daoji Huang <huan0664@umn.edu>
2023 Patricia Klein <pjklein@tamu.edu>
2023 Adam LaClair <alaclair@purdue.edu>
2023 Yuyuan Luo <lyuyuan@mit.edu>
2023 Joseph McDonough <mcdo1248@umn.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Matroids.m2
Copyright: 2020 Justin Chen <jchen@math.berkeley.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MinimalPrimes*
Copyright: 2014 Frank Moore <moorewf@wfu.ede>
2014 Mike Stillman <mike@math.cornell.edu>
2014 Franziska Hinkelmann
2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Mahrud Sayrafi <mahrud@umn.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Miura.m2
Copyright: 2017 Joe Suzuki <j-suzuki@sigmath.es.osaka-u.ac.jp>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MixedMultiplicity.m2
Copyright: 2020 Kriti Goel <kritigoel.maths@gmail.com>
2020 Sudeshna Roy <sudeshnaroy@math.iitb.ac.in>
2020 J. K. Verma <jkv@math.iitb.ac.in>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ModuleDeformations.m2
Copyright: 2007-2008 Bradford Hovinen <hovinen@math.uni-hannover.de>
License: GPL-2+
Files: M2/Macaulay2/packages/MonodromySolver*
Copyright: 2020 Timothy Duff <tduff3@gatech.edu>
2020 Cvetelina Hill <cvetelina.hill@math.gatech.edu>
2020 Anders Nedergaard Jensen <jensen@math.au.dk>
2020 Kisun Lee <klee669@math.gatech.edu>
2020 Anton Leykin <leykin@math.gatech.edu>
2020 Jeff Sommars <sommars1@uic.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MonomialAlgebras*
Copyright: 2013 David Eisenbud <de@msri.org>
2013 Janko Boehm <boehm@mathematik.uni-kl.de.
2013 Max Nitsche <nitsche@mis.mpg.de>
License: GPL-2+
Files: M2/Macaulay2/packages/MonomialIntegerPrograms*
Copyright: Lily Silverstein <lsilverstein@cpp.edu>
Jay White <jay.white@uky.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/Msolve*
Copyright: 2024 Martin Helmer <mhelmer@ncsu.edu>
2024 Mike Stillman <mike@math.cornell.edu>
2024 Anton Leykin <leykin@math.gatech.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/MultigradedBGG.m2
Copyright: 2023 Maya Banks <mdbanks@wisc.edu>
2023 Michael K. Brown <mkb0096@auburn.edu>
2023 Tara Gomes <gomes072@umn.edu>
2023 Prashanth Sridhar <pzs0094@auburn.edu>
2023 Eduardo Torres Davila <torre680@umn.edu>
2023 Sasha Zotine <18az45@queensu.ca>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MultigradedImplicitization.m2
Copyright: 2024 Joseph Cummings <josephcummings03@gmail.com>
2024 Benjamin Hollering <benhollering@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MultiGradedRationalMap.m2
Copyright: 2018 Yairon Cid Ruiz <ycid@ub.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MultiplicitySequence.m2
Copyright: 2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Youngsu Kim <youngsu.kim@csusb.edu>
2020 Jonathan Montaño <jmon@nmsu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/MultiplierIdeals.m2
Copyright: 2011-2013 Claudiu Raicu
2011-2013 Bart Snapp
2011-2013 Zach Teitler <zteitler@member.ams.org>
License: GPL-3+
Files: M2/Macaulay2/packages/MultiplierIdealsDim2.m2
Copyright: 2015 Ferran Dachs-Cadefau <ferran.dachscadefau@wis.kuleuven.be>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NAGtypes*
M2/Macaulay2/packages/undistributed-packages/NAGtools.m2
Copyright: 2013 Anton Leykin <leykin@math.gatech.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/Nauty.m2
M2/Macaulay2/packages/NautyGraphs.m2
M2/Macaulay2/packages/SimplicialDecomposability.m2
Copyright: 2010-2013 David W. Cook II <dwcook@eiu.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/NCAlgebra/*
M2/Macaulay2/packages/NCAlgebra.m2
Copyright: 2016 Frank Moore <moorewf@wfu.edu>
2016 Andrew Conner <abc12@stmarys-ca.edu>
2016 Courtney Gibbons <crgibbon@hamilton.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NoetherNormalization.m2
Copyright: 2010 Bart Snap <snapp@math.ohio-state.edu>
2010 Nathaniel Stapleton <nstaple2@math.uiuc.edu>
License: public-domain
Files: M2/Macaulay2/packages/NoetherianOperators.m2
Copyright: 2020 Robert Krone <krone@math.gatech.edu>
2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Marc Harkonen <harkonen@gatech.edu>
2020 Yairon Cid-Ruiz <Yairon.CidRuiz@UGent.be>
2020 Anton Leykin <anton.leykin@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NonminimalComplexes.m2
M2/Macaulay2/packages/RandomCanonicalCurves.m2
M2/Macaulay2/packages/RandomGenus14Curves.m2
Copyright: 2011 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
2011 Hans-Christian Graf v. Bothmer <bothmer@uni-math.gwdg.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Normaliz.m2
Copyright: 2009, 2010 Winfried Bruns
2009, 2010 Gesa Kaempf <gkaempf@uni-osnabrueck.de>
2011, 2012, 2015, 2016 Christof Soeger <csoeger@uni-osnabrueck.de>
License: GPL-2+
Files: M2/Macaulay2/packages/NormalToricVarieties*
M2/Macaulay2/packages/SpectralSequences.m2
Copyright: 2009-2020 Gregory G. Smith <ggsmith@mast.queensu.ca>
License: GPL-3+
Files: M2/Macaulay2/packages/NumericalAlgebraicGeometry*
Copyright: 2014 Anton Leykin <leykin@math.gatech.edu>
2014 Robert Krone <krone@math.gatech.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/NumericalCertification*
Copyright: 2018 Kisun Lee <klee669@gatech.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NumericalImplicitization.m2
Copyright: 2019 Justin Chen <jchen646@math.gatech.edu>
2018 Joe Kileel <jkileel@math.princeton.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NumericalLinearAlgebra.m2
Copyright: 2020 Robert Krone <krone@math.gatech.edu>
2020 Marc Harkonen <harkonen@gatech.edu>
2020 Anton Leykin <anton.leykin@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NumericalSchubertCalculus*
Copyright: 2017 Anton Leykin <leykin@math.gatech.edu>
2017 Abraham Martin del Campo <abraham.mc@cimat.mx>
2017 Frank Sottile <sottile@math.tamu.edu>
2017 Jan Verschelde <jan@math.uic.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/NumericSolutions.m2
Copyright: 2017 Laura Menini <menini@disp.uniroma2.it>
2017 Corrado Possieri <possieri@ing.uniroma2.it>
2017 Antonio Tornambe <tornambe@disp.uniroma2.it>
License: GPL-3+
Files: M2/Macaulay2/packages/OIGroebnerBases.m2
Copyright: 2023 Michael Morrow <michaelhmorrow98@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/OldPolyhedra.m2
Copyright: 2010 René Birkner <rbirkner@mi.fu-berlin.de>
License: GPL-3+
Files: M2/Macaulay2/packages/OldToricVectorBundles.m2
M2/Macaulay2/packages/ToricVectorBundles.m2
Copyright: 2010 René Birkner <rbirkner@math.fu-berlin.de>
2010 Nathan Owen Ilten <nilten@cs.uchicago.edu>
2010 Lars Petersen <petersen@math.fu-berlin.de>
License: GPL-3+
Files: M2/Macaulay2/packages/OpenMath*
M2/Macaulay2/packages/SCSCP*
Copyright: 2009 Dan Roozemond (TU Eindhoven, Netherlands)
<dan.roozemond@gmail.com>
License: Apache-2.0
Files: M2/Macaulay2/packages/Oscillators*
Copyright: 2025 John Cobb <jdc0173@auburn.edu>
2025 Hal Schenck <hks0015@auburn.edu>
2025 Michael E. Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/PackageCitations.m2
Copyright: 2017 Aaron Dall <aaronmdall@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/PencilsOfQuadrics.m2
Copyright: 2020 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
2020 David Eisenbud <de@msri.org>
2020 Yeongrak Kim <kim@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Permanents.m2
Copyright: 2014 Tair Akhmejanov ta328@cornell.edu
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Permutations*
Copyright: 2024 Sean Grate <sean.grate@auburn.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/PHCpack.m2
Copyright: 2013 Elizabeth Gross <egross7@uic.edu>
2013 Sonja Petrovic <Sonja.Petrovic@iit.edu>
2013 Jan Verschelde <jan@math.uic.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/PhylogeneticTrees.m2
Copyright: 2016 Hector Banos <hdbanoscervantes@alaksa.edu>
2016 Nathaniel Bushek <nbushek@alaska.edu>
2016 Ruth Davidson <ruth.davidson.math@gmail.com>
2016 Elizabeth Gross <elizabeth.gross@sjsu.edu>
2016 Pamela Harris <peh2@williams.edu>
2016 Robert Krone <rckrone@gmail.com>
2016 Colby Long <celong2@ncsu.edu>
2016 AJ Stewart <stewaral@seattleu.edu>
2016 Robert Walker <robmarsw@umich.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/PieriMaps.m2
Copyright: 2008, 2009 Steven V Sam <ssam@math.mit.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/Points.m2
Copyright: 2008 Mike Stillman <mike@math.cornell.edu>
2008 Gregory G. Smith <ggsmith@mast.queensu.ca>
2008 Stein A. Strømme <stromme@math.uib.no>
2016 David Eisenbud <de@msri.org>
2018 Federico Galetto <galetto.federico@gmail.com>
2018 Joseph W. Skelton <jskelton@tulane.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/Polyhedra*
Copyright: 2010 René Birkner <rbirkner@mi.fu-berlin.de>
License: GPL-3+
Files: M2/Macaulay2/packages/Polymake.m2
Copyright: 2008 Josephine Yu jyu@math.mit.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/PolyominoIdeals.m2
Copyright: 2022 Carmelo Cisto <ccisto@unime.it>
2022 Francesco Navarra <fnavarra@unime.it>
2022 Rizwan Jahangir <rizwan@sabanciuniv.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Posets.m2
Copyright: 2011-2014 David Cook II <dwcook@eiu.edu>
2011-2014 Sonja Mapes <smapes1@nd.edu>
2011-2014 Gwyn Whieldon <whieldon@hood.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/PositivityToricBundles.m2
Copyright: 2020 Andreas Hochenegger <andreas.hochenegger@sns.it>
License: GPL-3+
Files: M2/Macaulay2/packages/PseudomonomialPrimaryDecomposition.m2
Copyright: 2022 Alan A. Veliz-Cuba <avelizcuba1@udayton.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Pullback.m2
Copyright: 2018 Drew Ellingson
2018 Karl Schwede
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/PushForward.m2
Copyright: 2015 Claudiu Raicu <craicu@nd.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Python.m2
Copyright: 2021 Daniel R. Grayson <danielrichardgrayson@gmail.com>
2021 Doug Torrance <dtorrance@piedmont.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/QuadraticIdealExamplesByRoos.m2
Copyright: 2023 David Eisenbud <de@msri.org>
2023 Michael Perlman <mperlman@umn.edu>
2023 Ritvik Ramkumar <ritvikr@cornell.edu>
2023 Deepak Sireeshan <dsbx7@umsystem.edu>
2023 Aleksandra Sobieska <asobieska@wisc.edu>
2023 Teresa Yu <twyu@umich.edu>
2023 Jacob Zoromski <jzoromsk@nd.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Quasidegrees.m2
Copyright: 2015 Roberto Barrera <rbarrera@math.tamu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/QuaternaryQuartics*
Copyright: 2021 Gregorz Kapustka
2021 Michal Kapustka
2021 Kristian Ranestad
2021 Hal Schenck
2021 Mike Stillman <mike@math.cornell.edu>
2021 Beihui Yuan
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/QuillenSuslin.m2
Copyright: 2013 Brett Barwick <bbarwick@uscupstate.edu>
2013 Branden Stone <bstone@bard.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/RandomComplexes.m2
M2/Macaulay2/packages/SVDComplexes.m2
Copyright: 2018 Frank Schreyer <schreyer@math.uni-sb.de>
2018 Michael E. Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/RandomCurves.m2
M2/Macaulay2/packages/RandomPlaneCurves.m2
M2/Macaulay2/packages/RandomSpaceCurves.m2
Copyright: 2011 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
2011 Hans-Christian Graf v. Bothmer <bothmer@uni-math.gwdg.de>
2011 Florian Geiss <fg@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RandomCurvesOverVerySmallFiniteFields.m2
Copyright: 2018 Christian Bopp <bopp@math.uni-sb.de>
2011 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RandomIdeals.m2
M2/Macaulay2/packages/ResidualIntersections.m2
Copyright: 2016 Katie Ansaldi <kansaldi@gmail.com>
2016 David Eisenbud <de@msri.org>
2016 Robert Krone <rckrone@gmail.com>
2016 Jay Yang <jkelleyy@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RandomMonomialIdeals.m2
Copyright: 2019 Sonja Petrovic <sonja.petrovic@iit.edu>
2019 Despina Stasi <stasdes@iit.edu>
2019 Dane Wilburne <dwilburn@hawk.iit.edu>
2019 Tanner Zielinski <tzielin1@hawk.iit.edu>
2019 Daniel Kosmas <dkosmas@hawk.iit.edu>
2019 Parker Joncus <pjoncus@hawk.iit.edu>
2019 Richard Osborn <rosborn@hawk.iit.edu>
2019 Monica Yun <myun1@hawk.iit.edu>
2019 Genevieve Hummel <ghummel1@hawk.iit.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RandomObjects.m2
Copyright: 2011 Hans-Christian Graf v. Bothmer <bothmer@uni-math.gwdg.de>
2011 Florian Geiss <fg@math.uni-sb.de>
2011 Daniel R. Grayson <dan@math.uiuc.edu>
2011 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/RandomPoints.m2
Copyright: 2021 Sankhaneel Bisui <sbisu@tulane.edu>
2021 Thai Nguyen <tnguyen11@tulane.edu>
2021 Karl Schwede <schwede@math.utah.edu>
2021 Sarasij Maitra <sm3vg@virginia.edu>
2021 Zhan Jiang <zoeng@umich.edu>
2021 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RationalMaps.m2
Copyright: 2019 Karl Schwede <kschwede@gmail.com>
2019 Daniel Smolkin <smolkin@math.utah.edu>
2019 S. Hamid Hassanzadeh <hassanzadeh.ufrj@gmail.com>
2019 C.J. Bott <cjamesbott@gmail.com>
License: public-domain
Files: M2/Macaulay2/packages/RationalPoints.m2
Copyright: 2009 Nathaniel Stapleton <nat.j.stapleton@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/RationalPoints2.m2
Copyright: 2021 Jieao Song <jieao.song@imj-prg.fr>
License: GPL-2+
Files: M2/Macaulay2/packages/ReactionNetworks*
Copyright: 2016 Cvetelina Hill <cvetelina.hill@math.gatech.edu>
2016 Timothy Duff <timothy.duff@ncf.edu>
2016 Kisun Lee <klee669@math.gatech.edu>
2016 Anton Leykin <leykin@math.gatech.edu>
2018 Alexandru Iosif <alexandru.iosif@ovgu.de>
2018 Michael Adamer <adamer@maths.ox.ac.uk>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/RealRoots.m2
Copyright: 2020 Jordy Lopez <jordy.lopez@tamu.edu>
2020 Kelly Maluccio <kmaluccio@tamu.edu>
2020 Frank Sottile <sottile@tamu.edu>
2020 Thomas Yahl <Thomasjyahl@tamu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ReesAlgebra.m2
Copyright: 2006, 2008, 2017, 2019 David Eisenbud <de@msri.org>
2006, 2008, 2017, 2019 Amelia Taylor <originalbrickhouse@gmail.com>
2006, 2008, 2017, 2019 Sorin Popescu <sorin@math.sunysb.edu>
2006, 2008, 2017, 2019 Michael E. Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/RelativeCanonicalResolution.m2
Copyright: 2020 Christian Bopp <bopp@math.uni-sb.de>
2020 Michael Hoff <hahn@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ResLengthThree.m2
Copyright: 2020 Lars Winther Christensen <lars.w.christensen@ttu.edu>
2020 Luigi Ferraro <lferraro@ttu.edu>
2020 Francesca Gandini <fra.gandi.phd@gmail.com>
2020 Frank Moore <moorewf@wfu.edu>
2020 Oana Veliche <o.veliche@northeastern.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/ResolutionsOfStanleyReisnerRings.m2
Copyright: 2020 Ashleigh Adams <adams869@umn.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/RunExternalM2.m2
M2/Macaulay2/packages/VectorFields.m2
Copyright: 2016 Brian Pike <bapike@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/SagbiGbDetection.m2
Copyright: 2023 Viktoriia Borovik <vborovik@uni-osnabrueck.de>
2023 Timothy Duff <timduff@uw.edu>
2023 Elima Shehu <shehu@mis.mpg.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Saturation*
Copyright: 2020 Justin Chen <justin.chen@math.gatech.edu>
2020 Mahrud Sayrafi <mahrud@umn.edu>
2020 Mike Stillman <mike@math.cornell.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/SCMAlgebras.m2
Copyright: 2024 Ernesto Lax <erlax@unime.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Schubert2*
Copyright: 2013 Daniel R. Grayson <dan@math.uiuc.edu>
2013 Michael E. Stillman <mike@math.cornell.edu>
2013 Stein A. Strømme <stromme@math.uib.no>
2013 David Eisenbud <de@msri.org>
2013 Charley Crissman <charleyc@math.berkeley.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/SchurComplexes.m2
Copyright: 2019 Michael K. Brown <mkbrown5@wisc.edu>
2019 Amy Huang <hhuang235@math.wisc.edu>
2019 Robert Laudone <robert.laudone@gmail.com>
2019 Michael Perlman <mperlman@nd.edu>
2019 Claudiu Raicu <craicu@nd.edu>
2019 Steven V. Sam <ssam@sd.edu>
2019 Joao Pedro Santos <jsantos3@nd.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SchurFunctors*
Copyright: 2008 Michael E. Stillman <mike@math.cornell.edu>
2008 Anton Leykin
2008 Mauricio Velasco
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/SchurRings.m2
Copyright: 2007, 2011 Michael Stillman <mike@math.cornell.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/SchurVeronese*
Copyright: 2019 Juliette Bruce <jebruce2@wisc.edu>
2019 Daniel Erman <derman@math.wisc.edu>
2019 Steve Goldstein <sgoldstein@wisc.edu>
2019 Jay Yang <jkyang@umn.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/SectionRing.m2
Copyright: 2016 Andrew Bydlon <thelongdivider@gmail.com>
License: public-domain
Files: M2/Macaulay2/packages/SegreClasses.m2
Copyright: 2018 Martin Helmer <m.helmer@math.ku.dk>
2018 Corey Harris <Corey.Harris@mis.mpg.de>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SemidefiniteProgramming*
M2/Macaulay2/packages/SumsOfSquares*
Copyright: 2018, 2019 Diego Cifuentes <diegcif@mit.edu>
2018, 2019 Thomas Kahle <thomas.kahle@ovgu.de>
2018, 2019 Pablo A. Parrilo <parrilo@mit.edu>
2018, 2019 Helfried Peyrl <peyrl@control.ee.ethz.ch>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Seminormalization.m2
Copyright: 2019 Karl Schwede <schwede@math.utah.edu>
2019 Bernard Serbinowski <bserbinowski@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SimpleDoc*
Copyright: 2020 Daniel R. Grayson <dan@math.uiuc.edu>
2020 Mike Stillman <mike@math.cornell.edu>
2020 Mahrud Sayrafi <mahrud@umn.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/SimplicialComplexes.m2
Copyright: 2006, 2010 Sorin Popescu <sorin@math.sunysb.edu>
2006, 2010 Gregory G. Smith <ggsmith@mast.queensu.ca>
2006, 2010 Mike Stillman <mike@math.cornell.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/SimplicialPosets.m2
Copyright: 2019 Nathan Nichols <nicho997@umn.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/SlackIdeals.m2
Copyright: 2020 Amy Wiebe <w.amy.math@gmail.com>
2020 Antonio Macchia <macchia.antonello@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SLnEquivariantMatrices.m2
Copyright: 2017-2018 Paolo Lella <paolo.lella@polimi.it>
License: GPL-2+
Files: M2/Macaulay2/packages/SLPexpressions*
Copyright: 2019 Anton Leykin <leykin@math.gatech.edu>
2019 Timothy Duff <tduff3@gatech.edu>
2019 Justin Chen <jchen646@math.gatech.edu>
2019 Mike Stillman <mike@math.cornell.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/SpaceCurves.m2
Copyright: 2018 Frank Schreyer <schreyer@math.uni-sb.de>
2018 Mike Stillman <mike@math.cornell.edu>
2018 Mengyuan Zhang <myzhang@berkeley.edu>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/SpechtModule.m2
Copyright: 2019 Jonathan Niño <ja.nino937@uniandes.edu.co>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/StatGraphs.m2
Copyright: 2020 Carlos Amendola <carlos.amendola@tum.de>
2020 Luis David Garcia Puente <lgarcia@shsu.edu>
2020 Roser Homs Pons <roser.homs@tum.de>
2020 Olga Kuznetsova <kuznetsova.olga@gmail.com>
2020 Harshit J Motwani <harshitmotwani2015@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/StronglyStableIdeals.m2
Copyright: 2018 Davide Alberelli <davide.alberelli@gmail.com>
2018 Paolo Lella <paolo.lella@polimi.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SuperLinearAlgebra.m2
Copyright: 2021 Fereshteh Bahadorykhalily <f.bahadori.khalili@gmail.com>
2021 Fatemeh Tarashi Kashani <tarashikashanifatemeh@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SwitchingFields.m2
Copyright: 2020 Zhan Jiang <zoeng@umich.edu>
2020 Sarasij Maitra <sm3vg@virginia.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SymbolicPowers.m2
Copyright: 2019 Eloisa Grifo <grifo@umich.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SymmetricPolynomials.m2
M2/Macaulay2/packages/undistributed-packages/ToricCohomology.m2
Copyright: 2009 Alexandra Seceleanu
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/TangentCone.m2
Copyright: 2006 Craig Huneke <huneke@math.ku.edu>
2006 David Eisenbud <de@msri.org>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/TateOnProducts.m2
Copyright: 2020 Daniel Erman <derman@math.wisc.edu>
2020 David Eisenbud <de@msri.org>
2020 Frank-Olaf Schreyer <schreyer@math.uni-sb.de>
2020 Michael E. Stillman <mike@math.cornell.edu>
2020 Yeongrak Kim <kim@math.uni-sb.de>
Comment: See Comment at the top of this file.
License: GPL-2+ and public-domain
Files: M2/Macaulay2/packages/TensorComplexes.m2
Copyright: 2011 David Eisenbud <de@msri.org>
2011 Daniel Erman <derman@math.stanford.edu>
2011 Gregory G. Smith <ggsmith@mast.queensu.ca>
2011 Dumitru Stamate <dumitru.stamate@fmi.unibuc.ro>
License: GPL-3+
Files: M2/Macaulay2/packages/TerraciniLoci.m2
Copyright: 2023 Francesco Galuppi <francesco.galuppi@impan.pl>
2023 Pierpaola Santarsiero <pierpaola.santarsiero@uni-osnabrueck.de>
2023 Doug Torrance <dtorrance@piedmont.edu>
2023 Ettore Teixeira Turatti <ettore.t.turatti@uit.no>
License: GPL-2+
Files: M2/Macaulay2/packages/TestIdeals*
Copyright: 2019 Erin Bela <ebela@nd.edu>
2019 Alberto F. Boix <albertof.boix@gmail.com>
2019 Juliette Bruce <juliette.bruce@math.wisc.edu>
2019 Drew Ellingson <drewtell@umich.edu>
2019 Daniel Hernandez <hernandez@ku.edu>
2019 Zhibek Kadyrsizova <zhikadyr@umich.edu>
2019 Mordechai Katzman <m.katzman@sheffield.ac.uk>
2019 Sara Malec <malec@hood.edu>
2019 Matthew Mastroeni <mmastro@okstate.edu>
2019 Maral Mostafazadehfard <maralmostafazadehfard@gmail.com>
2019 Marcus Robinson <robinson@math.utah.edu>
2019 Karl Schwede <schwede@math.utah.edu>
2019 Dan Smolkin <smolkin@math.utah.edu>
2019 Pedro Teixeira <pteixeir@knox.edu>
2019 Emily Witt <witt@ku.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ThinSincereQuivers.m2
Copyright: 2019 Mary Barker <marybarker@wustl.edu>
2019 Patricio Gallardo <pgallard@ucr.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ThreadedGB.m2
Copyright: 2020 Sonja Petrovic <sonja.petrovic@iit.edu>
2020 Sara Jamshidi Zelenberg <szelenberg@mx.lakeforest.edu>
2020 Tanner Zielinski <tzielin1@hawk.iit.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/TorAlgebra.m2
Copyright: 2018 Lars Winther Christensen <lars.w.christensen@ttu.edu>
2018 Oana Veliche <o.veliche@northeastern.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ToricHigherDirectImages.m2
Copyright: 2025 Sasha Zotine <sashahbc@gmail.com>
License: GPL-3+
Files: M2/Macaulay2/packages/ToricInvariants.m2
M2/Macaulay2/packages/WhitneyStratifications.m2
Copyright: 2018, 2022 Martin Helmer <mhelmer@ncsu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/ToricTopology.m2
Copyright: 2015 Alvise Trevisan <a.trevisan@enpicom.com>
2015 Alexander I. Suciu <a.suciu@neu.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/TriangularSets*
Copyright: 2017 Diego Cifuentes <diegcif@mit.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/Triplets.m2
Copyright: 2013 Gunnar Floystad <nmagf@uib.no>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Tropical*
Copyright: 2019 Carlos Amendola <carlos.amendola@tum.de>
2019 Kathlen Kohn <kathlen.korn@gmail.com>
2019 Sara Lamboglia <lamboglia@math.uni-frankfurt.de>
2019 Diane Maclagan <D.Maclagan@warwick.ac.uk>
2019 Benjamin Smith <benjamin.smith@qmul.ac.uk>
2019 Jeff Sommars <sommars1@uic.edu>
2019 Paolo Tripoli <paolo.tripoli@nottingham.ac.uk>
2019 Magdalena Zajaczkowska <Magdalena.A.Zajaczkowska@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/TropicalToric*
Copyright: 2022 Alessio Borzì <Alessio.Borzi@warwick.ac.uk>
Comment: License info from https://github.com/AlessioBorzi/TropicalToric
License: GPL-3+
Files: M2/Macaulay2/packages/TSpreadIdeals.m2
Copyright: 2021 Luca Amata <lamata@unime.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/undistributed-packages/FrobeniusMultiplicities.m2
M2/Macaulay2/packages/undistributed-packages/Functoriality.m2
Copyright: 2009 Jason G McCullough <jmccullo@math.ucr.edu>
License: GPL-2+
Files: M2/Macaulay2/packages/undistributed-packages/Polyhedra2.m2
M2/Macaulay2/packages/undistributed-packages/PolyhedralObjects.m2
Copyright: 2012 Nathan Ilten <nilten@math.berkeley.edu>
2012 Josephine Yu
2012 Qingchun Ren
2010 Rene Birker
License: GPL-3+
Files: M2/Macaulay2/packages/undistributed-packages/PolymakeInterface.m2
Copyright: 2012 Josephine Yu <josephine.yu@math.gatech.edu>
2012 Nathan Ilten <nilten@math.berkeley.edu>
2012 Qingchun Ren <qingchun.ren@gmail.com>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SubalgebraBases*
Copyright: 2021 Michael Burr <burr2@clemson.edu>
2021 Oliver Clarke <oc17371@bristol.ac.uk>
2021 Timothy Duff <tduff3@gatech.edu>
2021 Jackson Leaman
2021 Nathan Nichols <nathannichols454@gmail.com>
2021 Elise Walker <elise.walker@tamu.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/SubalgebraBases/Old-SubalgebraBases/SubalgebraBases/sagbieng.m2
M2/Macaulay2/packages/SubalgebraBases/Old-SubalgebraBases/SubalgebraBases/sagbitop.m2
Copyright: 1997 Mike Stillman <mike@math.cornell.edu>
1997 Harry Tsai
License: GPL-2+
Files: M2/Macaulay2/packages/Valuations.m2
Copyright: 2023 Michael Burr <burr2@clemson.edu>
2023 Colin Alstad <calstad@clemson.edu>
2023 Michael Byrd <mbyrd6@clemson.edu>
2023 Ethan Partida <ethan_partida@brown.edu>
2023 Shelby Cox <spcox@umich.edu>
2023 Courtney George <courtney.george@uky.edu>
2023 Oliver Clarke <oliver.clarke@ed.ac.uk>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Varieties*
Copyright: 2024 Devlin Mallory <malloryd@math.utah.edu>
2024 Ritvik Ramkumar <ritvikr@cornell.edu>
2024 Mahrud Sayrafi <mahrud@umn.edu>
2024 Gregory G. Smith <ggsmith@mast.queensu.ca>
2024 Keller VandeBogert <kvandebo@nd.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/codim-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/dim-doc.m2
M2/Macaulay2/packages/Varieties/genera-doc.m2
M2/Macaulay2/packages/Varieties/genus-doc.m2
Copyright: Decker, Popescu
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Macaulay2Doc/functions/HH-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/cohomology-doc.m2
M2/Macaulay2/packages/Varieties/euler-doc.m2
Copyright: Sorin Popescu
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/VersalDeformations.m2
Copyright: 2020 Nathan Owen Ilten <nilten@math.berkeley.edu>
License: GPL-3+
Files: M2/Macaulay2/packages/VirtualResolutions*
Copyright: 2018-2020 Ayah Almousa <aka66@cornell.edu>
2018-2020 Christine Berkesch <cberkesc@umn.edu>
2018-2020 Juliette Bruce <jebruce2@wisc.edu>
2018-2020 David Eisenbud <de@msri.org>
2018-2020 Michael Loper <loper012@umn.edu>
2018-2020 Mahrud Sayrafi <mahrud@umn.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/Visualize*
Copyright: 2017 Brett Barwick <bbarwick@uscupstate.edu>
2017 Thomas Enkosky <tomenk@bu.edu>
2017 Branden Stone <bstone@adelphi.edu>
2017 Jim Vallandingham <vlandham@gmail.com>
License: GPL-2+
Files: M2/Macaulay2/packages/VNumber.m2
Copyright: 2023 Antonino Ficarra <antficarra@unime.it>
2023 Emanuele Sgroi <emasgroi@unime.it>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/packages/PrimaryDecomposition/associatedPrimes-test.m2
Copyright: 2002 Jessica Sidman
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/tests/normal/CSM.test.m2
Copyright: 2002 Paolo Aluffi
License: freely-used-if-properly-acknowledged
This code can be freely used, provided use is properly acknowledged
Files: M2/Macaulay2/tests/normal/ext2.m2
Copyright: Ezra Miller <enmiller@math.berkeley.edu>
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/tests/normal/ext3.m2
Copyright: Hal Schenck
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/tests/normal/groupcoh.m2
Copyright: Sarah Wasserman
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/tests/normal/monideal2.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/det-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/genericMatrix-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/genericSkewMatrix-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/genericSymmetricMatrix-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/ideal-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isAffineRing-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isCommutative-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isField-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isFreeModule-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isIdeal-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isModule-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isMonomialIdeal-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isPolynomialRing-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isPrime-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isQuotientModule-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isQuotientRing-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isRing-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isSquareFree-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isSubmodule-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/isUnit-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/standardPairs-doc.m2
M2/Macaulay2/packages/Macaulay2Doc/functions/vars-doc.m2
Copyright: Gregory G. Smith
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/Macaulay2/tests/rationality/*.m2
Copyright: Christian Boehning
Hans-Christian Graf v. Bothmer
Comment: See Comment at the top of this file.
License: public-domain
Files: M2/usr-build/pkg.m4
Copyright: 2004 Scott James Remnant <scott@netsplit.com>.
2012-2015 Dan Nicholson <dbn.lists@gmail.com>
License: GPL-2+ with autoconf exception
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: CECILL-B
CeCILL-B FREE SOFTWARE LICENSE AGREEMENT
.
Notice
.
This Agreement is a Free Software license agreement that is the result
of discussions between its authors in order to ensure compliance with
the two main principles guiding its drafting:
.
* firstly, compliance with the principles governing the distribution
of Free Software: access to source code, broad rights granted to
users,
* secondly, the election of a governing law, French law, with which
it is conformant, both as regards the law of torts and
intellectual property law, and the protection that it offers to
both authors and holders of the economic rights over software.
.
The authors of the CeCILL-B (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])
license are:
.
Commissariat à l'Energie Atomique - CEA, a public scientific, technical
and industrial research establishment, having its principal place of
business at 25 rue Leblanc, immeuble Le Ponant D, 75015 Paris, France.
.
Centre National de la Recherche Scientifique - CNRS, a public scientific
and technological establishment, having its principal place of business
at 3 rue Michel-Ange, 75794 Paris cedex 16, France.
.
Institut National de Recherche en Informatique et en Automatique -
INRIA, a public scientific and technological establishment, having its
principal place of business at Domaine de Voluceau, Rocquencourt, BP
105, 78153 Le Chesnay cedex, France.
.
Preamble
.
This Agreement is an open source software license intended to give users
significant freedom to modify and redistribute the software licensed
hereunder.
.
The exercising of this freedom is conditional upon a strong obligation
of giving credits for everybody that distributes a software
incorporating a software ruled by the current license so as all
contributions to be properly identified and acknowledged.
.
In consideration of access to the source code and the rights to copy,
modify and redistribute granted by the license, users are provided only
with a limited warranty and the software's author, the holder of the
economic rights, and the successive licensors only have limited liability.
.
In this respect, the risks associated with loading, using, modifying
and/or developing or reproducing the software by the user are brought to
the user's attention, given its Free Software status, which may make it
complicated to use, with the result that its use is reserved for
developers and experienced professionals having in-depth computer
knowledge. Users are therefore encouraged to load and test the
suitability of the software as regards their requirements in conditions
enabling the security of their systems and/or data to be ensured and,
more generally, to use and operate it in the same conditions of
security. This Agreement may be freely reproduced and published,
provided it is not altered, and that no provisions are either added or
removed herefrom.
.
This Agreement may apply to any or all software for which the holder of
the economic rights decides to submit the use thereof to its provisions.
.
Article 1 - DEFINITIONS
.
For the purpose of this Agreement, when the following expressions
commence with a capital letter, they shall have the following meaning:
.
Agreement: means this license agreement, and its possible subsequent
versions and annexes.
.
Software: means the software in its Object Code and/or Source Code form
and, where applicable, its documentation, "as is" when the Licensee
accepts the Agreement.
.
Initial Software: means the Software in its Source Code and possibly its
Object Code form and, where applicable, its documentation, "as is" when
it is first distributed under the terms and conditions of the Agreement.
.
Modified Software: means the Software modified by at least one
Contribution.
.
Source Code: means all the Software's instructions and program lines to
which access is required so as to modify the Software.
.
Object Code: means the binary files originating from the compilation of
the Source Code.
.
Holder: means the holder(s) of the economic rights over the Initial
Software.
.
Licensee: means the Software user(s) having accepted the Agreement.
.
Contributor: means a Licensee having made at least one Contribution.
.
Licensor: means the Holder, or any other individual or legal entity, who
distributes the Software under the Agreement.
.
Contribution: means any or all modifications, corrections, translations,
adaptations and/or new functions integrated into the Software by any or
all Contributors, as well as any or all Internal Modules.
.
Module: means a set of sources files including their documentation that
enables supplementary functions or services in addition to those offered
by the Software.
.
External Module: means any or all Modules, not derived from the
Software, so that this Module and the Software run in separate address
spaces, with one calling the other when they are run.
.
Internal Module: means any or all Module, connected to the Software so
that they both execute in the same address space.
.
Parties: mean both the Licensee and the Licensor.
.
These expressions may be used both in singular and plural form.
.
Article 2 - PURPOSE
.
The purpose of the Agreement is the grant by the Licensor to the
Licensee of a non-exclusive, transferable and worldwide license for the
Software as set forth in Article 5 hereinafter for the whole term of the
protection granted by the rights over said Software.
.
Article 3 - ACCEPTANCE
.
3.1 The Licensee shall be deemed as having accepted the terms and
conditions of this Agreement upon the occurrence of the first of the
following events:
.
* (i) loading the Software by any or all means, notably, by
downloading from a remote server, or by loading from a physical
medium;
* (ii) the first time the Licensee exercises any of the rights
granted hereunder.
.
3.2 One copy of the Agreement, containing a notice relating to the
characteristics of the Software, to the limited warranty, and to the
fact that its use is restricted to experienced users has been provided
to the Licensee prior to its acceptance as set forth in Article 3.1
hereinabove, and the Licensee hereby acknowledges that it has read and
understood it.
.
Article 4 - EFFECTIVE DATE AND TERM
.
4.1 EFFECTIVE DATE
.
The Agreement shall become effective on the date when it is accepted by
the Licensee as set forth in Article 3.1.
.
4.2 TERM
.
The Agreement shall remain in force for the entire legal term of
protection of the economic rights over the Software.
.
Article 5 - SCOPE OF RIGHTS GRANTED
.
The Licensor hereby grants to the Licensee, who accepts, the following
rights over the Software for any or all use, and for the term of the
Agreement, on the basis of the terms and conditions set forth hereinafter.
.
Besides, if the Licensor owns or comes to own one or more patents
protecting all or part of the functions of the Software or of its
components, the Licensor undertakes not to enforce the rights granted by
these patents against successive Licensees using, exploiting or
modifying the Software. If these patents are transferred, the Licensor
undertakes to have the transferees subscribe to the obligations set
forth in this paragraph.
.
5.1 RIGHT OF USE
.
The Licensee is authorized to use the Software, without any limitation
as to its fields of application, with it being hereinafter specified
that this comprises:
.
1. permanent or temporary reproduction of all or part of the Software
by any or all means and in any or all form.
.
2. loading, displaying, running, or storing the Software on any or
all medium.
.
3. entitlement to observe, study or test its operation so as to
determine the ideas and principles behind any or all constituent
elements of said Software. This shall apply when the Licensee
carries out any or all loading, displaying, running, transmission
or storage operation as regards the Software, that it is entitled
to carry out hereunder.
.
5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS
.
The right to make Contributions includes the right to translate, adapt,
arrange, or make any or all modifications to the Software, and the right
to reproduce the resulting software.
.
The Licensee is authorized to make any or all Contributions to the
Software provided that it includes an explicit notice that it is the
author of said Contribution and indicates the date of the creation thereof.
.
5.3 RIGHT OF DISTRIBUTION
.
In particular, the right of distribution includes the right to publish,
transmit and communicate the Software to the general public on any or
all medium, and by any or all means, and the right to market, either in
consideration of a fee, or free of charge, one or more copies of the
Software by any means.
.
The Licensee is further authorized to distribute copies of the modified
or unmodified Software to third parties according to the terms and
conditions set forth hereinafter.
.
5.3.1 DISTRIBUTION OF SOFTWARE WITHOUT MODIFICATION
.
The Licensee is authorized to distribute true copies of the Software in
Source Code or Object Code form, provided that said distribution
complies with all the provisions of the Agreement and is accompanied by:
.
1. a copy of the Agreement,
.
2. a notice relating to the limitation of both the Licensor's
warranty and liability as set forth in Articles 8 and 9,
.
and that, in the event that only the Object Code of the Software is
redistributed, the Licensee allows effective access to the full Source
Code of the Software at a minimum during the entire period of its
distribution of the Software, it being understood that the additional
cost of acquiring the Source Code shall not exceed the cost of
transferring the data.
.
5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE
.
If the Licensee makes any Contribution to the Software, the resulting
Modified Software may be distributed under a license agreement other
than this Agreement subject to compliance with the provisions of Article
5.3.4.
.
5.3.3 DISTRIBUTION OF EXTERNAL MODULES
.
When the Licensee has developed an External Module, the terms and
conditions of this Agreement do not apply to said External Module, that
may be distributed under a separate license agreement.
.
5.3.4 CREDITS
.
Any Licensee who may distribute a Modified Software hereby expressly
agrees to:
.
1. indicate in the related documentation that it is based on the
Software licensed hereunder, and reproduce the intellectual
property notice for the Software,
.
2. ensure that written indications of the Software intended use,
intellectual property notice and license hereunder are included in
easily accessible format from the Modified Software interface,
.
3. mention, on a freely accessible website describing the Modified
Software, at least throughout the distribution term thereof, that
it is based on the Software licensed hereunder, and reproduce the
Software intellectual property notice,
.
4. where it is distributed to a third party that may distribute a
Modified Software without having to make its source code
available, make its best efforts to ensure that said third party
agrees to comply with the obligations set forth in this Article .
.
If the Software, whether or not modified, is distributed with an
External Module designed for use in connection with the Software, the
Licensee shall submit said External Module to the foregoing obligations.
.
5.3.5 COMPATIBILITY WITH THE CeCILL AND CeCILL-C LICENSES
.
Where a Modified Software contains a Contribution subject to the CeCILL
license, the provisions set forth in Article 5.3.4 shall be optional.
.
A Modified Software may be distributed under the CeCILL-C license. In
such a case the provisions set forth in Article 5.3.4 shall be optional.
.
Article 6 - INTELLECTUAL PROPERTY
.
6.1 OVER THE INITIAL SOFTWARE
.
The Holder owns the economic rights over the Initial Software. Any or
all use of the Initial Software is subject to compliance with the terms
and conditions under which the Holder has elected to distribute its work
and no one shall be entitled to modify the terms and conditions for the
distribution of said Initial Software.
.
The Holder undertakes that the Initial Software will remain ruled at
least by this Agreement, for the duration set forth in Article 4.2.
.
6.2 OVER THE CONTRIBUTIONS
.
The Licensee who develops a Contribution is the owner of the
intellectual property rights over this Contribution as defined by
applicable law.
.
6.3 OVER THE EXTERNAL MODULES
.
The Licensee who develops an External Module is the owner of the
intellectual property rights over this External Module as defined by
applicable law and is free to choose the type of agreement that shall
govern its distribution.
.
6.4 JOINT PROVISIONS
.
The Licensee expressly undertakes:
.
1. not to remove, or modify, in any manner, the intellectual property
notices attached to the Software;
.
2. to reproduce said notices, in an identical manner, in the copies
of the Software modified or not.
.
The Licensee undertakes not to directly or indirectly infringe the
intellectual property rights of the Holder and/or Contributors on the
Software and to take, where applicable, vis-�-vis its staff, any and all
measures required to ensure respect of said intellectual property rights
of the Holder and/or Contributors.
.
Article 7 - RELATED SERVICES
.
7.1 Under no circumstances shall the Agreement oblige the Licensor to
provide technical assistance or maintenance services for the Software.
.
However, the Licensor is entitled to offer this type of services. The
terms and conditions of such technical assistance, and/or such
maintenance, shall be set forth in a separate instrument. Only the
Licensor offering said maintenance and/or technical assistance services
shall incur liability therefor.
.
7.2 Similarly, any Licensor is entitled to offer to its licensees, under
its sole responsibility, a warranty, that shall only be binding upon
itself, for the redistribution of the Software and/or the Modified
Software, under terms and conditions that it is free to decide. Said
warranty, and the financial terms and conditions of its application,
shall be subject of a separate instrument executed between the Licensor
and the Licensee.
.
Article 8 - LIABILITY
.
8.1 Subject to the provisions of Article 8.2, the Licensee shall be
entitled to claim compensation for any direct loss it may have suffered
from the Software as a result of a fault on the part of the relevant
Licensor, subject to providing evidence thereof.
.
8.2 The Licensor's liability is limited to the commitments made under
this Agreement and shall not be incurred as a result of in particular:
(i) loss due the Licensee's total or partial failure to fulfill its
obligations, (ii) direct or consequential loss that is suffered by the
Licensee due to the use or performance of the Software, and (iii) more
generally, any consequential loss. In particular the Parties expressly
agree that any or all pecuniary or business loss (i.e. loss of data,
loss of profits, operating loss, loss of customers or orders,
opportunity cost, any disturbance to business activities) or any or all
legal proceedings instituted against the Licensee by a third party,
shall constitute consequential loss and shall not provide entitlement to
any or all compensation from the Licensor.
.
Article 9 - WARRANTY
.
9.1 The Licensee acknowledges that the scientific and technical
state-of-the-art when the Software was distributed did not enable all
possible uses to be tested and verified, nor for the presence of
possible defects to be detected. In this respect, the Licensee's
attention has been drawn to the risks associated with loading, using,
modifying and/or developing and reproducing the Software which are
reserved for experienced users.
.
The Licensee shall be responsible for verifying, by any or all means,
the suitability of the product for its requirements, its good working
order, and for ensuring that it shall not cause damage to either persons
or properties.
.
9.2 The Licensor hereby represents, in good faith, that it is entitled
to grant all the rights over the Software (including in particular the
rights set forth in Article 5).
.
9.3 The Licensee acknowledges that the Software is supplied "as is" by
the Licensor without any other express or tacit warranty, other than
that provided for in Article 9.2 and, in particular, without any warranty
as to its commercial value, its secured, safe, innovative or relevant
nature.
.
Specifically, the Licensor does not warrant that the Software is free
from any error, that it will operate without interruption, that it will
be compatible with the Licensee's own equipment and software
configuration, nor that it will meet the Licensee's requirements.
.
9.4 The Licensor does not either expressly or tacitly warrant that the
Software does not infringe any third party intellectual property right
relating to a patent, software or any other property right. Therefore,
the Licensor disclaims any and all liability towards the Licensee
arising out of any or all proceedings for infringement that may be
instituted in respect of the use, modification and redistribution of the
Software. Nevertheless, should such proceedings be instituted against
the Licensee, the Licensor shall provide it with technical and legal
assistance for its defense. Such technical and legal assistance shall be
decided on a case-by-case basis between the relevant Licensor and the
Licensee pursuant to a memorandum of understanding. The Licensor
disclaims any and all liability as regards the Licensee's use of the
name of the Software. No warranty is given as regards the existence of
prior rights over the name of the Software or as regards the existence
of a trademark.
.
Article 10 - TERMINATION
.
10.1 In the event of a breach by the Licensee of its obligations
hereunder, the Licensor may automatically terminate this Agreement
thirty (30) days after notice has been sent to the Licensee and has
remained ineffective.
.
10.2 A Licensee whose Agreement is terminated shall no longer be
authorized to use, modify or distribute the Software. However, any
licenses that it may have granted prior to termination of the Agreement
shall remain valid subject to their having been granted in compliance
with the terms and conditions hereof.
.
Article 11 - MISCELLANEOUS
.
11.1 EXCUSABLE EVENTS
.
Neither Party shall be liable for any or all delay, or failure to
perform the Agreement, that may be attributable to an event of force
majeure, an act of God or an outside cause, such as defective
functioning or interruptions of the electricity or telecommunications
networks, network paralysis following a virus attack, intervention by
government authorities, natural disasters, water damage, earthquakes,
fire, explosions, strikes and labor unrest, war, etc.
.
11.2 Any failure by either Party, on one or more occasions, to invoke
one or more of the provisions hereof, shall under no circumstances be
interpreted as being a waiver by the interested Party of its right to
invoke said provision(s) subsequently.
.
11.3 The Agreement cancels and replaces any or all previous agreements,
whether written or oral, between the Parties and having the same
purpose, and constitutes the entirety of the agreement between said
Parties concerning said purpose. No supplement or modification to the
terms and conditions hereof shall be effective as between the Parties
unless it is made in writing and signed by their duly authorized
representatives.
.
11.4 In the event that one or more of the provisions hereof were to
conflict with a current or future applicable act or legislative text,
said act or legislative text shall prevail, and the Parties shall make
the necessary amendments so as to comply with said act or legislative
text. All other provisions shall remain effective. Similarly, invalidity
of a provision of the Agreement, for any reason whatsoever, shall not
cause the Agreement as a whole to be invalid.
.
11.5 LANGUAGE
.
The Agreement is drafted in both French and English and both versions
are deemed authentic.
.
Article 12 - NEW VERSIONS OF THE AGREEMENT
.
12.1 Any person is authorized to duplicate and distribute copies of this
Agreement.
.
12.2 So as to ensure coherence, the wording of this Agreement is
protected and may only be modified by the authors of the License, who
reserve the right to periodically publish updates or new versions of the
Agreement, each with a separate number. These subsequent versions may
address new issues encountered by Free Software.
.
12.3 Any Software distributed under a given version of the Agreement may
only be subsequently distributed under the same version of the Agreement
or a subsequent version.
.
Article 13 - GOVERNING LAW AND JURISDICTION
.
13.1 The Agreement is governed by French law. The Parties agree to
endeavor to seek an amicable solution to any disagreements or disputes
that may arise during the performance of the Agreement.
.
13.2 Failing an amicable solution within two (2) months as from their
occurrence, and unless emergency proceedings are necessary, the
disagreements or disputes shall be referred to the Paris Courts having
jurisdiction, by the more diligent Party.
.
Version 1.0 dated 2006-09-05.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: FSFAP
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without any warranty.
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
License: GPL-2+ with autoconf exception
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
.
As a special exception, the respective Autoconf Macro's copyright owner
gives unlimited permission to copy, distribute and modify the configure
scripts that are the output of Autoconf when processing the Macro. You
need not follow the terms of the GNU General Public License when using
or distributing such scripts, even though portions of the text of the
Macro appear in them. The GNU General Public License (GPL) does govern
all other use of the material that constitutes the Autoconf Macro.
.
This special exception to the GPL applies to versions of the Autoconf
Macro released by the Autoconf Archive. When you make and distribute a
modified version of the Autoconf Macro, you may extend this special
exception to the GPL to apply to your modified version as well.
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
License: LGPL-3.0+
This package is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU Lesser General
Public License can be found in "/usr/share/common-licenses/LGPL-3".
License: public-domain
This file is in the public domain.
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License Version 2.0
can be found in `/usr/share/common-licenses/Apache-2.0'.
|