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
|
e03e0712141bf9ea80a2267e8fb0a7f0 *DESCRIPTION
e9654ca8e0359948dffe0bb36f0c0f43 *LICENSE
c154f76504a2c135d15e3a5a519e6034 *NAMESPACE
40e49061477c07658193faa24f3bd9b0 *R/Flags.R
57ad2cc6f62e463122064e1f71c62041 *R/stanFunction.R
69b0e3b33792be7a8f82ee3ac7412ed6 *build/vignette.rds
c34ecf0a899536555d3179c8ea6b5336 *inst/CITATION
ddfb7fe84a5f61eaec00c645f5a5c905 *inst/doc/sparselm_stan.hpp
bd4d01db136f8c0d0fa8fd3e348359bb *inst/doc/stanmath.R
33c9e17d63127207e090c353b627fc98 *inst/doc/stanmath.Rmd
c02c7987fdbb9f89ab21b5a282dc0cbc *inst/doc/stanmath.html
de4af08eaf10fb0e2af7e7eb9f8b09e0 *inst/include/cvodes/cvodes.h
cb59c489739b54654b08e559cf2fc55a *inst/include/cvodes/cvodes_bandpre.h
4bd02b30179012ac4c2ca5f9b9468ec8 *inst/include/cvodes/cvodes_bbdpre.h
1f5afbcfa6ffe924fb4260e7ca12fb64 *inst/include/cvodes/cvodes_diag.h
5cd37c06c64ceb85d0e094f7ea3a2d12 *inst/include/cvodes/cvodes_direct.h
f21cbb49545f94c5c85a19efddb508d3 *inst/include/cvodes/cvodes_ls.h
fad20a453bd0b2a24c2bd764df217ba4 *inst/include/cvodes/cvodes_spils.h
42e0688281afe767fbcd3437e1501737 *inst/include/idas/idas.h
0dc52cac4546e6fc89b5ee680b8cde1a *inst/include/idas/idas_bbdpre.h
c66df452398e3b80086bfe3a302fe993 *inst/include/idas/idas_direct.h
edb3ad3bc2224d588718f706b5018549 *inst/include/idas/idas_ls.h
c1bcd67520dfe5833b9854d039d94e97 *inst/include/idas/idas_spils.h
7e64d22771b3fe6cb1d5f73ea92c05ae *inst/include/kinsol/kinsol.h
efc763868e09c54c8c78dd1b1664ab38 *inst/include/kinsol/kinsol_bbdpre.h
f2e63a0e14e52b0312da58cc3b8716ed *inst/include/kinsol/kinsol_direct.h
cf6dd7a060df9243d9f23dfccacd083c *inst/include/kinsol/kinsol_ls.h
425e97487935aa75cc37bc51141612db *inst/include/kinsol/kinsol_spils.h
bdc00981dc4ef6d3ae0881e63ac88e47 *inst/include/nvector/nvector_cuda.h
0cb546af05cfde494fbd35104858852a *inst/include/nvector/nvector_hip.h
9b50b30d330fb9dd4a849a12e83820c2 *inst/include/nvector/nvector_manyvector.h
bc6fe77bee2416cf778beb08928d2c2a *inst/include/nvector/nvector_mpimanyvector.h
bb487394bc2bfd4697da7b2cba0455dc *inst/include/nvector/nvector_mpiplusx.h
47ecf82d76d366f6f7ab8c57c651582d *inst/include/nvector/nvector_openmp.h
93fad479b97a75a4c837cf2fccd62341 *inst/include/nvector/nvector_openmpdev.h
c5ac6e483d465b76a656ac67e3e26fd4 *inst/include/nvector/nvector_parallel.h
450ece5756f919796801d78e1e0fd27a *inst/include/nvector/nvector_parhyp.h
36b0d5f1696e37207cbbfebf4e346307 *inst/include/nvector/nvector_petsc.h
bdb401256565564dc327f6f991dc9c66 *inst/include/nvector/nvector_pthreads.h
e31e23b6cb209abe7d64b8ee6343d906 *inst/include/nvector/nvector_raja.h
0e27b15a3a2e1eae05e7b0d4a167c7ad *inst/include/nvector/nvector_serial.h
72a4e589d41eff6b2e376d26cd4e62f2 *inst/include/nvector/nvector_sycl.h
2f4a8067306458e6dd93b32d1546e932 *inst/include/nvector/nvector_trilinos.h
53a1bbf89328c0cc5a6be785c9af8616 *inst/include/nvector/trilinos/SundialsTpetraVectorInterface.hpp
f050ca5e350ab92a3b11aa09eb5c104e *inst/include/nvector/trilinos/SundialsTpetraVectorKernels.hpp
207f5b117be93aad28c00c767baf5577 *inst/include/src/stan/analyze/mcmc/autocovariance.hpp
c5794ebbab8013e0c4b42506f89b83fe *inst/include/src/stan/analyze/mcmc/compute_effective_sample_size.hpp
e329d56fd9f37adbcca7812b87dc96e7 *inst/include/src/stan/analyze/mcmc/compute_potential_scale_reduction.hpp
ae6b1e4854d0a2751e548533b41dc8e9 *inst/include/src/stan/analyze/mcmc/split_chains.hpp
9a87e19468b45acccecac19ff37a10cf *inst/include/src/stan/callbacks/interrupt.hpp
88bb6c43c26ea8a899c96d9a36124052 *inst/include/src/stan/callbacks/logger.hpp
7e734d2817851286998bab9a2cb698c9 *inst/include/src/stan/callbacks/stream_logger.hpp
fdcc3684f6c6481071f716af010426f4 *inst/include/src/stan/callbacks/stream_writer.hpp
10fdeaa1d75997633d121b30e1e0eeaf *inst/include/src/stan/callbacks/tee_writer.hpp
fc181dd0ba8c9be6bcc2cf037efa4eea *inst/include/src/stan/callbacks/unique_stream_writer.hpp
accc3a07868fa78ddf799034122315bd *inst/include/src/stan/callbacks/writer.hpp
c03fe083f690a000863a615eda5326e2 *inst/include/src/stan/io/array_var_context.hpp
26f93e9cb57b990e04fe8db44db3790f *inst/include/src/stan/io/chained_var_context.hpp
0ac7c5178f64e11d60e9e42013f41204 *inst/include/src/stan/io/deserializer.hpp
caa83cce796af7a81a9e90e186b00a40 *inst/include/src/stan/io/dump.hpp
ed9bd784573c46958547b935d0b392f3 *inst/include/src/stan/io/empty_var_context.hpp
40e88343a015002aa91dd090765d7cc6 *inst/include/src/stan/io/ends_with.hpp
bfb8b0af4da866a42ce4229b97b6c1c6 *inst/include/src/stan/io/json/json_data.hpp
1f4493074cdc3c484e41e3e52237af73 *inst/include/src/stan/io/json/json_data_handler.hpp
d72763b4b47e8e37309b1eec07f73323 *inst/include/src/stan/io/json/json_error.hpp
1bf868777629c945f976de3866a49f52 *inst/include/src/stan/io/json/json_handler.hpp
822a2715eeb3d894bc45833e031413a3 *inst/include/src/stan/io/json/rapidjson_parser.hpp
7de432f54eb4b25e0555d44c1569a894 *inst/include/src/stan/io/random_var_context.hpp
aaa3e256d926c4bc422a11a8c2e4624d *inst/include/src/stan/io/serializer.hpp
900ec81fc817f079fafdecfad9970f87 *inst/include/src/stan/io/stan_csv_reader.hpp
3cf3688b0179432595efa2b5d388f3fd *inst/include/src/stan/io/validate_dims.hpp
8af324e98d1808e0d2e4adb7a88ca81f *inst/include/src/stan/io/validate_zero_buf.hpp
b5837de7514d1197f636ae17888572e3 *inst/include/src/stan/io/var_context.hpp
b48f3b358fba5d602c098d8de060b3d3 *inst/include/src/stan/lang/rethrow_located.hpp
c10d85a634ab4c8810aba1164e4b9409 *inst/include/src/stan/mcmc/base_adaptation.hpp
b11082dc86382ac1c5a09fb3e476ab07 *inst/include/src/stan/mcmc/base_adapter.hpp
0502d5666299980aea11fab4138b34f1 *inst/include/src/stan/mcmc/base_mcmc.hpp
988f8265443d0fc55270b5251369f671 *inst/include/src/stan/mcmc/chains.hpp
e85c5b52c446e86e91063254cd1ee95d *inst/include/src/stan/mcmc/covar_adaptation.hpp
433d713a915c4e5f648cc453029d02aa *inst/include/src/stan/mcmc/fixed_param_sampler.hpp
00022a7846698f9ec229f5d8479ceeaf *inst/include/src/stan/mcmc/hmc/base_hmc.hpp
2b1bd696b5133dafd96ee707501a99bb *inst/include/src/stan/mcmc/hmc/hamiltonians/base_hamiltonian.hpp
a22c78ba755a0606cc5292ebcfd4ea00 *inst/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp
ecd9cba40b07807eae2dddfc8bad9954 *inst/include/src/stan/mcmc/hmc/hamiltonians/dense_e_point.hpp
2bdbc330a4645987fb90b03695fe01d6 *inst/include/src/stan/mcmc/hmc/hamiltonians/diag_e_metric.hpp
35d3681be9f9a66faa8e5075661fe166 *inst/include/src/stan/mcmc/hmc/hamiltonians/diag_e_point.hpp
ccf42a6fdbc9ba02a5506a2183f041d5 *inst/include/src/stan/mcmc/hmc/hamiltonians/ps_point.hpp
19e65645a5cbb316528a592b9210ddfd *inst/include/src/stan/mcmc/hmc/hamiltonians/softabs_metric.hpp
0a110456c9c654a42002212e2481e44d *inst/include/src/stan/mcmc/hmc/hamiltonians/softabs_point.hpp
4023d4ab7d1d6adae30b4009d1d723c1 *inst/include/src/stan/mcmc/hmc/hamiltonians/unit_e_metric.hpp
3f5a2f18114a5008485df95c44edb837 *inst/include/src/stan/mcmc/hmc/hamiltonians/unit_e_point.hpp
fae768906314938a69e038811c1599a0 *inst/include/src/stan/mcmc/hmc/integrators/base_integrator.hpp
c90cad3a1b800b02b9d9f26c645ea518 *inst/include/src/stan/mcmc/hmc/integrators/base_leapfrog.hpp
182ef84f24ad8c157d886fea29790f26 *inst/include/src/stan/mcmc/hmc/integrators/expl_leapfrog.hpp
2b2e91d914b9fadbbaa1247392813db6 *inst/include/src/stan/mcmc/hmc/integrators/impl_leapfrog.hpp
120280620e2e26d9e511bb1fc17d16ee *inst/include/src/stan/mcmc/hmc/nuts/adapt_dense_e_nuts.hpp
5757c3349d0e68c6c4ccf191a354dba8 *inst/include/src/stan/mcmc/hmc/nuts/adapt_diag_e_nuts.hpp
b764a564765ba8e6fd5aa465314b93a3 *inst/include/src/stan/mcmc/hmc/nuts/adapt_softabs_nuts.hpp
174a1ac2fb4f7ac459e49a151ed88fb4 *inst/include/src/stan/mcmc/hmc/nuts/adapt_unit_e_nuts.hpp
cc40f0f5cef17f9abad613621389591a *inst/include/src/stan/mcmc/hmc/nuts/base_nuts.hpp
7c0041b1ed401cb09b1af88e5c5d825b *inst/include/src/stan/mcmc/hmc/nuts/dense_e_nuts.hpp
5758356af7355f907ac2a3be1bbe019e *inst/include/src/stan/mcmc/hmc/nuts/diag_e_nuts.hpp
b3a427bb83a57c8b71b9b2a8596b20c9 *inst/include/src/stan/mcmc/hmc/nuts/softabs_nuts.hpp
c108c834f3003f41fea8c2916733aef1 *inst/include/src/stan/mcmc/hmc/nuts/unit_e_nuts.hpp
9764eab397400de386bb0376353812e7 *inst/include/src/stan/mcmc/hmc/nuts_classic/adapt_dense_e_nuts_classic.hpp
d0896871230ac3708c143ccef4567178 *inst/include/src/stan/mcmc/hmc/nuts_classic/adapt_diag_e_nuts_classic.hpp
7f1bb5ee3f0eb6776ec8d4b2707ee1f8 *inst/include/src/stan/mcmc/hmc/nuts_classic/adapt_unit_e_nuts_classic.hpp
fd83ed5d4f1ab2ee9ffa9173492153ca *inst/include/src/stan/mcmc/hmc/nuts_classic/base_nuts_classic.hpp
b00808cefbc72cebf5c38bd2fea7ca69 *inst/include/src/stan/mcmc/hmc/nuts_classic/dense_e_nuts_classic.hpp
ee11d39d53250367b5260223a688a95b *inst/include/src/stan/mcmc/hmc/nuts_classic/diag_e_nuts_classic.hpp
28abcbee705ca57acf3de8093dd27061 *inst/include/src/stan/mcmc/hmc/nuts_classic/unit_e_nuts_classic.hpp
fb1f3f399f8ee9b77055d6b22375f247 *inst/include/src/stan/mcmc/hmc/static/adapt_dense_e_static_hmc.hpp
4a50bc8495da52b435d0ce87934af61a *inst/include/src/stan/mcmc/hmc/static/adapt_diag_e_static_hmc.hpp
5b7ced6ccffb6009568e8fd8a87d48f4 *inst/include/src/stan/mcmc/hmc/static/adapt_softabs_static_hmc.hpp
c5004000ac83cf04a05e9ef550ae450a *inst/include/src/stan/mcmc/hmc/static/adapt_unit_e_static_hmc.hpp
2cd8952fdd51092bb5979723d9e22a7b *inst/include/src/stan/mcmc/hmc/static/base_static_hmc.hpp
086dd35078d569fa6f06d00720e0e4fd *inst/include/src/stan/mcmc/hmc/static/dense_e_static_hmc.hpp
b77bb0267e82ab56d0e1f7e0a550e39e *inst/include/src/stan/mcmc/hmc/static/diag_e_static_hmc.hpp
a724a6939cd662e47d3a96fd9c13f1b7 *inst/include/src/stan/mcmc/hmc/static/softabs_static_hmc.hpp
fe0e4e863469266e1fc82359a2bb4b90 *inst/include/src/stan/mcmc/hmc/static/unit_e_static_hmc.hpp
a90aad32c8a8b2c929065b1e6a249faf *inst/include/src/stan/mcmc/hmc/static_uniform/adapt_dense_e_static_uniform.hpp
efcda4b6b2a90f435684db0f892fe353 *inst/include/src/stan/mcmc/hmc/static_uniform/adapt_diag_e_static_uniform.hpp
dbf52302d8de561e67d1ff971f778a9c *inst/include/src/stan/mcmc/hmc/static_uniform/adapt_softabs_static_uniform.hpp
560476a41ec4149478b3c442cafab71e *inst/include/src/stan/mcmc/hmc/static_uniform/adapt_unit_e_static_uniform.hpp
ac6ca6b4cf2c12454688153397206cb4 *inst/include/src/stan/mcmc/hmc/static_uniform/base_static_uniform.hpp
eec3499d631680ab4286371e0a0817ca *inst/include/src/stan/mcmc/hmc/static_uniform/dense_e_static_uniform.hpp
2aa43c250b956f84beda97e9b052e19c *inst/include/src/stan/mcmc/hmc/static_uniform/diag_e_static_uniform.hpp
d4a50a4bb4b2d3cca42e64ee55cd8940 *inst/include/src/stan/mcmc/hmc/static_uniform/softabs_static_uniform.hpp
d6de3e6776e1f21b5b8a7523ac357c02 *inst/include/src/stan/mcmc/hmc/static_uniform/unit_e_static_uniform.hpp
89e0dca338832d24bdebeb15b140f154 *inst/include/src/stan/mcmc/hmc/xhmc/adapt_dense_e_xhmc.hpp
fd708e4257036ebb8114a441c8106e0d *inst/include/src/stan/mcmc/hmc/xhmc/adapt_diag_e_xhmc.hpp
e8b0aa77425fc586b77253ca649ea1e2 *inst/include/src/stan/mcmc/hmc/xhmc/adapt_softabs_xhmc.hpp
de4421f985542fa7411a3fedc8c0c393 *inst/include/src/stan/mcmc/hmc/xhmc/adapt_unit_e_xhmc.hpp
3a943da20c2469e1a801f207ef46697b *inst/include/src/stan/mcmc/hmc/xhmc/base_xhmc.hpp
b2705f8647705756204a2d8d1b87c805 *inst/include/src/stan/mcmc/hmc/xhmc/dense_e_xhmc.hpp
e1514fe43561bc8cb09fa1f123002828 *inst/include/src/stan/mcmc/hmc/xhmc/diag_e_xhmc.hpp
39c9c19ba3791969b466f9db7e5c5056 *inst/include/src/stan/mcmc/hmc/xhmc/softabs_xhmc.hpp
5d98e4a8e1948aa7144ff07893128705 *inst/include/src/stan/mcmc/hmc/xhmc/unit_e_xhmc.hpp
a6dc976a24e009c5e1cbc4aec6bb148e *inst/include/src/stan/mcmc/sample.hpp
7c322f06a9eccc412e9d8bdfac20089d *inst/include/src/stan/mcmc/stepsize_adaptation.hpp
0e99b3f3e88f5cc0afca301b026d52b9 *inst/include/src/stan/mcmc/stepsize_adapter.hpp
41a1bf89c5e12ac7a90e83c7ebc3cfed *inst/include/src/stan/mcmc/stepsize_covar_adapter.hpp
c4dfe71ffafc817e659ef11dd7dfe16f *inst/include/src/stan/mcmc/stepsize_var_adapter.hpp
2fed1497e33fbdf8f9602a3d159461fe *inst/include/src/stan/mcmc/var_adaptation.hpp
55664d644978cec82aca55e366012577 *inst/include/src/stan/mcmc/windowed_adaptation.hpp
8e578b24882d76175a2db72092651308 *inst/include/src/stan/model/finite_diff_grad.hpp
ca20fa31c3fab30c5dbeeed2c76e02b2 *inst/include/src/stan/model/grad_hess_log_prob.hpp
49ce2ad29a81ed0a89d8d573f41a69e0 *inst/include/src/stan/model/grad_tr_mat_times_hessian.hpp
6ed50f2dc607cf6842956edf48c11158 *inst/include/src/stan/model/gradient.hpp
e447d8ef13b82b73161af4193cb8ce15 *inst/include/src/stan/model/gradient_dot_vector.hpp
8c5979b23a19965163d42ad3e8d68632 *inst/include/src/stan/model/hessian.hpp
ce4d9767d3e7a5ca796631b66b7f5f2d *inst/include/src/stan/model/hessian_times_vector.hpp
6be682f18b0ef2329d66c309fbdd6495 *inst/include/src/stan/model/indexing.hpp
35b4b340199b403a23df5bf8f72c7d61 *inst/include/src/stan/model/indexing/access_helpers.hpp
2daa9c2d18db461739beeef942e8a15e *inst/include/src/stan/model/indexing/assign.hpp
03d4d4ea467fc270cb6615840d63b2e6 *inst/include/src/stan/model/indexing/assign_cl.hpp
daeb301590860fa064d3bbc62e99dd8b *inst/include/src/stan/model/indexing/assign_varmat.hpp
7ebcde14a14ddf0b1d220bf63b7a36ef *inst/include/src/stan/model/indexing/deep_copy.hpp
14446b26c8b873bdd712e675cff8e6c8 *inst/include/src/stan/model/indexing/index.hpp
4a057e3e30160ee9735899bfddc5f68e *inst/include/src/stan/model/indexing/rvalue.hpp
3a3d872ae6c050f0aa5e23fb053f0c33 *inst/include/src/stan/model/indexing/rvalue_at.hpp
559674082cb195d6180cb102078c57cb *inst/include/src/stan/model/indexing/rvalue_cl.hpp
02843ed7ac9534b125675eeaac8e1dc2 *inst/include/src/stan/model/indexing/rvalue_index_size.hpp
d7e771fb1dc8ebcaca0d8187e02ad9a5 *inst/include/src/stan/model/indexing/rvalue_varmat.hpp
a1f01f9bee12d07feaedfbd29822ea87 *inst/include/src/stan/model/log_prob_grad.hpp
a6891a3e3d5e7c8fdf1b709ec86b077b *inst/include/src/stan/model/log_prob_propto.hpp
ad6e2219fb7bbe59cdc4cd8e93d3eaa9 *inst/include/src/stan/model/model_base.hpp
cc2d0f4420fbd71833b0450bf597e593 *inst/include/src/stan/model/model_base_crtp.hpp
3bb6175df3b141a208e1a35b3891a19d *inst/include/src/stan/model/model_functional.hpp
49e624954267d33bfb787d623b9aec8c *inst/include/src/stan/model/model_header.hpp
0b2e0cb8a3d92e3c18e6530220b4ee3e *inst/include/src/stan/model/prob_grad.hpp
39e71920eb23626413cfc0bb27c054e0 *inst/include/src/stan/model/rethrow_located.hpp
eb0b3a812da4ca9650ac9e9cb9b31b1e *inst/include/src/stan/model/test_gradients.hpp
10255215050780f31607a6a566d0bc57 *inst/include/src/stan/optimization/bfgs.hpp
5559dea8529c2b46d85864dd1a264778 *inst/include/src/stan/optimization/bfgs_linesearch.hpp
5434d1d24742da9d75d5692ed67d89ea *inst/include/src/stan/optimization/bfgs_update.hpp
a1869779928fadde6652c1f4701a17fb *inst/include/src/stan/optimization/lbfgs_update.hpp
e716577d5f19fc5ad16039f4a6f51de8 *inst/include/src/stan/optimization/newton.hpp
07f58c482804180bd5a54576fc7ff4ea *inst/include/src/stan/services/diagnose/defaults.hpp
8b9876de8c5ff2c9d79edd2d170fa30b *inst/include/src/stan/services/diagnose/diagnose.hpp
679e252f18e8dd28cf327e0afd4f01e8 *inst/include/src/stan/services/error_codes.hpp
245009e774b042bb1e468a14cc39b41d *inst/include/src/stan/services/experimental/advi/defaults.hpp
3e62caa913f8ca9500e087881abace5e *inst/include/src/stan/services/experimental/advi/fullrank.hpp
8c1860460f55b715b732a62986fce9e4 *inst/include/src/stan/services/experimental/advi/meanfield.hpp
9a00f1de6f83f719a2b82fe1473cf81b *inst/include/src/stan/services/optimize/bfgs.hpp
540de2abdc11d7b9beac36dfeb6a7df7 *inst/include/src/stan/services/optimize/defaults.hpp
6b36e9915fc917d67c0037d7e031674f *inst/include/src/stan/services/optimize/laplace_sample.hpp
ccff674a31bf31d16ac11efcb04fc185 *inst/include/src/stan/services/optimize/lbfgs.hpp
9fd3d3fb480c9ebcebc993ff8cb08b40 *inst/include/src/stan/services/optimize/newton.hpp
b0d26d3f90d9bceb7f4468c25fd2e57f *inst/include/src/stan/services/sample/defaults.hpp
b2d1817679052ca461d1cbb825b4eb78 *inst/include/src/stan/services/sample/fixed_param.hpp
63661683ee1fc6de3167235ac5f5d01b *inst/include/src/stan/services/sample/hmc_nuts_dense_e.hpp
dc8cebeca3fe778cb4241bbfa2fe4d45 *inst/include/src/stan/services/sample/hmc_nuts_dense_e_adapt.hpp
a3c621cc7f350927e0c5bf12e1f6b2e8 *inst/include/src/stan/services/sample/hmc_nuts_diag_e.hpp
a1463c2825b69ee40730d96ddb108ce7 *inst/include/src/stan/services/sample/hmc_nuts_diag_e_adapt.hpp
793cb81221c7450e375e4e016a43d7ea *inst/include/src/stan/services/sample/hmc_nuts_unit_e.hpp
51a8e7b308a11abc125d85b172da0c58 *inst/include/src/stan/services/sample/hmc_nuts_unit_e_adapt.hpp
a6f3ec787405dc308af7a236d0e4c392 *inst/include/src/stan/services/sample/hmc_static_dense_e.hpp
919da6fd2c91be12dbc39f02a016f5df *inst/include/src/stan/services/sample/hmc_static_dense_e_adapt.hpp
fbf0eb7250decf452189b03ede758144 *inst/include/src/stan/services/sample/hmc_static_diag_e.hpp
ebfd18347c30d05f06f7cbc9a2f18028 *inst/include/src/stan/services/sample/hmc_static_diag_e_adapt.hpp
6516c942f7234663c7b53b2d3b8615c0 *inst/include/src/stan/services/sample/hmc_static_unit_e.hpp
ce1e0c684a83ef86aef78c36a8e653dd *inst/include/src/stan/services/sample/hmc_static_unit_e_adapt.hpp
493516313e658590ae607e28d10e589d *inst/include/src/stan/services/sample/standalone_gqs.hpp
6d2b321293a8ad241c318ef691347946 *inst/include/src/stan/services/util/create_rng.hpp
77ae5b2ee5a997d75d6e71e08c0eaa30 *inst/include/src/stan/services/util/create_unit_e_dense_inv_metric.hpp
8ad9e62b5c30796eb5e2d79b018e303e *inst/include/src/stan/services/util/create_unit_e_diag_inv_metric.hpp
20711f9dcb58405998e370fd065b3e96 *inst/include/src/stan/services/util/experimental_message.hpp
c97ba82ed1de8914a117af6a14618077 *inst/include/src/stan/services/util/generate_transitions.hpp
a4133d7a828005ee695575781082be9d *inst/include/src/stan/services/util/gq_writer.hpp
cf14e9698e73c4de3d9548844b18dbea *inst/include/src/stan/services/util/initialize.hpp
8d87e4604687fda54f54ab452eb0d858 *inst/include/src/stan/services/util/inv_metric.hpp
cfcc693252c2041b9c154cf02e3463f7 *inst/include/src/stan/services/util/mcmc_writer.hpp
0b717e49560092c81d622e9fc259793c *inst/include/src/stan/services/util/read_dense_inv_metric.hpp
05d857325a6e6a78a72fa2afdf3cfbbf *inst/include/src/stan/services/util/read_diag_inv_metric.hpp
acf9e1b16b259d0c293849ca8603951a *inst/include/src/stan/services/util/run_adaptive_sampler.hpp
f12c6fd196f8805628d2216772b420b1 *inst/include/src/stan/services/util/run_sampler.hpp
990b88bd26e523d44be4364959751b1a *inst/include/src/stan/services/util/validate_dense_inv_metric.hpp
eebca791e3c7b0fb8a9d13e1a569e0b5 *inst/include/src/stan/services/util/validate_diag_inv_metric.hpp
b477e2d9155e0a31a35e1789bfbdef7c *inst/include/src/stan/variational/advi.hpp
30bbe658e22174370718fb10c71b57ca *inst/include/src/stan/variational/base_family.hpp
f1f9c3614b4a68e2e9f59b836804867a *inst/include/src/stan/variational/families/normal_fullrank.hpp
dfbc625b3bab0892237c6760d8fbb1d9 *inst/include/src/stan/variational/families/normal_meanfield.hpp
be8db6a0f70074619018a332268f5916 *inst/include/src/stan/variational/print_progress.hpp
8379ecfd10ebd23d67ef198b88361be0 *inst/include/src/stan/version.hpp
ca1c31becd867b050e0e37c1a5954c9a *inst/include/stan/math.hpp
c1c09ce9a140539e00c9368a3c4cd13a *inst/include/stan/math/fwd.hpp
10f9c18732df8f00adf6f2c5371d8028 *inst/include/stan/math/fwd/core.hpp
29dc293eed4a8e5f8dfc90fa21923355 *inst/include/stan/math/fwd/core/fvar.hpp
238ed927083f1385452973094e5c70ec *inst/include/stan/math/fwd/core/operator_addition.hpp
c6fcad63619c405c5e41141d1897b710 *inst/include/stan/math/fwd/core/operator_division.hpp
de8b4e221175c599cffee1d0fac92866 *inst/include/stan/math/fwd/core/operator_equal.hpp
6073f5cd560b66b298c906651ed9f940 *inst/include/stan/math/fwd/core/operator_greater_than.hpp
3178d1238173c1e18e1f75a3d1d99bc2 *inst/include/stan/math/fwd/core/operator_greater_than_or_equal.hpp
94d720ade2715fc43b975cade37bd5b0 *inst/include/stan/math/fwd/core/operator_less_than.hpp
081697396be9892848a9572c8b5abfdd *inst/include/stan/math/fwd/core/operator_less_than_or_equal.hpp
0b1ee8c588deb74c38255992124c50ae *inst/include/stan/math/fwd/core/operator_logical_and.hpp
9e2c4a1f1b54aa5ec467d49818029f80 *inst/include/stan/math/fwd/core/operator_logical_or.hpp
20b6423ae35b96bdd4323d63be835d09 *inst/include/stan/math/fwd/core/operator_multiplication.hpp
d777c6aa41767afb3d37ac692516c15f *inst/include/stan/math/fwd/core/operator_not_equal.hpp
3a7967b4ce2bed0c0d5c9468cd010fe5 *inst/include/stan/math/fwd/core/operator_subtraction.hpp
4b3dd1ad5ea5dd83b7222df07d2ec49f *inst/include/stan/math/fwd/core/operator_unary_minus.hpp
db17781dd2497d31145a31957a750799 *inst/include/stan/math/fwd/core/operator_unary_not.hpp
04d03ec668034c80189078c39293153c *inst/include/stan/math/fwd/core/operator_unary_plus.hpp
1ce524354d06a04fe5aff4161a15873b *inst/include/stan/math/fwd/core/std_complex.hpp
bb70c5c876a7675c61e214246718fbff *inst/include/stan/math/fwd/core/std_iterator_traits.hpp
d1d71b7e541c91d9b41cd745b468ac7c *inst/include/stan/math/fwd/core/std_numeric_limits.hpp
7ddf02ace66900b9f3646d3dbe85349f *inst/include/stan/math/fwd/fun.hpp
0721c562859372087df85ea88c95d112 *inst/include/stan/math/fwd/fun/Eigen_NumTraits.hpp
f8e73449d3a0798831fe1a877e0ab335 *inst/include/stan/math/fwd/fun/Phi.hpp
10e87587f7638fddf6adf01db0db2ffc *inst/include/stan/math/fwd/fun/Phi_approx.hpp
7d96242151e0ac3e5d2501f63cfee110 *inst/include/stan/math/fwd/fun/abs.hpp
442ca052ceaa3923adade05c6ae53a53 *inst/include/stan/math/fwd/fun/accumulator.hpp
b0f2d8252f4bedd2dd9b1daa52c014c9 *inst/include/stan/math/fwd/fun/acos.hpp
d6ce79d946c57b89edec3c76f68dd47f *inst/include/stan/math/fwd/fun/acosh.hpp
b037c92eb1033408d0d3d2f84dd2adce *inst/include/stan/math/fwd/fun/arg.hpp
fdc386cb16853296146f51368485f6d6 *inst/include/stan/math/fwd/fun/asin.hpp
2e62c5b6a33521f9974397f347b80c81 *inst/include/stan/math/fwd/fun/asinh.hpp
2b0efcb74794bb48541edd5a03c86674 *inst/include/stan/math/fwd/fun/atan.hpp
6946800312458de12e47a1514696001c *inst/include/stan/math/fwd/fun/atan2.hpp
e864c6094875abd0873662ded504dbaf *inst/include/stan/math/fwd/fun/atanh.hpp
aa950622a4c053630426e9f72b9f5c98 *inst/include/stan/math/fwd/fun/bessel_first_kind.hpp
f16c7ffe419c92e0064c53bb7086932b *inst/include/stan/math/fwd/fun/bessel_second_kind.hpp
225522619ce72b401c290834c6be170d *inst/include/stan/math/fwd/fun/beta.hpp
524b37eb1fe9305e64791340bd8842e2 *inst/include/stan/math/fwd/fun/binary_log_loss.hpp
e9ce214101bef25708480c332159b6d2 *inst/include/stan/math/fwd/fun/cbrt.hpp
f92e86856316ee8e7157b0739007cebb *inst/include/stan/math/fwd/fun/ceil.hpp
e7c4e045636d805bc4db79b91e0be181 *inst/include/stan/math/fwd/fun/conj.hpp
dbaa93c4deb94a5d22de6b20c1d0a7bd *inst/include/stan/math/fwd/fun/cos.hpp
d7162e3068ca2174cff95cffd169bdb2 *inst/include/stan/math/fwd/fun/cosh.hpp
0ece45db784b8eb62907b15bd663128c *inst/include/stan/math/fwd/fun/determinant.hpp
b4a90c12008e9cee5d0d83c8085ad7e8 *inst/include/stan/math/fwd/fun/digamma.hpp
9bc15c8a175eb57c1bfc5e1d4b192c44 *inst/include/stan/math/fwd/fun/erf.hpp
7b7d40f2052a0254cc5622d0bdae6b9f *inst/include/stan/math/fwd/fun/erfc.hpp
c950cb0ddf491804cf13957421fed6db *inst/include/stan/math/fwd/fun/exp.hpp
7c4e92a0d6f6e5c4940b100a0db0974c *inst/include/stan/math/fwd/fun/exp2.hpp
8b6ee7b0dc746292f44cffc9a1b4475e *inst/include/stan/math/fwd/fun/expm1.hpp
afbfbc40d32b22537937c3e4e2c8a50d *inst/include/stan/math/fwd/fun/fabs.hpp
3d54a5987afd3af076a5abf822d9a9f1 *inst/include/stan/math/fwd/fun/falling_factorial.hpp
85e596ad2f0ceb5a48521cd79f0e8cf6 *inst/include/stan/math/fwd/fun/fdim.hpp
0589b25646c69adacdfa5438da342bbb *inst/include/stan/math/fwd/fun/floor.hpp
b437abe9806601c375b282c9f55212b0 *inst/include/stan/math/fwd/fun/fma.hpp
ae28c5d7a38c581d45a402230260b716 *inst/include/stan/math/fwd/fun/fmax.hpp
be226c9d26b13a24afc6c9f47d45983e *inst/include/stan/math/fwd/fun/fmin.hpp
3932a0925df6c7d60cc56879a478aff3 *inst/include/stan/math/fwd/fun/fmod.hpp
979e45e02f196cbbaebea1f8134ff007 *inst/include/stan/math/fwd/fun/gamma_p.hpp
fa19eb3829fffc35d8a663e48653fb47 *inst/include/stan/math/fwd/fun/gamma_q.hpp
8ceb87be2ac16627971bbdabcb9fa9f7 *inst/include/stan/math/fwd/fun/grad_inc_beta.hpp
6fbc01aa9e10b26009b7d01e67f186ba *inst/include/stan/math/fwd/fun/hypergeometric_2F1.hpp
68930c6470c80df17a15ae9dd51736b3 *inst/include/stan/math/fwd/fun/hypergeometric_pFq.hpp
7e94054c169aa97ecedc8bcffbe6e488 *inst/include/stan/math/fwd/fun/hypot.hpp
a7200606e6b7a9e7b1e328a42341358c *inst/include/stan/math/fwd/fun/inc_beta.hpp
2189653b204c5507ef308a0997ea61bc *inst/include/stan/math/fwd/fun/inv.hpp
054db8ecda46d2bf16677e7b7a320911 *inst/include/stan/math/fwd/fun/inv_Phi.hpp
3c09135cacb3c8f7543b0ffb50640258 *inst/include/stan/math/fwd/fun/inv_cloglog.hpp
b2aa34f33f48ddfe22212f0df20d7ce9 *inst/include/stan/math/fwd/fun/inv_erfc.hpp
57ce880b637bd73f436ec7aefb15e257 *inst/include/stan/math/fwd/fun/inv_inc_beta.hpp
e5a5adf1663cdc7896ec4195ecded8d2 *inst/include/stan/math/fwd/fun/inv_logit.hpp
d60c9b8dbf1b02d1e4a546e58eb39493 *inst/include/stan/math/fwd/fun/inv_sqrt.hpp
88aa0545b185030f09169290c8832757 *inst/include/stan/math/fwd/fun/inv_square.hpp
1e4b7dfbb3710ca8b6d3dc10312efe69 *inst/include/stan/math/fwd/fun/inverse.hpp
128c6a0e4c8072021a45121ce8d6ca8e *inst/include/stan/math/fwd/fun/is_inf.hpp
9c79bd5f1e3c8cd4d1033237b75b894b *inst/include/stan/math/fwd/fun/is_nan.hpp
d5b76aa8cc22f116f59b4cca328364d6 *inst/include/stan/math/fwd/fun/lambert_w.hpp
622faa0257c1fcbee41b962126549c02 *inst/include/stan/math/fwd/fun/lbeta.hpp
4cbbfe4230f8baac56f1b82155e5b93a *inst/include/stan/math/fwd/fun/ldexp.hpp
9c0d3c465e18892e5ff96d7bad4eee02 *inst/include/stan/math/fwd/fun/lgamma.hpp
45a5f29e8412e0b8c2891524fb57ac5c *inst/include/stan/math/fwd/fun/lmgamma.hpp
3b4fb32e43f80b413ac1dab7c67d5ae6 *inst/include/stan/math/fwd/fun/lmultiply.hpp
41051a8c7ae3fb909d164d7b218d0b1c *inst/include/stan/math/fwd/fun/log.hpp
b6ebe99e293f37de2436fcd12df03557 *inst/include/stan/math/fwd/fun/log10.hpp
d7838b96517678a50299749de959a72e *inst/include/stan/math/fwd/fun/log1m.hpp
17689432f8217ff84b0582429806d989 *inst/include/stan/math/fwd/fun/log1m_exp.hpp
495fc740195e33237ad6dbb3d783fc7c *inst/include/stan/math/fwd/fun/log1m_inv_logit.hpp
b9135c509f2f689376be88989f08b529 *inst/include/stan/math/fwd/fun/log1p.hpp
10e64c50fa44126532abc4653dd4b245 *inst/include/stan/math/fwd/fun/log1p_exp.hpp
f2dbc7914dcd5a2aee5aa8e1a5133b84 *inst/include/stan/math/fwd/fun/log2.hpp
f4ab78498d47caa39985b7ba3f08098b *inst/include/stan/math/fwd/fun/log_determinant.hpp
4d99b51f67c101eeeefeeab3e2c09815 *inst/include/stan/math/fwd/fun/log_diff_exp.hpp
ce76514a620863b903dc267ca5b8fe5d *inst/include/stan/math/fwd/fun/log_falling_factorial.hpp
a60885f4b178308f8d11bc25c3b0d1e0 *inst/include/stan/math/fwd/fun/log_inv_logit.hpp
ee20f7d5f654888c7d400d4dd14894e8 *inst/include/stan/math/fwd/fun/log_inv_logit_diff.hpp
965e32b17b084ec6c1f3a250b3046412 *inst/include/stan/math/fwd/fun/log_mix.hpp
221c377b84feb18162af390e059882bf *inst/include/stan/math/fwd/fun/log_rising_factorial.hpp
ca60267321f0a026580229dfb63333b1 *inst/include/stan/math/fwd/fun/log_softmax.hpp
d23fc08bb5689dc4e87b230f10b9a049 *inst/include/stan/math/fwd/fun/log_sum_exp.hpp
91aec4bb5c86609fcf8315cb88433d9c *inst/include/stan/math/fwd/fun/logit.hpp
9a3a8e2400e606f0ea697d1849e0ae0c *inst/include/stan/math/fwd/fun/mdivide_left.hpp
d84958f00470848bdf9ca1eed88730cf *inst/include/stan/math/fwd/fun/mdivide_left_ldlt.hpp
cf1a39882e663ac670a223092e3a328a *inst/include/stan/math/fwd/fun/mdivide_left_tri_low.hpp
dddec54dcea5b781e9bea76dfc72b33a *inst/include/stan/math/fwd/fun/mdivide_right.hpp
3df2a8712ce838fb53cc7fbd4565186a *inst/include/stan/math/fwd/fun/mdivide_right_tri_low.hpp
151617dcd862f0366b0fc9e33c05d01f *inst/include/stan/math/fwd/fun/modified_bessel_first_kind.hpp
add367411ea90d05d47a4027f4696d51 *inst/include/stan/math/fwd/fun/modified_bessel_second_kind.hpp
a88a36e3feb405ee5a563b88831fe71d *inst/include/stan/math/fwd/fun/multiply.hpp
075e27961bd4cc9a2b667bad383381bc *inst/include/stan/math/fwd/fun/multiply_log.hpp
d0a508ddc3be401204dce2eaaabbb94e *inst/include/stan/math/fwd/fun/multiply_lower_tri_self_transpose.hpp
d293fb4de0f4cdc4d798768f936549fa *inst/include/stan/math/fwd/fun/norm.hpp
00fed1e0953568f51e689a7343ae5249 *inst/include/stan/math/fwd/fun/norm1.hpp
95c88d548eae36e1e8fb242925519f11 *inst/include/stan/math/fwd/fun/norm2.hpp
3c6b1686137c2c16d224cf6d4f0376e4 *inst/include/stan/math/fwd/fun/owens_t.hpp
3083d1418ff9d0c40e70d8687f6fc85d *inst/include/stan/math/fwd/fun/polar.hpp
85e1e40f88e0226b1a0e8aa3db84c21b *inst/include/stan/math/fwd/fun/pow.hpp
d0ba06a5ae7f8b77bf430f2624b3801a *inst/include/stan/math/fwd/fun/primitive_value.hpp
d434d1a0b88d9defe5bcdf4f478f5ec2 *inst/include/stan/math/fwd/fun/proj.hpp
a8460c93e665bf24cf9dc5da492ca2e5 *inst/include/stan/math/fwd/fun/quad_form.hpp
2e2368fe61e7728adc336f32ed109b44 *inst/include/stan/math/fwd/fun/quad_form_sym.hpp
e7ae3264ea6da37cc156d5ec8883acfb *inst/include/stan/math/fwd/fun/read_fvar.hpp
8e6b038493e36f8bd6105354a3dcabad *inst/include/stan/math/fwd/fun/rising_factorial.hpp
f5fe6b876bfaa9dd2a023fc13f12b8b1 *inst/include/stan/math/fwd/fun/round.hpp
a307fcf0e8b769251a979b4477999d50 *inst/include/stan/math/fwd/fun/sin.hpp
26b6ab4caa99cbb1e41588e943eb653f *inst/include/stan/math/fwd/fun/sinh.hpp
0cb8336fc29af75430f303d51b99ea01 *inst/include/stan/math/fwd/fun/softmax.hpp
7ba95550ae1b38b20164bdca7ed2948e *inst/include/stan/math/fwd/fun/sqrt.hpp
6c089718c503df987455d1ac443b8198 *inst/include/stan/math/fwd/fun/square.hpp
6681f71fa70cca47615b19f171479c29 *inst/include/stan/math/fwd/fun/sum.hpp
f590685d4bf3ea8c5abc61129a3c2a5d *inst/include/stan/math/fwd/fun/tan.hpp
1a409609438a94e3bb70204f70bd398b *inst/include/stan/math/fwd/fun/tanh.hpp
550e7d157e6a1ef9e6a71fdc60f44de4 *inst/include/stan/math/fwd/fun/tcrossprod.hpp
4b7a01cec3c7a8b38fccc0940a56b1a0 *inst/include/stan/math/fwd/fun/tgamma.hpp
ae052691748572b27ca339b5f50fa88e *inst/include/stan/math/fwd/fun/to_fvar.hpp
d15a62be6aa645652437c025842d9d7d *inst/include/stan/math/fwd/fun/trace_quad_form.hpp
1af16ab4b419a125dd3446b001d0e678 *inst/include/stan/math/fwd/fun/trigamma.hpp
07a290c8c011a263ca1aaa8a38fed4c1 *inst/include/stan/math/fwd/fun/trunc.hpp
e9e80466c1d6d13e9ee472e87b887e09 *inst/include/stan/math/fwd/fun/typedefs.hpp
4a3793ec819a50976fa632fba757e326 *inst/include/stan/math/fwd/fun/unit_vector_constrain.hpp
e0ebd4c42a7762293865e2748acde96f *inst/include/stan/math/fwd/fun/value_of.hpp
62d8129994da1f259894894b881a0cb9 *inst/include/stan/math/fwd/fun/value_of_rec.hpp
ddca5689869a12b5298414d25e2c37ea *inst/include/stan/math/fwd/functor.hpp
5cdcb271fe1b5785fff5b73309acba66 *inst/include/stan/math/fwd/functor/apply_scalar_unary.hpp
f160286c0b63d77c8647dda91fe2a29d *inst/include/stan/math/fwd/functor/gradient.hpp
6502875879b14200d085bf3e08fc85d0 *inst/include/stan/math/fwd/functor/hessian.hpp
eceeb88ea5ff16ccdc1eeeaa247ceee6 *inst/include/stan/math/fwd/functor/jacobian.hpp
77d4f20a5ffb3616727668d0913cd423 *inst/include/stan/math/fwd/functor/operands_and_partials.hpp
da38652412afb4bc49a0405aa32b6cf4 *inst/include/stan/math/fwd/functor/partials_propagator.hpp
8c9b8e89aefc0a9a1046c6a21d0660dd *inst/include/stan/math/fwd/functor/reduce_sum.hpp
e649c62ad21ccbf1a0e7166158056096 *inst/include/stan/math/fwd/meta.hpp
0afa836fca55065268b6052832d4e671 *inst/include/stan/math/fwd/meta/is_fvar.hpp
4993e53d3ef8c626c1f36493684f9da3 *inst/include/stan/math/fwd/meta/partials_type.hpp
31fec36c4f29130f4bbb26bfe26c0c6e *inst/include/stan/math/fwd/prob.hpp
8d375113b8accedc4654e258adc59396 *inst/include/stan/math/fwd/prob/std_normal_log_qf.hpp
cada628bdc07c81db92e97913c0ed44c *inst/include/stan/math/memory/stack_alloc.hpp
4929dce845e6e24ad684aef44deaff48 *inst/include/stan/math/mix.hpp
1da6bdda1bde9133efb775496a118a91 *inst/include/stan/math/mix/fun.hpp
b7dd6209dda769cff2ac9269a69509fb *inst/include/stan/math/mix/fun/typedefs.hpp
5042bf124909628733fcb28cc54ddbef *inst/include/stan/math/mix/functor.hpp
685e4f0f9dfd1d909286784681253b03 *inst/include/stan/math/mix/functor/derivative.hpp
8e01b9693ab4f87bdf4b0e9351092947 *inst/include/stan/math/mix/functor/finite_diff_grad_hessian.hpp
c05d2c20c312c908a7df5f7cbf709326 *inst/include/stan/math/mix/functor/finite_diff_grad_hessian_auto.hpp
2d8958b96cc7c8583de3ae0a03eef723 *inst/include/stan/math/mix/functor/grad_hessian.hpp
37ccb329d5bb5041d0dc19079517fc9a *inst/include/stan/math/mix/functor/grad_tr_mat_times_hessian.hpp
2d5ffa2d40cee802a2a473fba17d4df5 *inst/include/stan/math/mix/functor/gradient_dot_vector.hpp
79214802983bd9af1df26ee3ee0227f2 *inst/include/stan/math/mix/functor/hessian.hpp
efcce67c226c13be2bc65363269bc669 *inst/include/stan/math/mix/functor/hessian_times_vector.hpp
21a86e7ee301fc020d62c909c6598b62 *inst/include/stan/math/mix/functor/partial_derivative.hpp
ee3e7f002e5fd62eaf43c1fd4b8f0fb5 *inst/include/stan/math/mix/meta.hpp
0f037ec6c19f3e8e49647b23b2001005 *inst/include/stan/math/opencl/buffer_types.hpp
20a31e5bef0fbba2a9a08110efe9c8b0 *inst/include/stan/math/opencl/cholesky_decompose.hpp
4640456190e6385285b6e68c31964995 *inst/include/stan/math/opencl/copy.hpp
11a5ddccabbbe439d9e7fe51a29a8d2e *inst/include/stan/math/opencl/double_d.hpp
97dfbee3356d0ea4e8eeb5a9ae87a8ee *inst/include/stan/math/opencl/err.hpp
b40469150625d05af4987d0af298f081 *inst/include/stan/math/opencl/err/check_mat_size_one.hpp
d6ab44078c7d66da97532574a085da51 *inst/include/stan/math/opencl/err/check_opencl.hpp
aa00d4ce062f145a2774525565b8a9d7 *inst/include/stan/math/opencl/err/check_symmetric.hpp
2f7de7eb86aff999a7cf7736c12acee8 *inst/include/stan/math/opencl/err/check_triangular.hpp
c13dd7561313a70e23c2aca9b6027218 *inst/include/stan/math/opencl/indexing_rev.hpp
9a638c0b36048b4f249d435300f73d94 *inst/include/stan/math/opencl/is_constant.hpp
e9b53341e0217fb74016b7bbb2122785 *inst/include/stan/math/opencl/kernel_cl.hpp
0dac56781413a44b72c65828021c2b58 *inst/include/stan/math/opencl/kernel_generator.hpp
3ff171ea66aa499ad6c36397790d4d61 *inst/include/stan/math/opencl/kernel_generator/append.hpp
dbf80d303a9b00b719e99cb4c2859134 *inst/include/stan/math/opencl/kernel_generator/as_column_vector_or_scalar.hpp
023569ed2c60dcc3cc9dbb65f0c338d9 *inst/include/stan/math/opencl/kernel_generator/as_operation_cl.hpp
84116b3fdb0ecb4300e31dbb65e852e3 *inst/include/stan/math/opencl/kernel_generator/binary_operation.hpp
d2b91a2df0fb67717eaa1a675703c4b1 *inst/include/stan/math/opencl/kernel_generator/block_zero_based.hpp
477df705d59db169dd1dc9565f110132 *inst/include/stan/math/opencl/kernel_generator/broadcast.hpp
5144fa12d8dc1296988ff2d0911ef516 *inst/include/stan/math/opencl/kernel_generator/calc_if.hpp
4f157c1f611606b0ae85e1c6779d689d *inst/include/stan/math/opencl/kernel_generator/cast.hpp
7ffe61497afd4be62d8bc458e9b18019 *inst/include/stan/math/opencl/kernel_generator/check_cl.hpp
b98bd685077896c966acf96f23d7eca0 *inst/include/stan/math/opencl/kernel_generator/colwise_reduction.hpp
c27c0c0771ac25813b3c16d18641a1fc *inst/include/stan/math/opencl/kernel_generator/common_return_scalar.hpp
3e0c61980fcdac171ce585eb46ebdcaf *inst/include/stan/math/opencl/kernel_generator/compound_assignments.hpp
b0a48489821511397ac9bb79e73bc16c *inst/include/stan/math/opencl/kernel_generator/constant.hpp
2805199e4cb5895dd1fc62499bcc654d *inst/include/stan/math/opencl/kernel_generator/diagonal.hpp
951bc18467ed60eae2168b8b07189e4b *inst/include/stan/math/opencl/kernel_generator/elt_function_cl.hpp
012e55f60f8decddd32a1c7f6750d7d2 *inst/include/stan/math/opencl/kernel_generator/evaluate_into.hpp
8eb6ca6e52b53e31d5264664dafbe015 *inst/include/stan/math/opencl/kernel_generator/get_kernel_source_for_evaluating_into.hpp
d883e6632b34adcf45ae48bc9ec9ef2b *inst/include/stan/math/opencl/kernel_generator/holder_cl.hpp
0929116e1c038d3e3ee5a22ca6097385 *inst/include/stan/math/opencl/kernel_generator/index.hpp
b824f367eb278b79d620fade1c599215 *inst/include/stan/math/opencl/kernel_generator/indexing.hpp
d830a88d3aa1c4b714f5e47fc851e716 *inst/include/stan/math/opencl/kernel_generator/load.hpp
a266b316c886c6e05df465b0c3ba1d2c *inst/include/stan/math/opencl/kernel_generator/matrix_cl_conversion.hpp
fc4f6afcfb1fa98ce44c6b197dc81538 *inst/include/stan/math/opencl/kernel_generator/matrix_vector_multiply.hpp
c3d811321a5a983bc99e6af3bd2701b0 *inst/include/stan/math/opencl/kernel_generator/multi_result_kernel.hpp
8cfcd4196c6787724897d9b4ac15ec5d *inst/include/stan/math/opencl/kernel_generator/name_generator.hpp
d18e9fb215a531b313552bfe28c64158 *inst/include/stan/math/opencl/kernel_generator/opencl_code.hpp
97d4e36b60bb46f08bc539192fe30f57 *inst/include/stan/math/opencl/kernel_generator/operation_cl.hpp
e5284f8cfd2cdbb17cb59c502e33ebab *inst/include/stan/math/opencl/kernel_generator/operation_cl_lhs.hpp
9d9ca8d1a86beb4bfe0caa25669d5fca *inst/include/stan/math/opencl/kernel_generator/optional_broadcast.hpp
b51f33e9490f546de01faec12e78b1f3 *inst/include/stan/math/opencl/kernel_generator/reduction_2d.hpp
8eb63f9f78e1ad47ede1fe3ee6a8340f *inst/include/stan/math/opencl/kernel_generator/rowwise_reduction.hpp
877565687c09b1491f5aa105292c23d5 *inst/include/stan/math/opencl/kernel_generator/scalar.hpp
d505556d4a9aab537014f4739ae6aca0 *inst/include/stan/math/opencl/kernel_generator/select.hpp
86a7c40a00e66b75f17353c3ae75aae6 *inst/include/stan/math/opencl/kernel_generator/transpose.hpp
d2e94a2f17293f0f8169cf6db3497624 *inst/include/stan/math/opencl/kernel_generator/type_str.hpp
328df994b2db7660ee854b5aa278b4c6 *inst/include/stan/math/opencl/kernel_generator/unary_operation_cl.hpp
dd3d8e4ca2f58ba1b907943cbe2413ac *inst/include/stan/math/opencl/kernels/add.hpp
75fefc2f1ecf9d4fc4d6392477a65221 *inst/include/stan/math/opencl/kernels/batch_identity.hpp
7b2004d2668153bdbbca0fb5677308aa *inst/include/stan/math/opencl/kernels/categorical_logit_glm_lpmf.hpp
f3067ec6b6480cff5b4707b7a7b8009f *inst/include/stan/math/opencl/kernels/check_symmetric.hpp
c07859df72dcc86fc138da456edd386d *inst/include/stan/math/opencl/kernels/cholesky_decompose.hpp
3838b277bd6c9c7e1d91189b8bbde292 *inst/include/stan/math/opencl/kernels/cumulative_sum.hpp
155e727688e5fdc6cb0b163ad400cc0d *inst/include/stan/math/opencl/kernels/device_functions/Phi.hpp
2bcd230593ad9aa474753ddb0ef3e7ab *inst/include/stan/math/opencl/kernels/device_functions/Phi_approx.hpp
f921eb06bacdbf8e963d31baf8c6508d *inst/include/stan/math/opencl/kernels/device_functions/atomic_add_double.hpp
e42713b67bcce9b052bb53ac7b9a6eac *inst/include/stan/math/opencl/kernels/device_functions/beta.hpp
6a64f1d87c160ecdd8201b237d8c835b *inst/include/stan/math/opencl/kernels/device_functions/binomial_coefficient_log.hpp
037054888e1abb54e5ac085d779d7063 *inst/include/stan/math/opencl/kernels/device_functions/digamma.hpp
6b836658f7e33617191bab10d921fc48 *inst/include/stan/math/opencl/kernels/device_functions/inv_Phi.hpp
cb934c2cd8603521fc3522d9a076c191 *inst/include/stan/math/opencl/kernels/device_functions/inv_logit.hpp
9e97990e66de51ce6582e59675eb34fd *inst/include/stan/math/opencl/kernels/device_functions/inv_square.hpp
6123bb3ab363b78f6baf22427148bbe5 *inst/include/stan/math/opencl/kernels/device_functions/lbeta.hpp
3d5c45486e5a68fa3aba3ef37574666f *inst/include/stan/math/opencl/kernels/device_functions/lgamma_stirling.hpp
a1d34e7f9dcfd8a5c084372a7a9b2bdd *inst/include/stan/math/opencl/kernels/device_functions/lgamma_stirling_diff.hpp
b96edd89ba9007b842f7b34b25355133 *inst/include/stan/math/opencl/kernels/device_functions/lmultiply.hpp
2c3c451fac1e3c8fc580d00942ec2101 *inst/include/stan/math/opencl/kernels/device_functions/log1m.hpp
8e65b9d22a6daf02ba9b1283643f8d75 *inst/include/stan/math/opencl/kernels/device_functions/log1m_exp.hpp
66263dbf2cdeee129977e11424bacde1 *inst/include/stan/math/opencl/kernels/device_functions/log1m_inv_logit.hpp
fbb75a1721058de0040ae44f9a68a21e *inst/include/stan/math/opencl/kernels/device_functions/log1p_exp.hpp
3e54b342a170f72af8150d14cddd1e9b *inst/include/stan/math/opencl/kernels/device_functions/log_diff_exp.hpp
0c951e05ceb942c8e19c0684519f8545 *inst/include/stan/math/opencl/kernels/device_functions/log_inv_logit.hpp
4ff2fb914621b67802d4ce886f240b99 *inst/include/stan/math/opencl/kernels/device_functions/log_inv_logit_diff.hpp
7a0bdb7adaf13bfd674ba1a8b951f531 *inst/include/stan/math/opencl/kernels/device_functions/logit.hpp
717045e5ac569c5dab587ec0d51564a8 *inst/include/stan/math/opencl/kernels/device_functions/multiply_log.hpp
e9c0c0095f1af59d8934088979dedd12 *inst/include/stan/math/opencl/kernels/device_functions/trigamma.hpp
8bba841fbeeb9dda858f87432c776f82 *inst/include/stan/math/opencl/kernels/diag_inv.hpp
509c3bd24b44001134477af5bb971054 *inst/include/stan/math/opencl/kernels/divide_columns.hpp
4e018333f7b6c5e1a6e09d923029b143 *inst/include/stan/math/opencl/kernels/fill_strict_tri.hpp
121d24a0913ff2962a22e129c28c498a *inst/include/stan/math/opencl/kernels/gp_exp_quad_cov.hpp
2f3ea6796ace8268f6dcf059ac460b2f *inst/include/stan/math/opencl/kernels/gp_exponential_cov.hpp
b801ba68c5a9e97a26f30cce80a484d8 *inst/include/stan/math/opencl/kernels/gp_matern32_cov.hpp
001c05f61c3c5991d093a53dee5d0819 *inst/include/stan/math/opencl/kernels/gp_matern52_cov.hpp
6a696ae91f1ea2d9fa9ad793ce00fdee *inst/include/stan/math/opencl/kernels/helpers.hpp
9689679fbe42d61f6f0ed63b14c7a674 *inst/include/stan/math/opencl/kernels/indexing_rev.hpp
971075bd9773cc874bd308dd03b7a0c1 *inst/include/stan/math/opencl/kernels/inv_lower_tri_multiply.hpp
a24acc43436efcefb5586924fceeec26 *inst/include/stan/math/opencl/kernels/matrix_multiply.hpp
0b2e71f2c5ac3b2331cdc685b3d606a9 *inst/include/stan/math/opencl/kernels/mergesort.hpp
626e81ff9c18d67cf29dae2c444898a7 *inst/include/stan/math/opencl/kernels/mrrr.hpp
87dc729c54d9a19706eb74688f750886 *inst/include/stan/math/opencl/kernels/multiply_transpose.hpp
cfbf56114d22e4cf044b2252653b9840 *inst/include/stan/math/opencl/kernels/neg_binomial_2_log_glm_lpmf.hpp
2494cc7a7efe60ec5d9b8ac60a087a53 *inst/include/stan/math/opencl/kernels/neg_rect_lower_tri_multiply.hpp
7d778948dca6000c43b6345a129b2691 *inst/include/stan/math/opencl/kernels/ordered_logistic_glm_lpmf.hpp
ee506eef7b11cc649865ccb4bf11de5f *inst/include/stan/math/opencl/kernels/ordered_logistic_lpmf.hpp
4a363d85fc7321badc3204c0153a9773 *inst/include/stan/math/opencl/kernels/pack.hpp
087f8cb3813059331322a9dee1781c71 *inst/include/stan/math/opencl/kernels/rep_matrix.hpp
c3b7aaa189a7c568da9190fbba71fd04 *inst/include/stan/math/opencl/kernels/tridiagonalization.hpp
a022d3112669b2b4eea5b945d2cb86b4 *inst/include/stan/math/opencl/kernels/unpack.hpp
6fde28f857fbd4f4eaa90b6b180b8125 *inst/include/stan/math/opencl/matrix_cl.hpp
9c9db68671c99d632223fce94b759bd7 *inst/include/stan/math/opencl/matrix_cl_view.hpp
9715769389e426a83609f506392b2a4c *inst/include/stan/math/opencl/mrrr.hpp
99ebe9aef3d976d399500caaef505571 *inst/include/stan/math/opencl/multiply_transpose.hpp
43ce08f75406fbcdd864b48aa49b413b *inst/include/stan/math/opencl/opencl_context.hpp
558059c74c8c87eabd4625f50ed35884 *inst/include/stan/math/opencl/pinned_matrix.hpp
6d8c610c02ec2d4565c548942057594f *inst/include/stan/math/opencl/plain_type.hpp
ffd3391456d6d3547ef98208e8670a64 *inst/include/stan/math/opencl/prim.hpp
a511536738338888da66f2350de34a02 *inst/include/stan/math/opencl/prim/add_diag.hpp
6c17700adfb542ed50e1b5fb2b336d0f *inst/include/stan/math/opencl/prim/append_array.hpp
26388b771733e869adde639f60d0463d *inst/include/stan/math/opencl/prim/bernoulli_cdf.hpp
9e0955a5f1a9dfd0c2d6fa6d56366e91 *inst/include/stan/math/opencl/prim/bernoulli_lccdf.hpp
7119100f35727dd8a04b6a15cf7d9704 *inst/include/stan/math/opencl/prim/bernoulli_lcdf.hpp
624f3d26479f101e5c26a1badf97de84 *inst/include/stan/math/opencl/prim/bernoulli_logit_glm_lpmf.hpp
0fb6bc4fc0e667124704bdf008dce41b *inst/include/stan/math/opencl/prim/bernoulli_logit_lpmf.hpp
8cbd28e00f6a9ff376a70f0050fa1c14 *inst/include/stan/math/opencl/prim/bernoulli_lpmf.hpp
fec7e68a86a12f8fae62685c9a2a3bd5 *inst/include/stan/math/opencl/prim/beta_binomial_lpmf.hpp
cc3a0aa725bc3b3db6688c7aa5d403e2 *inst/include/stan/math/opencl/prim/beta_lpdf.hpp
d4343edded1a27aee96c89db497d9559 *inst/include/stan/math/opencl/prim/beta_proportion_lpdf.hpp
8ead6285f1a89e33d2c116daeb316e5e *inst/include/stan/math/opencl/prim/binomial_logit_lpmf.hpp
df48b00e136c16603a703b798e5cbc23 *inst/include/stan/math/opencl/prim/binomial_lpmf.hpp
faf1683f87d11604f30bf20a01496190 *inst/include/stan/math/opencl/prim/block.hpp
667a48e7eb9533c80594528430359210 *inst/include/stan/math/opencl/prim/categorical_logit_glm_lpmf.hpp
5e7aff34d4b33ea95f0f7a24147a9893 *inst/include/stan/math/opencl/prim/cauchy_cdf.hpp
e58bdc7900e4f4868568166587ef3d37 *inst/include/stan/math/opencl/prim/cauchy_lccdf.hpp
dc818af77c854149d9b6304e17831b73 *inst/include/stan/math/opencl/prim/cauchy_lcdf.hpp
b4a556460bb09581beea38f7cf87b46b *inst/include/stan/math/opencl/prim/cauchy_lpdf.hpp
13a13cb4f7955b2c548c0fe6b6e8b613 *inst/include/stan/math/opencl/prim/chi_square_lpdf.hpp
c813e1508c4815cd3ca44d4912254023 *inst/include/stan/math/opencl/prim/cholesky_decompose.hpp
ed2a029c0a0d5413103dbfe0f9813e37 *inst/include/stan/math/opencl/prim/col.hpp
6c3939979a3b594435587b026fdce3a3 *inst/include/stan/math/opencl/prim/cols.hpp
dcf8dab42275d330ead12a27b67441af *inst/include/stan/math/opencl/prim/columns_dot_product.hpp
6c6a1e6e07f878e368f2886676d01449 *inst/include/stan/math/opencl/prim/columns_dot_self.hpp
f3dce9239737ddcf4072b93c3928b5f8 *inst/include/stan/math/opencl/prim/crossprod.hpp
3d107b37ba0bcb2a55c22e87a94297a8 *inst/include/stan/math/opencl/prim/cumulative_sum.hpp
4be10afb3fb21f497241fc88e214c671 *inst/include/stan/math/opencl/prim/diag_matrix.hpp
c72a9217ff89c89b26ab8d302242dddd *inst/include/stan/math/opencl/prim/diag_post_multiply.hpp
7c03ba23b077c8d282a8522feef59a74 *inst/include/stan/math/opencl/prim/diag_pre_multiply.hpp
60959340b5cacaa5a66e3e4cde17b10e *inst/include/stan/math/opencl/prim/dims.hpp
f309566e9f8d6b04f7deff97c0a00f83 *inst/include/stan/math/opencl/prim/dirichlet_lpdf.hpp
c705f1b0ca1f2f04b7689c980bcd8bae *inst/include/stan/math/opencl/prim/distance.hpp
25d05ac155998ad9ee94429b63b09b43 *inst/include/stan/math/opencl/prim/divide.hpp
4017a3085f22959bcb796399ca4d8c27 *inst/include/stan/math/opencl/prim/divide_columns.hpp
ec502cd6a8cfbc28f97b321e63e20c23 *inst/include/stan/math/opencl/prim/dot_product.hpp
b4c4d4f3ae414b8c8c2126eb8871f743 *inst/include/stan/math/opencl/prim/dot_self.hpp
2af0b79bfd8c620f42451c7ceac546b1 *inst/include/stan/math/opencl/prim/double_exponential_cdf.hpp
913ce5654020856d0bd3866c5bdb8bfb *inst/include/stan/math/opencl/prim/double_exponential_lccdf.hpp
c693a7af83602cd1675b6b14d0b99a6e *inst/include/stan/math/opencl/prim/double_exponential_lcdf.hpp
9361a0348251e0bbdc66c3d7bcae3d6b *inst/include/stan/math/opencl/prim/double_exponential_lpdf.hpp
ef78324ec2e6f741adc00b7bce2122d9 *inst/include/stan/math/opencl/prim/eigenvalues_sym.hpp
d81ba31564631d3cb66dbe8822f6a346 *inst/include/stan/math/opencl/prim/eigenvectors_sym.hpp
018d455934287796709bb194390c7330 *inst/include/stan/math/opencl/prim/exp_mod_normal_cdf.hpp
ecf67bc47cfa820e162880208e88d08e *inst/include/stan/math/opencl/prim/exp_mod_normal_lccdf.hpp
88ab861847f7c3adc9bb0186c8c483aa *inst/include/stan/math/opencl/prim/exp_mod_normal_lcdf.hpp
27fdfadf73f88359afe4e997b25531a3 *inst/include/stan/math/opencl/prim/exp_mod_normal_lpdf.hpp
eef56962ababb3a6d953f19c4d7bbf65 *inst/include/stan/math/opencl/prim/exponential_cdf.hpp
8735c5aeb6f2f33b0ecff63ede9de9f4 *inst/include/stan/math/opencl/prim/exponential_lccdf.hpp
070e6f2c82226d7b968e8f52241fdea3 *inst/include/stan/math/opencl/prim/exponential_lcdf.hpp
cc46827dc9ba2425e4939f92ecf3b40f *inst/include/stan/math/opencl/prim/exponential_lpdf.hpp
1f3e32dd7823211cb99d3ecea1d769f1 *inst/include/stan/math/opencl/prim/frechet_cdf.hpp
4e93c2ef234ea23ece246fb528413846 *inst/include/stan/math/opencl/prim/frechet_lccdf.hpp
2c9758cf9460ed23c48e09e3899147e8 *inst/include/stan/math/opencl/prim/frechet_lcdf.hpp
7a869d62b9bcbfe7409c4b939bfde74a *inst/include/stan/math/opencl/prim/frechet_lpdf.hpp
6b870586df1b7ba308c579613879e06c *inst/include/stan/math/opencl/prim/gamma_lpdf.hpp
c7c64d488d8981dd7f31fa4278db416b *inst/include/stan/math/opencl/prim/gp_dot_prod_cov.hpp
4ff823af467fe4eee1b69912945943d3 *inst/include/stan/math/opencl/prim/gp_exp_quad_cov.hpp
a66a252ca66afe72cf77f7f2e91b2a93 *inst/include/stan/math/opencl/prim/gp_exponential_cov.hpp
b4cab9e82bf80c97bb9d52f46c9d5c39 *inst/include/stan/math/opencl/prim/gp_matern32_cov.hpp
c6e752cedbc35f0fb709afbdd4f879f7 *inst/include/stan/math/opencl/prim/gp_matern52_cov.hpp
e7943781440e6742c618b4e312722259 *inst/include/stan/math/opencl/prim/gumbel_cdf.hpp
e7084f587061d8dad56c17ca6594ecdd *inst/include/stan/math/opencl/prim/gumbel_lccdf.hpp
a274bb67978e903e598ee07f95fd54fc *inst/include/stan/math/opencl/prim/gumbel_lcdf.hpp
02fe015a16e0a29f990a1e6d58a8c79e *inst/include/stan/math/opencl/prim/gumbel_lpdf.hpp
7d1da5f23abca26ac7d8fd2abf82a3f5 *inst/include/stan/math/opencl/prim/head.hpp
8ff4ca346c9e2db48db19bcf8b6bbac2 *inst/include/stan/math/opencl/prim/identity_matrix.hpp
b5c7d5a9de4c9123f781a8c1f837e827 *inst/include/stan/math/opencl/prim/inv.hpp
eed4d6116b3cf1bf37a8375024510608 *inst/include/stan/math/opencl/prim/inv_chi_square_lpdf.hpp
abab87f227afb75e87afb1b74364dec3 *inst/include/stan/math/opencl/prim/inv_cloglog.hpp
6b919135790d3fb50f7c81ec18dc0444 *inst/include/stan/math/opencl/prim/inv_gamma_lpdf.hpp
994d8778e35ed961d01df96916120226 *inst/include/stan/math/opencl/prim/inv_sqrt.hpp
7f44b506ac3ee916fb53e805f3dd8f11 *inst/include/stan/math/opencl/prim/lb_constrain.hpp
4530504f614ec11432227d83b24d46b0 *inst/include/stan/math/opencl/prim/log_mix.hpp
0ff378087c0ac43bbc0cd299e1873264 *inst/include/stan/math/opencl/prim/log_softmax.hpp
1e61500533dbf180bc22ec09f958aeae *inst/include/stan/math/opencl/prim/log_sum_exp.hpp
a30c32d68aebb337d50ac613b0b41c06 *inst/include/stan/math/opencl/prim/logistic_cdf.hpp
c48048401728c384a946d02595d939db *inst/include/stan/math/opencl/prim/logistic_lccdf.hpp
af2fbb6cced13c0a8d4713e072a46eae *inst/include/stan/math/opencl/prim/logistic_lcdf.hpp
f436d86c327809432c217609b5d4f746 *inst/include/stan/math/opencl/prim/logistic_lpdf.hpp
80538d13fcf9dabb97bb7e9f7bd2759a *inst/include/stan/math/opencl/prim/lognormal_cdf.hpp
d063448f070b1ad87c72dba39afbabf7 *inst/include/stan/math/opencl/prim/lognormal_lccdf.hpp
5fd0d42b2eaa1ff95484360fdc59b536 *inst/include/stan/math/opencl/prim/lognormal_lcdf.hpp
e4f800b359909337c2fa44c6a28ca848 *inst/include/stan/math/opencl/prim/lognormal_lpdf.hpp
eeb62003965a16c4b3d73a12caf59f5e *inst/include/stan/math/opencl/prim/lub_constrain.hpp
b9dc7639a50b094fc3cf39f1624673c1 *inst/include/stan/math/opencl/prim/matrix_power.hpp
25dddd4feb7c90d6c930f9d961b67f85 *inst/include/stan/math/opencl/prim/mdivide_left_tri_low.hpp
68446285af7c66f0d9f682a6679959f7 *inst/include/stan/math/opencl/prim/mdivide_right_tri_low.hpp
28070fa98b65006bd8961efdf74a0b96 *inst/include/stan/math/opencl/prim/mean.hpp
2d3b4836ab9def5a64677b945714ae44 *inst/include/stan/math/opencl/prim/multi_normal_cholesky_lpdf.hpp
41dbbcb7f7e8288fbc32d96ea9905a4b *inst/include/stan/math/opencl/prim/multiply.hpp
5c4d126e9576bab2fc0399d294430e7a *inst/include/stan/math/opencl/prim/multiply_lower_tri_self_transpose.hpp
8026927ee15ae38c47838701adcb67be *inst/include/stan/math/opencl/prim/neg_binomial_2_log_glm_lpmf.hpp
8e47d869d00ff37fa55b2a24d9958554 *inst/include/stan/math/opencl/prim/neg_binomial_2_log_lpmf.hpp
e82ccad672468e0ac38ce4b00f1a4ed9 *inst/include/stan/math/opencl/prim/neg_binomial_2_lpmf.hpp
45aedf4e5f75707653af228ee9e57dd5 *inst/include/stan/math/opencl/prim/neg_binomial_lpmf.hpp
99fc76a9435411799b015adf6eb2b00c *inst/include/stan/math/opencl/prim/normal_cdf.hpp
1faeaa98e3253aa073e1c677c0b7a321 *inst/include/stan/math/opencl/prim/normal_id_glm_lpdf.hpp
9d4a3fcff04317143c2fcbe53af246d8 *inst/include/stan/math/opencl/prim/normal_lccdf.hpp
9d2209d16a88f0451e137f3fd8068273 *inst/include/stan/math/opencl/prim/normal_lcdf.hpp
1d3752268e80ad5cdc27b3e3e3295f60 *inst/include/stan/math/opencl/prim/normal_lpdf.hpp
3829659544fe251d02ea3c446e86a02f *inst/include/stan/math/opencl/prim/num_elements.hpp
c2f65330bea96f2bbf1f79ee2d32f2e2 *inst/include/stan/math/opencl/prim/offset_multiplier_constrain.hpp
ccd942cc28742618a66fa1136a49be73 *inst/include/stan/math/opencl/prim/ordered_logistic_glm_lpmf.hpp
ac8398bc1c467c39a68afc5f83d52dc6 *inst/include/stan/math/opencl/prim/ordered_logistic_lpmf.hpp
e7b598049a4e74e6d83cb8e9bf015968 *inst/include/stan/math/opencl/prim/pareto_cdf.hpp
eb7856fb5e839dc6a1663ca059babe15 *inst/include/stan/math/opencl/prim/pareto_lccdf.hpp
d5d4ef844d26975431beedab44e69e22 *inst/include/stan/math/opencl/prim/pareto_lcdf.hpp
dacc9d1fe72461a0eff28454623b53e2 *inst/include/stan/math/opencl/prim/pareto_lpdf.hpp
bcb8387893a81243daf6ad6dcb57c15d *inst/include/stan/math/opencl/prim/pareto_type_2_cdf.hpp
50552b9cf62d14aa179e41eb9b0951f5 *inst/include/stan/math/opencl/prim/pareto_type_2_lccdf.hpp
bd55827bff4e653f758d275d1f70e113 *inst/include/stan/math/opencl/prim/pareto_type_2_lcdf.hpp
03b55898172d692acf33ff12d7f3a0fe *inst/include/stan/math/opencl/prim/pareto_type_2_lpdf.hpp
502edcc696622291d171138a974d05e5 *inst/include/stan/math/opencl/prim/poisson_log_glm_lpmf.hpp
ea6d4af07ac7721db0c7eea43184097f *inst/include/stan/math/opencl/prim/poisson_log_lpmf.hpp
c0e55d157f4440928d35ff53f70de61a *inst/include/stan/math/opencl/prim/poisson_lpmf.hpp
4c8058f68e066f82732f0f3c979d90f2 *inst/include/stan/math/opencl/prim/prod.hpp
b368713ba31cc6be3e253dc6fc440832 *inst/include/stan/math/opencl/prim/qr_Q.hpp
ad67d62dc3c6f11d0ff2458852c29beb *inst/include/stan/math/opencl/prim/qr_R.hpp
c763986bd7b0143d16d30784c0b61e88 *inst/include/stan/math/opencl/prim/qr_thin_Q.hpp
39a86748cb8c18b8caa27d678d81978c *inst/include/stan/math/opencl/prim/qr_thin_R.hpp
2b44f05e84c219d9a33a443fd476f34c *inst/include/stan/math/opencl/prim/rank.hpp
329b5424cec96925c77989953893fa37 *inst/include/stan/math/opencl/prim/rayleigh_cdf.hpp
dcdc35aa0d6ff762102faaff1b2f184f *inst/include/stan/math/opencl/prim/rayleigh_lccdf.hpp
503384aa946d71111db3cb97199a1ab1 *inst/include/stan/math/opencl/prim/rayleigh_lcdf.hpp
fd510ea5dfa06416cd0ca76b42522393 *inst/include/stan/math/opencl/prim/rayleigh_lpdf.hpp
6226773d06e283b9bd1ca0150ea98879 *inst/include/stan/math/opencl/prim/rep_array.hpp
5d27ec9ae5620f1b1eac06a8baee356a *inst/include/stan/math/opencl/prim/rep_matrix.hpp
53534d9d11a517a34a355b235767e42d *inst/include/stan/math/opencl/prim/rep_row_vector.hpp
daa1b2f88d0344ccef76da379a88ee76 *inst/include/stan/math/opencl/prim/rep_vector.hpp
4a9faf024b8c7e4926a9e9fae61f2c3f *inst/include/stan/math/opencl/prim/reverse.hpp
65b1015c9d145801a066a1f6bb65181e *inst/include/stan/math/opencl/prim/row.hpp
fb5815c110d4310211d0e6ad80228623 *inst/include/stan/math/opencl/prim/rows.hpp
c1475a23f4c695b862fb1cfd4e1b50e3 *inst/include/stan/math/opencl/prim/rows_dot_product.hpp
4d1c342275320fbcfb6c1681293fe91f *inst/include/stan/math/opencl/prim/rows_dot_self.hpp
01c586d3718f62d296de8479144bab6a *inst/include/stan/math/opencl/prim/scaled_inv_chi_square_lpdf.hpp
8862aa3549b9da1bb39513e0e18670b6 *inst/include/stan/math/opencl/prim/sd.hpp
8bd4a53e32b013466e5c60065a96e2ec *inst/include/stan/math/opencl/prim/segment.hpp
3a448f909b100846ab6a4f3dc33f79d9 *inst/include/stan/math/opencl/prim/sign.hpp
0209a7056a11ae9784960f3a271a066e *inst/include/stan/math/opencl/prim/size.hpp
47e3a3b52c1e263a657bdc10e923c208 *inst/include/stan/math/opencl/prim/skew_double_exponential_cdf.hpp
06c84206699602feeabbcdef6d0b044c *inst/include/stan/math/opencl/prim/skew_double_exponential_lccdf.hpp
861b3ed1b1faf4df30b9711a3241d8bc *inst/include/stan/math/opencl/prim/skew_double_exponential_lcdf.hpp
157ed18153acdff4c464883be5fdb836 *inst/include/stan/math/opencl/prim/skew_double_exponential_lpdf.hpp
49cfdfa59da1c517aba0ee8db8c50146 *inst/include/stan/math/opencl/prim/skew_normal_lpdf.hpp
e846bed0dda2c265c133bdff4a30ac19 *inst/include/stan/math/opencl/prim/softmax.hpp
40b94903f88349f95d22c9f4edb178f8 *inst/include/stan/math/opencl/prim/sort_asc.hpp
e22edbb317602d905adb0a13b648b804 *inst/include/stan/math/opencl/prim/sort_desc.hpp
940b6cda57f11f526503eaf7d5c3ccc9 *inst/include/stan/math/opencl/prim/squared_distance.hpp
764c748932e6c61e8ee27316807af79e *inst/include/stan/math/opencl/prim/std_normal_cdf.hpp
dbd3fdb92199192e240b29cf2c2455e5 *inst/include/stan/math/opencl/prim/std_normal_lccdf.hpp
43a0936d65951c989129a90f07ff0e77 *inst/include/stan/math/opencl/prim/std_normal_lcdf.hpp
7bfddf1376b9c1388f00145d6f946455 *inst/include/stan/math/opencl/prim/std_normal_lpdf.hpp
888d5d3c891055b8aaf84bea4c42729c *inst/include/stan/math/opencl/prim/student_t_lpdf.hpp
df88e34d5c4678b0f241328541f097ef *inst/include/stan/math/opencl/prim/sub_col.hpp
dfa16f1c5e61c7ad37fe0b505aafaee6 *inst/include/stan/math/opencl/prim/sub_row.hpp
4ae458856498943229a46102fca46a2f *inst/include/stan/math/opencl/prim/sum.hpp
ea194139056b90d89e237ef8b8125f71 *inst/include/stan/math/opencl/prim/symmetrize_from_lower_tri.hpp
958e52d30965f1a82d8b031987193c02 *inst/include/stan/math/opencl/prim/symmetrize_from_upper_tri.hpp
25e55c4c8dea8edaf1c4e60a26766a9c *inst/include/stan/math/opencl/prim/tail.hpp
ff4171d613de82f4cf210e09d0d6be31 *inst/include/stan/math/opencl/prim/tcrossprod.hpp
4b06b0bc4f3f1b6c29a2115d11ad7ec9 *inst/include/stan/math/opencl/prim/to_array_1d.hpp
7f5fef849e9ec402f623151b355fb469 *inst/include/stan/math/opencl/prim/to_array_2d.hpp
98a4cdbdf82d0fcf0f7a90b0943579b8 *inst/include/stan/math/opencl/prim/to_matrix.hpp
d7302f7b18c07a74a76bb06c05eeee16 *inst/include/stan/math/opencl/prim/to_row_vector.hpp
3ef2ccc98cda4e651144fd9fce6c3e59 *inst/include/stan/math/opencl/prim/to_vector.hpp
68a4cd8e2148311a1d6cda5d27fc2ff6 *inst/include/stan/math/opencl/prim/trace.hpp
ada9b290524ccce0ad2cf817460b3253 *inst/include/stan/math/opencl/prim/ub_constrain.hpp
dd095d2df6d088a9f9f92dbcf43d5c99 *inst/include/stan/math/opencl/prim/uniform_cdf.hpp
923c9e58ebc689c0c0bb3c434e7f0da9 *inst/include/stan/math/opencl/prim/uniform_lccdf.hpp
27e8fd86f0f3de6e173eaf5966cd26b3 *inst/include/stan/math/opencl/prim/uniform_lcdf.hpp
ca935ed329980c24a57a15bcae4ab291 *inst/include/stan/math/opencl/prim/uniform_lpdf.hpp
2cf64669cf67a10f17a6eb499b7a46c6 *inst/include/stan/math/opencl/prim/unit_vector_constrain.hpp
556abc37cf30e22524a5e8b588e45807 *inst/include/stan/math/opencl/prim/variance.hpp
f67b1447718a15a0e3057affd799d4ca *inst/include/stan/math/opencl/prim/weibull_cdf.hpp
6407793b2ff874706c3714f7df0ec8e7 *inst/include/stan/math/opencl/prim/weibull_lccdf.hpp
6879722f1e1bdf7b330d4ad55df1e217 *inst/include/stan/math/opencl/prim/weibull_lcdf.hpp
0913679daa8d5cae1fef47e11b2fc118 *inst/include/stan/math/opencl/prim/weibull_lpdf.hpp
419e6541a01e03acc248a0f742dfe3dd *inst/include/stan/math/opencl/qr_decomposition.hpp
242d49702d438d3d04c1081b3712e0f2 *inst/include/stan/math/opencl/ref_type.hpp
f626a7f36f067789abbf20c8443a92f4 *inst/include/stan/math/opencl/ref_type_for_opencl.hpp
c98ed245228e17c33afccda477ca8e47 *inst/include/stan/math/opencl/rev.hpp
532d166955ad9cddb611bf81b8a7b7a2 *inst/include/stan/math/opencl/rev/Phi.hpp
a7ffa95dfda806a930f554270566505e *inst/include/stan/math/opencl/rev/Phi_approx.hpp
c14dfdd0a6fa4b481d209504c2f81134 *inst/include/stan/math/opencl/rev/acos.hpp
16dc2205a40dbf3d4cbd54196baa7ae2 *inst/include/stan/math/opencl/rev/acosh.hpp
02bc0371c3431eca49a9a1393afb5ed8 *inst/include/stan/math/opencl/rev/add.hpp
f6bd59b43e114d8eb8d954d83aecc843 *inst/include/stan/math/opencl/rev/add_diag.hpp
31916660ec7fb3e192b9a8936df2d2da *inst/include/stan/math/opencl/rev/adjoint_results.hpp
dcb880091378436078741b3b0d78e3d1 *inst/include/stan/math/opencl/rev/append_col.hpp
5cab38db3315ee8d9358543597c7722e *inst/include/stan/math/opencl/rev/append_row.hpp
c1c7278cb8aef9d83304cd355dd80aa2 *inst/include/stan/math/opencl/rev/arena_matrix_cl.hpp
11e9d8cfac6e7f00b0f09d94969e9323 *inst/include/stan/math/opencl/rev/arena_type.hpp
5a46a343e00549e20aebb9b9873444cf *inst/include/stan/math/opencl/rev/as_column_vector_or_scalar.hpp
0a4faa104867dfa07a46a25e334995c5 *inst/include/stan/math/opencl/rev/asin.hpp
636d5dda9d870959750cc7302a21da0b *inst/include/stan/math/opencl/rev/asinh.hpp
50da989fe829f90459b8e432575537e7 *inst/include/stan/math/opencl/rev/atan.hpp
b0f5fa2ec1e4f3436bb0e1dd7839e2dd *inst/include/stan/math/opencl/rev/atanh.hpp
166a9a16bd388069823e59fde3ae9935 *inst/include/stan/math/opencl/rev/beta.hpp
6137c58daf8ba179530475bafbb2c456 *inst/include/stan/math/opencl/rev/block.hpp
e573e0a1672433d0dd18b9aee0cd86bc *inst/include/stan/math/opencl/rev/cbrt.hpp
275c390a1894c1fd6c05a8ead9defe62 *inst/include/stan/math/opencl/rev/ceil.hpp
8ac810801bad22350e7ad03b03ddb235 *inst/include/stan/math/opencl/rev/cholesky_decompose.hpp
abe3f56bdfdc2be99a63eb7c1702bfb6 *inst/include/stan/math/opencl/rev/columns_dot_product.hpp
4917285f34a6cd1dc15e8be06ae53ee9 *inst/include/stan/math/opencl/rev/columns_dot_self.hpp
6957d8c836dac5620e50af2df7c3d9a7 *inst/include/stan/math/opencl/rev/copy.hpp
6befdc4de165acc3c2e77690d5110061 *inst/include/stan/math/opencl/rev/cos.hpp
135d3d6785f34b2ac4e244f247c435e9 *inst/include/stan/math/opencl/rev/cosh.hpp
dd9be5df64ffd2bfa4a162bcc9dbc595 *inst/include/stan/math/opencl/rev/crossprod.hpp
ef00166dec6d95d4ca6b6a31d5e1d458 *inst/include/stan/math/opencl/rev/cumulative_sum.hpp
8cd7162873d331ce8fd5017dd1c4089e *inst/include/stan/math/opencl/rev/diag_matrix.hpp
4f49928700b5ccc4f8563c86ffe54502 *inst/include/stan/math/opencl/rev/diag_post_multiply.hpp
b733640ebdd55ef8030589c532181883 *inst/include/stan/math/opencl/rev/diag_pre_multiply.hpp
e984b40ed82885f494d7269c6a69d47a *inst/include/stan/math/opencl/rev/diagonal.hpp
8cbd152a6e6166030b2a1be0003ad285 *inst/include/stan/math/opencl/rev/digamma.hpp
d4e4cd6d8e44b67e87d3ceb2ff8cc6c1 *inst/include/stan/math/opencl/rev/divide.hpp
2de44070291a7540453d6a141426b214 *inst/include/stan/math/opencl/rev/dot_product.hpp
e6f99f05431c3ea596db4a8de8dab421 *inst/include/stan/math/opencl/rev/dot_self.hpp
3d2e9571b0a82f0043455491cb247342 *inst/include/stan/math/opencl/rev/elt_divide.hpp
00981cd44354fdad761ddd9c1066f78f *inst/include/stan/math/opencl/rev/elt_multiply.hpp
81119202967f000ce3f130884051e009 *inst/include/stan/math/opencl/rev/erf.hpp
32f89168b16d5e8f3ed26d7d915226c1 *inst/include/stan/math/opencl/rev/erfc.hpp
a5ccbc8802f09415beae2e09d53871fd *inst/include/stan/math/opencl/rev/exp.hpp
54823fefc68878328e3011e68bf68ad3 *inst/include/stan/math/opencl/rev/exp2.hpp
bdf0e946003e6768db87d178599f2c36 *inst/include/stan/math/opencl/rev/expm1.hpp
de9a0bd36a9800437c34425cadfd860b *inst/include/stan/math/opencl/rev/fabs.hpp
d7478c40c41b24386a06589075d89208 *inst/include/stan/math/opencl/rev/fdim.hpp
13ab54496a7e32d2df3f6ca37ddb7e5d *inst/include/stan/math/opencl/rev/floor.hpp
673e499bd6f614dba6bce09e597e3ec0 *inst/include/stan/math/opencl/rev/fmax.hpp
50c09f335942bfd2f5d55aee9235b31a *inst/include/stan/math/opencl/rev/fmin.hpp
57b7de4f5a4ce6b60c2e9531fdbf6782 *inst/include/stan/math/opencl/rev/fmod.hpp
97fde0fd64bb0e7dcc064364ddc9ccdb *inst/include/stan/math/opencl/rev/hypot.hpp
e7ba19b9d2d9550a0f6e71c9d7a8b88d *inst/include/stan/math/opencl/rev/inv.hpp
4eed2a5ec70b150da5660825bc8f4858 *inst/include/stan/math/opencl/rev/inv_Phi.hpp
9ef7f3db79d69324a3989bec69d1e0c4 *inst/include/stan/math/opencl/rev/inv_cloglog.hpp
6a32c8c2a1a41d6c34390a91f08cb1fa *inst/include/stan/math/opencl/rev/inv_logit.hpp
a462951237e6db123306c735d935c26e *inst/include/stan/math/opencl/rev/inv_sqrt.hpp
775888074853484c689848ba90913a9b *inst/include/stan/math/opencl/rev/inv_square.hpp
4a91a29f911bd667b07b012a36b8e877 *inst/include/stan/math/opencl/rev/lb_constrain.hpp
5fc943760f3dd8f6f5d0a1abf53fb641 *inst/include/stan/math/opencl/rev/lbeta.hpp
39bca8142e338a2522aceb09dd5a91df *inst/include/stan/math/opencl/rev/ldexp.hpp
f880e75b1acd355cbebad9a5ef804912 *inst/include/stan/math/opencl/rev/lgamma.hpp
4dfd59e07f0e820f9d65f4f5ee0e6e3e *inst/include/stan/math/opencl/rev/lmultiply.hpp
079e446861dab5f3c03194e5bb45a9a8 *inst/include/stan/math/opencl/rev/log.hpp
9ac18383fffeee917632bbe19b3d8fbc *inst/include/stan/math/opencl/rev/log10.hpp
4c0f186359260b2c44f3ab8a0a9353a3 *inst/include/stan/math/opencl/rev/log1m.hpp
cb95dca0118849b6b8f37e47186ffce8 *inst/include/stan/math/opencl/rev/log1m_exp.hpp
6b8eca3c4be86ac8b517f75d018121b9 *inst/include/stan/math/opencl/rev/log1m_inv_logit.hpp
36bdd291d6edc55421d99bd90e01f3cb *inst/include/stan/math/opencl/rev/log1p.hpp
32d94e2d3261771cf688dccd7e536655 *inst/include/stan/math/opencl/rev/log1p_exp.hpp
7b33ced1d7d1ca206642b189b3ded102 *inst/include/stan/math/opencl/rev/log2.hpp
5674686607830d7c0a9025dde47b8fd7 *inst/include/stan/math/opencl/rev/log_diff_exp.hpp
987d003effbeb57e288c4105881c573c *inst/include/stan/math/opencl/rev/log_inv_logit.hpp
fb5abbb3f85963cde54d30ffae737ae5 *inst/include/stan/math/opencl/rev/log_inv_logit_diff.hpp
5b81ea12bcce3a186cbdf4ebb01ba797 *inst/include/stan/math/opencl/rev/log_softmax.hpp
b93dbb36ccbd6fb38413e95cb3df6ac4 *inst/include/stan/math/opencl/rev/log_sum_exp.hpp
68f409b892100f629dd91ba5f6c31b61 *inst/include/stan/math/opencl/rev/logit.hpp
8385183a190a87fd441c51ed5ca67fc4 *inst/include/stan/math/opencl/rev/lub_constrain.hpp
a878434b0ea9a72293f461db5bf69be8 *inst/include/stan/math/opencl/rev/matrix_power.hpp
d1fbecdd39627a49b93ff9aa3da6b5ce *inst/include/stan/math/opencl/rev/mdivide_left_tri_low.hpp
8647bb0223aa319aee2531f1cb3c0c42 *inst/include/stan/math/opencl/rev/mdivide_right_tri_low.hpp
75036b1cb09f3d8145bbc45438f8a2fb *inst/include/stan/math/opencl/rev/multiply.hpp
8223d0ab08b81fd823431a016ddb29ac *inst/include/stan/math/opencl/rev/multiply_log.hpp
a8dcb9db4b428a1b6ec277b7c35bfc5f *inst/include/stan/math/opencl/rev/multiply_lower_tri_self_transpose.hpp
25dfe77768aacfd0044a2d289ffc773b *inst/include/stan/math/opencl/rev/offset_multiplier_constrain.hpp
47ced5dfb9cd23f2c8f614756d79b75f *inst/include/stan/math/opencl/rev/operands_and_partials.hpp
6c0e660d2e815941c1322fc3feaf5764 *inst/include/stan/math/opencl/rev/operator_unary_minus.hpp
069960bad85c4d8f6e96d6289a37bf52 *inst/include/stan/math/opencl/rev/operator_unary_plus.hpp
1c9102481a89f1f207f12e237312a697 *inst/include/stan/math/opencl/rev/pow.hpp
4e2321787d60db1e7f6a681136c50030 *inst/include/stan/math/opencl/rev/prod.hpp
8d8d8cc3bd15a2f24693f59a3443032d *inst/include/stan/math/opencl/rev/rep_matrix.hpp
a21a68432cef5d9ec1a4002179f245bf *inst/include/stan/math/opencl/rev/reverse.hpp
8413b8c2fa716a75fd5831bd030cafbe *inst/include/stan/math/opencl/rev/round.hpp
bd6dd9d4a9cfd209f8441a120d2dadc0 *inst/include/stan/math/opencl/rev/rows_dot_product.hpp
99c6fef3c5ed6d6addf1af56eb771579 *inst/include/stan/math/opencl/rev/rows_dot_self.hpp
53e37a599eefa2883f07262576ddc1e9 *inst/include/stan/math/opencl/rev/sd.hpp
3003cb3afcc2a0ebfb16e5c01579da3d *inst/include/stan/math/opencl/rev/sin.hpp
e797cb925401e77df0bb720ec48c6b23 *inst/include/stan/math/opencl/rev/sinh.hpp
f13a0afcd5a8e8e67594ddf89ea519d0 *inst/include/stan/math/opencl/rev/softmax.hpp
565b7938a87373f263be06e1fc8f50b9 *inst/include/stan/math/opencl/rev/sqrt.hpp
be80bf297535fbd4321527a467e8cecc *inst/include/stan/math/opencl/rev/square.hpp
411c04787cb3644bd25645de06c88542 *inst/include/stan/math/opencl/rev/squared_distance.hpp
bee5c906f01382bc8341aa9e5ebaa996 *inst/include/stan/math/opencl/rev/subtract.hpp
4322d34be4400ab83b98dbf15541fb2d *inst/include/stan/math/opencl/rev/sum.hpp
908812a5532378ebac5dc8bae0b74ef2 *inst/include/stan/math/opencl/rev/symmetrize_from_lower_tri.hpp
5403c2c2e84f9801eb5d43da23a94ec7 *inst/include/stan/math/opencl/rev/symmetrize_from_upper_tri.hpp
92b56e251106ebc598a3c301a14fb693 *inst/include/stan/math/opencl/rev/tan.hpp
394a43a0aa19116845b7c9092321ebc2 *inst/include/stan/math/opencl/rev/tanh.hpp
2c91416d3845a13899f6db2b46311574 *inst/include/stan/math/opencl/rev/tcrossprod.hpp
62fec1b0beb536fcbd93bf31ba7a2774 *inst/include/stan/math/opencl/rev/tgamma.hpp
7ae6e28f3fd8b6e20e7692b72ac3daf5 *inst/include/stan/math/opencl/rev/to_arena.hpp
4c2849caf9fa4fb43b0b04e2e4fa353f *inst/include/stan/math/opencl/rev/to_matrix.hpp
669c735ac918735a632d4ba6ffed5a19 *inst/include/stan/math/opencl/rev/trace.hpp
b4e77303209b46a291edce966ecbc55b *inst/include/stan/math/opencl/rev/transpose.hpp
7fae7cdacac85168c80a2b360656045b *inst/include/stan/math/opencl/rev/trunc.hpp
9eb584167100fedfe5d6f09e415df457 *inst/include/stan/math/opencl/rev/ub_constrain.hpp
92b880b60f5bcb72d826c610c5e18448 *inst/include/stan/math/opencl/rev/unit_vector_constrain.hpp
36b9f751f5bd7f59547b0867b86acf61 *inst/include/stan/math/opencl/rev/vari.hpp
727adb63c9fa69a9c394e5c023957505 *inst/include/stan/math/opencl/rev/variance.hpp
9e04b95f29f466a7f1e7f70969340949 *inst/include/stan/math/opencl/scalar_type.hpp
da12936da4b3cc00d079228cc0b7613f *inst/include/stan/math/opencl/stringify.hpp
b521178ac388ed5cd23eefc9c0da02d9 *inst/include/stan/math/opencl/symmetric_eigensolver.hpp
0577edfe769d869e02221e33c5a1aa64 *inst/include/stan/math/opencl/to_ref_for_opencl.hpp
41c05af8fc885830c2aec302825f67eb *inst/include/stan/math/opencl/tri_inverse.hpp
01070d9dbf9980800f734115b02eed8d *inst/include/stan/math/opencl/tridiagonalization.hpp
fad17976e5c9cfed13753d3b246d27d0 *inst/include/stan/math/opencl/value_type.hpp
6d05b823b7fd99f679a08bd8a20f122c *inst/include/stan/math/opencl/zeros_strict_tri.hpp
b0a035e2aa9f97bb9552488d1facb91a *inst/include/stan/math/prim.hpp
7c2bbf26e12eb14080fbf26f75483c6c *inst/include/stan/math/prim/core.hpp
468a020c395c22c9213495c4c3038eeb *inst/include/stan/math/prim/core/complex_base.hpp
257d68b02a34ce25b7001997142a8e2a *inst/include/stan/math/prim/core/init_threadpool_tbb.hpp
38c764c8cea501eb2151de6aac4d3501 *inst/include/stan/math/prim/core/operator_addition.hpp
5b65bfb1cdc4d60df1c781f827a6ea57 *inst/include/stan/math/prim/core/operator_division.hpp
c053893366b2e9fe75190b8a0d6bafba *inst/include/stan/math/prim/core/operator_equal_equal.hpp
9061b1841f785517bc6a203d44aa5104 *inst/include/stan/math/prim/core/operator_minus.hpp
5332a4b76555c9156829c3d301ab92d8 *inst/include/stan/math/prim/core/operator_multiplication.hpp
21ad5606eca05df6f46c8cce9a2a64a2 *inst/include/stan/math/prim/core/operator_not_equal.hpp
23f5b979767b0fa842296b0f9b1c5fea *inst/include/stan/math/prim/core/operator_plus.hpp
f08d0931cdcec557c386bf49c9810e2f *inst/include/stan/math/prim/core/operator_subtraction.hpp
13f51d1dc6272d3f873e5004f30dfffa *inst/include/stan/math/prim/eigen_plugins.h
0757d20a06ae683f6b7fb3e5a35cc678 *inst/include/stan/math/prim/err.hpp
6b0df760e0117c656af5a9608ee38ef1 *inst/include/stan/math/prim/err/check_2F1_converges.hpp
64160c46690ecdda4c47a8bdfdc79725 *inst/include/stan/math/prim/err/check_3F2_converges.hpp
f90d34a62c26845c04a77873e6f433e4 *inst/include/stan/math/prim/err/check_bounded.hpp
a3b0c32d893a365c5b809d148a6d9ebf *inst/include/stan/math/prim/err/check_cholesky_factor.hpp
0196c74557196e63a49980a226468780 *inst/include/stan/math/prim/err/check_cholesky_factor_corr.hpp
85ac91fac586f2e7580d3160691877d8 *inst/include/stan/math/prim/err/check_column_index.hpp
33c3140964e6820110a695d726e59dc2 *inst/include/stan/math/prim/err/check_consistent_size.hpp
9fe732bdf529e473c20dd7dc92d4a4d3 *inst/include/stan/math/prim/err/check_consistent_sizes.hpp
97801ed1fb2640ec1dd95e81c64e8f5a *inst/include/stan/math/prim/err/check_consistent_sizes_mvt.hpp
3b34dc143ff284a77278674e8b4aaaff *inst/include/stan/math/prim/err/check_corr_matrix.hpp
0b697448226197e80fea0491d1d88398 *inst/include/stan/math/prim/err/check_cov_matrix.hpp
820e57ce345ecd6a2fab7dae8e82a86e *inst/include/stan/math/prim/err/check_finite.hpp
8d3dfcb2c5b10e3b41103e0f94ccbbc7 *inst/include/stan/math/prim/err/check_flag_sundials.hpp
f163a2144e578e52ada0e68d165fa07c *inst/include/stan/math/prim/err/check_greater.hpp
b6b716d2c2079b2d55a3751777e93916 *inst/include/stan/math/prim/err/check_greater_or_equal.hpp
1e72d07fb5855bee7fc20a4e9b3404cd *inst/include/stan/math/prim/err/check_ldlt_factor.hpp
76b6b513f8902dadab1ca614eda0ecc2 *inst/include/stan/math/prim/err/check_less.hpp
26e368172d0a1cab0280282a3c8b3884 *inst/include/stan/math/prim/err/check_less_or_equal.hpp
31ac90b30b711191a41d0a0672d904e5 *inst/include/stan/math/prim/err/check_lower_triangular.hpp
faa0afc2f96e52759f266c06095a8ad3 *inst/include/stan/math/prim/err/check_matching_dims.hpp
be44653cf1397d8741d9648b6be08763 *inst/include/stan/math/prim/err/check_matching_sizes.hpp
4115abd23f17d400fa025bf0e6695ff4 *inst/include/stan/math/prim/err/check_multiplicable.hpp
bb4bc538ab0094a622dccd6d4cc4a8e0 *inst/include/stan/math/prim/err/check_nonnegative.hpp
d118ae5f11a4befd7b7bd2198b7ad4b5 *inst/include/stan/math/prim/err/check_nonzero_size.hpp
26547091a51a6b9a6e1b73176319b704 *inst/include/stan/math/prim/err/check_not_nan.hpp
b707af785c847dfc125272a22b5dea4c *inst/include/stan/math/prim/err/check_ordered.hpp
0e46ed8c6953b478b09bfdf03ebfd7f5 *inst/include/stan/math/prim/err/check_pos_definite.hpp
8a6a767b6b1ad0051e7da0e188420a37 *inst/include/stan/math/prim/err/check_pos_semidefinite.hpp
3d305b2d7f9dd3cce50fb2f7449ef894 *inst/include/stan/math/prim/err/check_positive.hpp
8a9f70bae598e76fb1df90d973a07f6b *inst/include/stan/math/prim/err/check_positive_finite.hpp
8526d123b973f0ac8404ec8175652cf5 *inst/include/stan/math/prim/err/check_positive_ordered.hpp
da950fe9370d813d8702145bbf179663 *inst/include/stan/math/prim/err/check_range.hpp
606fb2100aacc7e8a52083bbbd5629ee *inst/include/stan/math/prim/err/check_row_index.hpp
ad249e4923ce433766eb6dd40d2901f7 *inst/include/stan/math/prim/err/check_simplex.hpp
b0c01bdbad81d32d7a9fb0fe65aa160d *inst/include/stan/math/prim/err/check_size_match.hpp
8ecea4de010e3e3cb7e1bcd55a73071a *inst/include/stan/math/prim/err/check_sorted.hpp
b969755e1cdd515460070f188cff8994 *inst/include/stan/math/prim/err/check_square.hpp
6d1ff0adc6db5790ebde9f9538665b6f *inst/include/stan/math/prim/err/check_std_vector_index.hpp
6a19247f2b281decd85f19d709698639 *inst/include/stan/math/prim/err/check_symmetric.hpp
4876c6518f22c25731de4844f4f1a198 *inst/include/stan/math/prim/err/check_unit_vector.hpp
7b8c84f2a50493a10b7f59a5db8174ab *inst/include/stan/math/prim/err/check_vector.hpp
8217fab425bcce92159fda448f40821f *inst/include/stan/math/prim/err/check_vector_index.hpp
3ddc7c82440ac9603560fffff116130f *inst/include/stan/math/prim/err/constraint_tolerance.hpp
7b6a0b6134fb1e81fe3dce0c64c4d3b2 *inst/include/stan/math/prim/err/domain_error.hpp
7998cd0f09fbd3beecfaec77d02d9a19 *inst/include/stan/math/prim/err/domain_error_vec.hpp
b1a7f254876831fb907269989fdabb54 *inst/include/stan/math/prim/err/elementwise_check.hpp
9b2b72dbba32630339b3a2ebaddfa738 *inst/include/stan/math/prim/err/hmm_check.hpp
6b2c6c3b56bfeaa355b1bc09208939cf *inst/include/stan/math/prim/err/invalid_argument.hpp
ca1996ec266dce6b20800035ecee3a12 *inst/include/stan/math/prim/err/invalid_argument_vec.hpp
f35f0d513edb34d25bf3c8a1c0bbe0af *inst/include/stan/math/prim/err/is_cholesky_factor.hpp
723ecd77fa536b3e9ec9db4a8e7a376e *inst/include/stan/math/prim/err/is_cholesky_factor_corr.hpp
23a0fd7c7646dd34414eb2474b1bcb50 *inst/include/stan/math/prim/err/is_column_index.hpp
f4ada91c49d6d672b07a843ce6da06b8 *inst/include/stan/math/prim/err/is_corr_matrix.hpp
7133c463d117c07d186fd181b31b67bd *inst/include/stan/math/prim/err/is_ldlt_factor.hpp
f883886387ea6c5ca66d9990d7071883 *inst/include/stan/math/prim/err/is_less_or_equal.hpp
b35efa47214b90164838763df65b2b1e *inst/include/stan/math/prim/err/is_lower_triangular.hpp
e460e6036583a16d02202452cbdb2950 *inst/include/stan/math/prim/err/is_mat_finite.hpp
d84f9024b66af47f21cd584ec134373f *inst/include/stan/math/prim/err/is_matching_dims.hpp
65cb6a545f358157d620ebcaa4ef2ddc *inst/include/stan/math/prim/err/is_matching_size.hpp
dffd43db52c491116c6da49d14525f72 *inst/include/stan/math/prim/err/is_nonzero_size.hpp
67e109b30fadac9b39f8fd60e24839bf *inst/include/stan/math/prim/err/is_not_nan.hpp
9a2862b80d4286501bf5cae26e5e828d *inst/include/stan/math/prim/err/is_ordered.hpp
71aa25eea6c6c8888cbdc29e6c228c8e *inst/include/stan/math/prim/err/is_pos_definite.hpp
a1f3c23d705deb527df0e818da97614a *inst/include/stan/math/prim/err/is_positive.hpp
88cdff030aa3a268a336a2f0ec208180 *inst/include/stan/math/prim/err/is_scal_finite.hpp
04617fd3f2489792d6491517b5c48810 *inst/include/stan/math/prim/err/is_size_match.hpp
b83fbfc06e94e01d7c7649bfa6a55966 *inst/include/stan/math/prim/err/is_square.hpp
d8f1e47db8f578a81703ab399c07cffd *inst/include/stan/math/prim/err/is_symmetric.hpp
6f0337029e9b9a33b9448c92257dbecf *inst/include/stan/math/prim/err/is_unit_vector.hpp
292aabdb5b0a999cd32902c924b03280 *inst/include/stan/math/prim/err/make_iter_name.hpp
4cd5e21ade51f8dbbf53930b796aae0f *inst/include/stan/math/prim/err/out_of_range.hpp
909dea3bb3142a5b6c8b448cfd978174 *inst/include/stan/math/prim/err/system_error.hpp
e7a9cae76798710369d463f86f9db1ee *inst/include/stan/math/prim/err/throw_domain_error.hpp
283a67ead5f45201e092a6ed36976226 *inst/include/stan/math/prim/err/throw_domain_error_mat.hpp
6481bfc3123e5efaf2c9c1fdb0779499 *inst/include/stan/math/prim/err/throw_domain_error_vec.hpp
d71435a8b4427244b0607039d3607a95 *inst/include/stan/math/prim/err/validate_non_negative_index.hpp
51363ab3e9b66d7336e3b4de135ba896 *inst/include/stan/math/prim/err/validate_positive_index.hpp
d8242a86389b34e9abe0205cba708b66 *inst/include/stan/math/prim/err/validate_unit_vector_index.hpp
08341fd07f4439d0a3f564fe153f427c *inst/include/stan/math/prim/fun.hpp
59908215d31774a49949596ba9fe89d0 *inst/include/stan/math/prim/fun/Eigen.hpp
c260753e38d22e3e9a879c491eea990f *inst/include/stan/math/prim/fun/LDLT_factor.hpp
cc95a79cb45c59745ddc3a7ac74d3396 *inst/include/stan/math/prim/fun/MatrixExponential.h
88727a093dedfe974836b52d9ef8802d *inst/include/stan/math/prim/fun/Phi.hpp
09b92bf5b9d5e9df5f9593a412c52f86 *inst/include/stan/math/prim/fun/Phi_approx.hpp
3895bdad605b20d389a7a34f205ae61a *inst/include/stan/math/prim/fun/abs.hpp
d00d7a026bfec64759b36ebdb5d4070f *inst/include/stan/math/prim/fun/accumulator.hpp
ae231114288be6391b0e3bb40702daf0 *inst/include/stan/math/prim/fun/acos.hpp
283f0bf6b8e1ea5c7074a639dcafb768 *inst/include/stan/math/prim/fun/acosh.hpp
1e0c707f5dedf80f9f8dddd0eb0f42a0 *inst/include/stan/math/prim/fun/add.hpp
664e7ce34cefaa6be184d17f6767aca2 *inst/include/stan/math/prim/fun/add_diag.hpp
d8af8ec09eccbf92946ed7148370f0ec *inst/include/stan/math/prim/fun/all.hpp
9a16a69adc6be27d8c4c1a489713ae60 *inst/include/stan/math/prim/fun/any.hpp
d04d9a068d08c3c82584cc429171da97 *inst/include/stan/math/prim/fun/append_array.hpp
4299ffafdb363bed836b08a9ae622b05 *inst/include/stan/math/prim/fun/append_col.hpp
6045944a57caa9529bcbdd9f1e42e31d *inst/include/stan/math/prim/fun/append_row.hpp
3e09854f455e3ff4e01f4ca50b525bcc *inst/include/stan/math/prim/fun/arg.hpp
749b6324cbc2ac3e9d651e0d7e392abb *inst/include/stan/math/prim/fun/array_builder.hpp
421bbf9f9568925ba92df6f3b8b05b43 *inst/include/stan/math/prim/fun/as_array_or_scalar.hpp
4609762b68c5d6fbf8555f73fa8c76dd *inst/include/stan/math/prim/fun/as_bool.hpp
18f05f8faf9f500a792b1d28389782ad *inst/include/stan/math/prim/fun/as_column_vector_or_scalar.hpp
3d9907486443dd53cb9a9d86077c6060 *inst/include/stan/math/prim/fun/as_value_array_or_scalar.hpp
bcfa4da88baaf1f4a6add68b602b6f95 *inst/include/stan/math/prim/fun/as_value_column_array_or_scalar.hpp
6d744da39d0a4efdcf7c0b73cd47cb55 *inst/include/stan/math/prim/fun/as_value_column_vector_or_scalar.hpp
9ad2a0c819e88866bad01dce08cadb43 *inst/include/stan/math/prim/fun/asin.hpp
a5b9c00446e05c9d77a1ce70e4e7c16c *inst/include/stan/math/prim/fun/asinh.hpp
6b5d7564658a310c79b487323ba5f869 *inst/include/stan/math/prim/fun/assign.hpp
4099a49dbd8d94a54675e642b3a4027c *inst/include/stan/math/prim/fun/atan.hpp
81246c897a0a7224587c06e21484888f *inst/include/stan/math/prim/fun/atan2.hpp
d494cc8159b5f141bf0f73f66f5dbfde *inst/include/stan/math/prim/fun/atanh.hpp
cead643b1eb47510df1eb39c89b8bfab *inst/include/stan/math/prim/fun/autocorrelation.hpp
0ae4bc0ac468fd704b5dc7080871a2b1 *inst/include/stan/math/prim/fun/autocovariance.hpp
67f14d7980cd108799fd775a95fa0344 *inst/include/stan/math/prim/fun/bessel_first_kind.hpp
8fa45274532a2a512e28fd79c2d3a190 *inst/include/stan/math/prim/fun/bessel_second_kind.hpp
33c9ab3fdc528868549b75416f411e03 *inst/include/stan/math/prim/fun/beta.hpp
4d044aefc6beb8dd0454ed5c2df3cd23 *inst/include/stan/math/prim/fun/binary_log_loss.hpp
df8ff39a428835c5cdaddd096f7850b2 *inst/include/stan/math/prim/fun/binomial_coefficient_log.hpp
1934d38ad50cf77201a01f136cfc5120 *inst/include/stan/math/prim/fun/block.hpp
4c71a06fa715d7235b81176bb05a917f *inst/include/stan/math/prim/fun/boost_policy.hpp
6343d6183c31c6efb70c70409e754727 *inst/include/stan/math/prim/fun/cbrt.hpp
51038726b7bac666d4b04bc8c6125c03 *inst/include/stan/math/prim/fun/ceil.hpp
22381ed7fc14ce7fa117d793cbe14af5 *inst/include/stan/math/prim/fun/chol2inv.hpp
754f54218a1bbd986b4572841666ec8d *inst/include/stan/math/prim/fun/cholesky_corr_constrain.hpp
84693937a89400590253d672541f067e *inst/include/stan/math/prim/fun/cholesky_corr_free.hpp
0ab7b4abdfe91eb1f3aee0cb6fc26798 *inst/include/stan/math/prim/fun/cholesky_decompose.hpp
b9a59d7ee465c609994b84e3d6885e5a *inst/include/stan/math/prim/fun/cholesky_factor_constrain.hpp
bce2359e19af5620ec32e47a63822c63 *inst/include/stan/math/prim/fun/cholesky_factor_free.hpp
aef8f490dc475ee59e47b6237118711f *inst/include/stan/math/prim/fun/choose.hpp
2e51fe2582d2cab94d79f25a7733b11d *inst/include/stan/math/prim/fun/col.hpp
71aead509d414da8b713725737db12d5 *inst/include/stan/math/prim/fun/cols.hpp
d0a9ee2275ae77ba711848bd9cc0d7c2 *inst/include/stan/math/prim/fun/columns_dot_product.hpp
32262ca74ca5e4e696f007d524a3fc0a *inst/include/stan/math/prim/fun/columns_dot_self.hpp
6b3b3b7284be1e9174dd0a6c320a35e9 *inst/include/stan/math/prim/fun/complex_schur_decompose.hpp
d3091dd4bfeba8597c0d79d6ee7779ca *inst/include/stan/math/prim/fun/conj.hpp
72d48aded08d077afaff0b28bcc892aa *inst/include/stan/math/prim/fun/constants.hpp
f5d775b1ab4fe9cf045f46c5ca2b996f *inst/include/stan/math/prim/fun/copysign.hpp
00336a680f7d4117a5f42c1e30682293 *inst/include/stan/math/prim/fun/corr_constrain.hpp
60bb9344838712c6d050392fe24c076e *inst/include/stan/math/prim/fun/corr_free.hpp
a9fe32ced2f72e9af158dcd5e459602c *inst/include/stan/math/prim/fun/corr_matrix_constrain.hpp
23f468f7faf003cfe772f65171ebf5bc *inst/include/stan/math/prim/fun/corr_matrix_free.hpp
57f263089aaa30917182315e8db3bac7 *inst/include/stan/math/prim/fun/cos.hpp
3aafc52be76e5083f6b2c5f9093f10b0 *inst/include/stan/math/prim/fun/cosh.hpp
d7d706aec32a35e8305861f02cdf1bcd *inst/include/stan/math/prim/fun/cov_exp_quad.hpp
db698bba3c2b066f11b4bebba25bf9c7 *inst/include/stan/math/prim/fun/cov_matrix_constrain.hpp
51072b87f9a4cb95e8042febb5486ba6 *inst/include/stan/math/prim/fun/cov_matrix_constrain_lkj.hpp
fbf6376f6ba54fd593d3e68a67682bbc *inst/include/stan/math/prim/fun/cov_matrix_free.hpp
03181239ae6b1793b0b3b6d79f02e80f *inst/include/stan/math/prim/fun/cov_matrix_free_lkj.hpp
e38654affa92893bb16f33ff783acfb3 *inst/include/stan/math/prim/fun/crossprod.hpp
2c404995fd6282bc941f53184b7c00a0 *inst/include/stan/math/prim/fun/csr_extract.hpp
9203cdabe677b0585104b1bab4b740ef *inst/include/stan/math/prim/fun/csr_extract_u.hpp
38c5cb4c3c5eb7631a8852d8b22a06c1 *inst/include/stan/math/prim/fun/csr_extract_v.hpp
c04d1f9e1e700b7c84fa8a44a9f63076 *inst/include/stan/math/prim/fun/csr_extract_w.hpp
d22e48187ffdb6224685a0a944eee223 *inst/include/stan/math/prim/fun/csr_matrix_times_vector.hpp
6a5d67d4ae33d528d2f381a258b32cb2 *inst/include/stan/math/prim/fun/csr_to_dense_matrix.hpp
459bc74df87b5c31d70be4aabe8aa4a4 *inst/include/stan/math/prim/fun/csr_u_to_z.hpp
e08316ec75264f4ce549d584790dca21 *inst/include/stan/math/prim/fun/cumulative_sum.hpp
40827a84132af931bf6ccb78878acf3c *inst/include/stan/math/prim/fun/determinant.hpp
87a3dbb8da863ea59765d1a43d4a5ab6 *inst/include/stan/math/prim/fun/diag_matrix.hpp
de20c5756d0e1f51b7d1e83ad9311b32 *inst/include/stan/math/prim/fun/diag_post_multiply.hpp
fb92afbad33443062a4d3d10877b8abf *inst/include/stan/math/prim/fun/diag_pre_multiply.hpp
ce1d8d160dd9860f1457c41380e69650 *inst/include/stan/math/prim/fun/diagonal.hpp
bd398445a5ca125ebace1e886808c35e *inst/include/stan/math/prim/fun/digamma.hpp
0566f677675f9e9f111ea3530da1d10c *inst/include/stan/math/prim/fun/dims.hpp
540301502e399353f7239c5783db1e3b *inst/include/stan/math/prim/fun/distance.hpp
4df1ed05b953cc101913bb18f1b4ca31 *inst/include/stan/math/prim/fun/divide.hpp
c6e07c076304f4e427e503fa368787bb *inst/include/stan/math/prim/fun/divide_columns.hpp
12c5837bb101211aac615d2854b0b640 *inst/include/stan/math/prim/fun/dot.hpp
269a191442d07eef4a03598339111455 *inst/include/stan/math/prim/fun/dot_product.hpp
309e7c4beac550487f28c7afbc35666d *inst/include/stan/math/prim/fun/dot_self.hpp
df97f9e1aa9ee8813a15b0ac16ffa469 *inst/include/stan/math/prim/fun/eigen_comparisons.hpp
1a936a2b255340f9f935c8f9fa51e25a *inst/include/stan/math/prim/fun/eigendecompose.hpp
2c65a0e3f22de2fcc367aa55d6a22566 *inst/include/stan/math/prim/fun/eigendecompose_sym.hpp
4b020f40de2056bb17bd6dd2c8a14e7f *inst/include/stan/math/prim/fun/eigenvalues.hpp
88ebebacdcec1e1e980acab4a4ad649e *inst/include/stan/math/prim/fun/eigenvalues_sym.hpp
3ea26a63c30a8a3ade1d69514f55dc71 *inst/include/stan/math/prim/fun/eigenvectors.hpp
2e6a83e24ff3c0dc32be33ec56eea051 *inst/include/stan/math/prim/fun/eigenvectors_sym.hpp
b53c19acebbf66eb30c64b40657a113f *inst/include/stan/math/prim/fun/elt_divide.hpp
5dc13b5515f8994457cd30e3ffce2ed6 *inst/include/stan/math/prim/fun/elt_multiply.hpp
336fc64ebce86cead89f205433dc5f2a *inst/include/stan/math/prim/fun/erf.hpp
f0698e50d9d5d991f5345aba3cd9b8e7 *inst/include/stan/math/prim/fun/erfc.hpp
5fc9b3397432f97b2e91c8837e54fad6 *inst/include/stan/math/prim/fun/eval.hpp
ea242370b2756a48d1a5df9f1e4ea909 *inst/include/stan/math/prim/fun/exp.hpp
d1e4a6f05c9016f7847c916500540b3a *inst/include/stan/math/prim/fun/exp2.hpp
fe9556917d6c2fbd8033d10322a1dec4 *inst/include/stan/math/prim/fun/expm1.hpp
0c2687861079ca8c1005fe0f96fc07f8 *inst/include/stan/math/prim/fun/fabs.hpp
da44687831f1b003da6a366cc04c53c8 *inst/include/stan/math/prim/fun/factor_U.hpp
e67af8ef08a4272c9950eb63f2008d12 *inst/include/stan/math/prim/fun/factor_cov_matrix.hpp
f56d1d4d04f7bfe6a6047ed7a703ea0d *inst/include/stan/math/prim/fun/falling_factorial.hpp
a14d788205689eb6ca1e55b3f26fcf88 *inst/include/stan/math/prim/fun/fdim.hpp
b161775c4833492d284cde0c1ed5ed39 *inst/include/stan/math/prim/fun/fft.hpp
fa9fb3daef4ba521aca18db4743d393b *inst/include/stan/math/prim/fun/fill.hpp
7445675c7fae3b9419e456f05702a680 *inst/include/stan/math/prim/fun/finite_diff_stepsize.hpp
6c3fc931446230f0b221a89d20af5d4a *inst/include/stan/math/prim/fun/floor.hpp
6514a8a6f46608ac623e9e3d2470afb3 *inst/include/stan/math/prim/fun/fma.hpp
e67617a4aad31fc489f975fb2f3a2e2d *inst/include/stan/math/prim/fun/fmax.hpp
5e097de5975cb6e36f544dafd1839d80 *inst/include/stan/math/prim/fun/fmin.hpp
4d45f17436aa2ab4e7ea98b9152e46f1 *inst/include/stan/math/prim/fun/fmod.hpp
f295b34aa5b59c75003f893a9bf05a32 *inst/include/stan/math/prim/fun/gamma_p.hpp
5feb87e394710a205d0f92ebc311f8ef *inst/include/stan/math/prim/fun/gamma_q.hpp
7a9f41fad84229f703cfa224f825d2bc *inst/include/stan/math/prim/fun/generalized_inverse.hpp
62ec3edd1e2c1b9ddf86a97c027dfe76 *inst/include/stan/math/prim/fun/get.hpp
5a2a897d7923779c788019863dbce851 *inst/include/stan/math/prim/fun/get_base1.hpp
e9a407cd5cdd38093af297d4b62861ee *inst/include/stan/math/prim/fun/get_base1_lhs.hpp
8c4a02d57973d8f9a0c9113ab3831232 *inst/include/stan/math/prim/fun/get_imag.hpp
79dc26721243f5863de6e48131150282 *inst/include/stan/math/prim/fun/get_lp.hpp
dda9c7b53ff6146dcae6d2aa653b31de *inst/include/stan/math/prim/fun/get_real.hpp
24e6d37f6009868d14de504353adeb18 *inst/include/stan/math/prim/fun/gp_dot_prod_cov.hpp
9a82bc01d1ce21dad922700c274035a3 *inst/include/stan/math/prim/fun/gp_exp_quad_cov.hpp
4858d904ef9cc3d10fc70fd740836317 *inst/include/stan/math/prim/fun/gp_exponential_cov.hpp
06416c177bef8d1523efc575cece015e *inst/include/stan/math/prim/fun/gp_matern32_cov.hpp
eb53e5e0d431f5f9abd7d4de3968598c *inst/include/stan/math/prim/fun/gp_matern52_cov.hpp
67e2f7ced490a982237755833f143a94 *inst/include/stan/math/prim/fun/gp_periodic_cov.hpp
eb55cc95a1e2b3d3d8c1d65172c20627 *inst/include/stan/math/prim/fun/grad_2F1.hpp
b7d80154b2ced4261ba709c665614182 *inst/include/stan/math/prim/fun/grad_F32.hpp
72ad56cba6cb4bfbef56ebf4dbd18470 *inst/include/stan/math/prim/fun/grad_inc_beta.hpp
6a5ef670939ec6423ce56d71d7266cdf *inst/include/stan/math/prim/fun/grad_pFq.hpp
71c29db4dec8d2addba9eb2da757fce9 *inst/include/stan/math/prim/fun/grad_reg_inc_beta.hpp
c74df8e997dd13fdf471e4f62d4e3874 *inst/include/stan/math/prim/fun/grad_reg_inc_gamma.hpp
4fe54b11d4695eba846b1518b0750dab *inst/include/stan/math/prim/fun/grad_reg_lower_inc_gamma.hpp
099c0d94edd68ded95067b518e1c74ba *inst/include/stan/math/prim/fun/head.hpp
7ff6c88e53afcf72bcefd8e7f98afc3a *inst/include/stan/math/prim/fun/hypergeometric_2F1.hpp
09391a6a9e249d5ddc3cc2a7a7ff8b6d *inst/include/stan/math/prim/fun/hypergeometric_2F2.hpp
30047111dec0dce3fd1ce497283242eb *inst/include/stan/math/prim/fun/hypergeometric_3F2.hpp
040548910302bc21457b8d9cf3c12490 *inst/include/stan/math/prim/fun/hypergeometric_pFq.hpp
2ebae33739fcceedcb9c3e66eec30e0a *inst/include/stan/math/prim/fun/hypot.hpp
54b194dd0f8dc2a11b31eac0ea2d66cf *inst/include/stan/math/prim/fun/i_times.hpp
74a59550c09d2c95b693434f8c626572 *inst/include/stan/math/prim/fun/identity_constrain.hpp
3ae8fd519a893d789010631387355e0b *inst/include/stan/math/prim/fun/identity_free.hpp
2d6beb1eb551be41c183281b4c0c2bd6 *inst/include/stan/math/prim/fun/identity_matrix.hpp
240a2d07202552778420b69b0ee6d324 *inst/include/stan/math/prim/fun/if_else.hpp
a7cb162b197e173a2849b66d0d9bd2c1 *inst/include/stan/math/prim/fun/imag.hpp
be5729fa9f4476a30902ed1e5ff4f03d *inst/include/stan/math/prim/fun/inc_beta.hpp
c082a0a9d63388a3453a795eb16dcdbc *inst/include/stan/math/prim/fun/inc_beta_dda.hpp
2da62e383bfb70b27da91c90719f622c *inst/include/stan/math/prim/fun/inc_beta_ddb.hpp
ab314cf831764ba0505f518baabcf1d8 *inst/include/stan/math/prim/fun/inc_beta_ddz.hpp
ca20adfe3516eb9daac4e2181975fc50 *inst/include/stan/math/prim/fun/initialize.hpp
4f4c38ee2f24d48eef4b2c21223140f2 *inst/include/stan/math/prim/fun/initialize_fill.hpp
cc486a7b0aa179625f5ec219e34bf152 *inst/include/stan/math/prim/fun/int_step.hpp
f0d5eec590014b20437936a3640dbdc2 *inst/include/stan/math/prim/fun/inv.hpp
1965c7823e97c4eb1c97cad454327f35 *inst/include/stan/math/prim/fun/inv_Phi.hpp
86e81331ee38a91770dd0702e95095c1 *inst/include/stan/math/prim/fun/inv_cloglog.hpp
7d7a9ce5e2ecaa1afd682448e82d4ac8 *inst/include/stan/math/prim/fun/inv_erfc.hpp
cd894be7344245000d37071ef4450617 *inst/include/stan/math/prim/fun/inv_inc_beta.hpp
be3bf51d03c70a77032769bc6db0fa1c *inst/include/stan/math/prim/fun/inv_logit.hpp
5f29556a0dc7cccf23c38f7186a65e6d *inst/include/stan/math/prim/fun/inv_sqrt.hpp
35ae67c656b96c94eb0111130a494c49 *inst/include/stan/math/prim/fun/inv_square.hpp
c365380e476ddd8c5201c0a74de22ff2 *inst/include/stan/math/prim/fun/inverse.hpp
588415f9e3601162694cf966089fbc2c *inst/include/stan/math/prim/fun/inverse_softmax.hpp
0bc048e112efc46f7fcb78124ce5ef1d *inst/include/stan/math/prim/fun/inverse_spd.hpp
eacdeb6090c0bd9e28825ed9b336d163 *inst/include/stan/math/prim/fun/is_any_nan.hpp
6176d3e63829ab4a063f335eb6c852fe *inst/include/stan/math/prim/fun/is_inf.hpp
f6cbc0bbe88786c2261c507b5d168705 *inst/include/stan/math/prim/fun/is_integer.hpp
27405814832e662fd5615859eae418b0 *inst/include/stan/math/prim/fun/is_nan.hpp
c2d88743d1bbff958a80fd3489e85ee3 *inst/include/stan/math/prim/fun/is_nonpositive_integer.hpp
1f06866b11c9d22fe857e75b014d0539 *inst/include/stan/math/prim/fun/is_uninitialized.hpp
e102b75603a2df149adabe3abc672071 *inst/include/stan/math/prim/fun/isfinite.hpp
c867ba559f03534c44782f777a18594d *inst/include/stan/math/prim/fun/isinf.hpp
6b1f94295d135434d37bacce7724ace4 *inst/include/stan/math/prim/fun/isnan.hpp
f28f5dfde6ec6038a98eef075797ca42 *inst/include/stan/math/prim/fun/isnormal.hpp
128aa36788e3bedcba1de3c63bcbc884 *inst/include/stan/math/prim/fun/lambert_w.hpp
3db36474115d1058dfb820adab3e14c5 *inst/include/stan/math/prim/fun/lb_constrain.hpp
88c010d3923539a29481a8c1bc4c56b4 *inst/include/stan/math/prim/fun/lb_free.hpp
03c94c6c428d5fb75c1717b97a15bd18 *inst/include/stan/math/prim/fun/lbeta.hpp
84f744cf0ad3657f636624e137367ea0 *inst/include/stan/math/prim/fun/ldexp.hpp
a91263a1bef5a7d129e8fdc460de2bbe *inst/include/stan/math/prim/fun/lgamma.hpp
0c316433a0beaeeb3318f1efdbb45f4b *inst/include/stan/math/prim/fun/lgamma_stirling.hpp
d8fb8161ec416c3a6fe6dca6e1e41993 *inst/include/stan/math/prim/fun/lgamma_stirling_diff.hpp
1fef09de9201159f79168907b0dbc391 *inst/include/stan/math/prim/fun/linspaced_array.hpp
62e306d3dd4b2a846fb10747331bf8af *inst/include/stan/math/prim/fun/linspaced_int_array.hpp
0e6db11ce5cc501cba1c8e05ae5b442c *inst/include/stan/math/prim/fun/linspaced_row_vector.hpp
22f9cda9d301bc769d92510d4d18b505 *inst/include/stan/math/prim/fun/linspaced_vector.hpp
c700556349f65b5557ed0fa846ae86f5 *inst/include/stan/math/prim/fun/lmgamma.hpp
26c119c714ee6f0124f519d33bc67604 *inst/include/stan/math/prim/fun/lmultiply.hpp
73845632b85730731424eaf29b674d94 *inst/include/stan/math/prim/fun/log.hpp
02299806d3f078562fcee9402a68dd6e *inst/include/stan/math/prim/fun/log10.hpp
ba1bcb84ed5310399fe1e076dfb359bc *inst/include/stan/math/prim/fun/log1m.hpp
a98eb4c24ba3861e72cafaa20edf056f *inst/include/stan/math/prim/fun/log1m_exp.hpp
4eabc18768d331fc430e040d77f82fa1 *inst/include/stan/math/prim/fun/log1m_inv_logit.hpp
9f8d12ee870fe0bf07cb1af555ec89a4 *inst/include/stan/math/prim/fun/log1p.hpp
7ad9e8e9aa362b2fa0506edab605dc9a *inst/include/stan/math/prim/fun/log1p_exp.hpp
3d8bfeb277fcec922345d2d9a3d13d21 *inst/include/stan/math/prim/fun/log2.hpp
aac356076cc89c0894b31bd04ac85669 *inst/include/stan/math/prim/fun/log_determinant.hpp
51b8f930a54796c9a14b17831eb13f9a *inst/include/stan/math/prim/fun/log_determinant_ldlt.hpp
543035957ddc9d737ef386b757a837bc *inst/include/stan/math/prim/fun/log_determinant_spd.hpp
70681350999f349d977f96683adfdad8 *inst/include/stan/math/prim/fun/log_diff_exp.hpp
fca0c6f3d43ca802000b7e7eef68df46 *inst/include/stan/math/prim/fun/log_falling_factorial.hpp
b29908668044b99f63b4fc9474d15a06 *inst/include/stan/math/prim/fun/log_inv_logit.hpp
93c1360eae53f9d7dd71c275e352f067 *inst/include/stan/math/prim/fun/log_inv_logit_diff.hpp
ae4a8eb5fd1730e6bf8ab61e552467d4 *inst/include/stan/math/prim/fun/log_mix.hpp
b25d5ab503d84cb04259e5e556f0b1cc *inst/include/stan/math/prim/fun/log_modified_bessel_first_kind.hpp
a313181b782890c5fc2c6bba61135b1c *inst/include/stan/math/prim/fun/log_rising_factorial.hpp
a523853cb9e4fe9f8470a5fa8c702dde *inst/include/stan/math/prim/fun/log_softmax.hpp
b8c28882a8cca852c15f2bbd4618a4c2 *inst/include/stan/math/prim/fun/log_sum_exp.hpp
50540111b8855afccfd3802f0f08746d *inst/include/stan/math/prim/fun/log_sum_exp_signed.hpp
142ead080741ac7d5c3435c10216c4ef *inst/include/stan/math/prim/fun/logb.hpp
a6edb3b7aba1f9cf1567b4fed2d89403 *inst/include/stan/math/prim/fun/logical_and.hpp
3272c716c498ebec5a6ff56d64ee91ea *inst/include/stan/math/prim/fun/logical_eq.hpp
81f115909de2e8e4ca2aac0b1950ec2b *inst/include/stan/math/prim/fun/logical_gt.hpp
526dfd88c396ed37000d7c8c1d481905 *inst/include/stan/math/prim/fun/logical_gte.hpp
d5f7043f9b8d449444966c06a0523ca8 *inst/include/stan/math/prim/fun/logical_lt.hpp
67b4b2e407504eba74150f68241fe0b7 *inst/include/stan/math/prim/fun/logical_lte.hpp
a3b53ae18721c00d67e160a98b6ae870 *inst/include/stan/math/prim/fun/logical_negation.hpp
e6c4cc3e40df731021c3686f6c904774 *inst/include/stan/math/prim/fun/logical_neq.hpp
e3d64bdf1ba81abe99a202867d1f1db0 *inst/include/stan/math/prim/fun/logical_or.hpp
01cd508abcf9f99cdb210069a07251d6 *inst/include/stan/math/prim/fun/logit.hpp
42153e1262516928dad66a4c7fa52e49 *inst/include/stan/math/prim/fun/lub_constrain.hpp
94e0b0d8c13937feb33aff8eda5f8ec9 *inst/include/stan/math/prim/fun/lub_free.hpp
67db0f12840407b238cc0083a59084c0 *inst/include/stan/math/prim/fun/make_nu.hpp
ebfec60485636a3830aff1008afb89b3 *inst/include/stan/math/prim/fun/matrix_exp.hpp
404bcfdbb62a2d391c9e94cf099ddb25 *inst/include/stan/math/prim/fun/matrix_exp_2x2.hpp
f850dc88a8785cb6b3626baa4bf32537 *inst/include/stan/math/prim/fun/matrix_exp_action_handler.hpp
130115e7a2fbc7e83ffc71a803a8d50e *inst/include/stan/math/prim/fun/matrix_exp_multiply.hpp
6086fff5c77a4ef0a30cf665bd6bf30e *inst/include/stan/math/prim/fun/matrix_exp_pade.hpp
2fa3b6d0d06addf347c18268b9744ca6 *inst/include/stan/math/prim/fun/matrix_power.hpp
173695549d95984cef31e348e7ccf528 *inst/include/stan/math/prim/fun/max.hpp
59e95c1f044f20ed0b69ec3ddc5e468c *inst/include/stan/math/prim/fun/max_size.hpp
4d2bba8359d78a2e1825b98d1550bbc5 *inst/include/stan/math/prim/fun/max_size_mvt.hpp
cfa82512b8227a00430f9d5a3a43c1d9 *inst/include/stan/math/prim/fun/mdivide_left.hpp
d98bf9859515b1a61600c2f8db8ffad8 *inst/include/stan/math/prim/fun/mdivide_left_ldlt.hpp
42cfb877b6815695e5d3332e723800fc *inst/include/stan/math/prim/fun/mdivide_left_spd.hpp
751793b276ff7191783fdd64ccfa6357 *inst/include/stan/math/prim/fun/mdivide_left_tri.hpp
b9fd92ec06066ce6a354b4fc9ccafbd9 *inst/include/stan/math/prim/fun/mdivide_left_tri_low.hpp
13e65363c3c5286f013a9bfae8a27e1f *inst/include/stan/math/prim/fun/mdivide_right.hpp
a5d6e81cf6bf56c0291691e9a4ddfe0f *inst/include/stan/math/prim/fun/mdivide_right_ldlt.hpp
6ed7ce4c844b3c782a35b9492ffb568f *inst/include/stan/math/prim/fun/mdivide_right_spd.hpp
8c4afeb6f993c2b3d08ba14eb85d8ba9 *inst/include/stan/math/prim/fun/mdivide_right_tri.hpp
b21fcc9f596ee074a642a304aeb1e268 *inst/include/stan/math/prim/fun/mdivide_right_tri_low.hpp
926c3fe10a8a2f205db7ef2867c3dfda *inst/include/stan/math/prim/fun/mean.hpp
eac16680a64a5b7b32d9520faa643a4f *inst/include/stan/math/prim/fun/min.hpp
2a2e0bb82b204e1073ec7afb398b89eb *inst/include/stan/math/prim/fun/minus.hpp
085475b1e83156ca5afacd145dbd045f *inst/include/stan/math/prim/fun/modified_bessel_first_kind.hpp
ab0be77631e9fa159317ad94d99e4a9f *inst/include/stan/math/prim/fun/modified_bessel_second_kind.hpp
4a6fa4ad9a112cc84da8a3acb5e5ee5a *inst/include/stan/math/prim/fun/modulus.hpp
62f1584c65a79edd132ea0d5953db28c *inst/include/stan/math/prim/fun/multiply.hpp
c9ff7b82cc24f0efae5a1503776f626e *inst/include/stan/math/prim/fun/multiply_log.hpp
09eb40e42935a52519853c3b2319cdb7 *inst/include/stan/math/prim/fun/multiply_lower_tri_self_transpose.hpp
1a9bf756310a0da50354d6ce80464f4c *inst/include/stan/math/prim/fun/norm.hpp
98701b5dc09a2117483ad2fed93fb2e8 *inst/include/stan/math/prim/fun/norm1.hpp
8aae4649df0ce899728f1d44b76c4630 *inst/include/stan/math/prim/fun/norm2.hpp
69ab7b48adcbe2fa7ae8739f08f412d4 *inst/include/stan/math/prim/fun/num_elements.hpp
bc8385fc7755a0616e87d8810935f52c *inst/include/stan/math/prim/fun/offset_multiplier_constrain.hpp
ed99f7c6e0429b7ba237783e34c275fc *inst/include/stan/math/prim/fun/offset_multiplier_free.hpp
f8515c5d4cf783ce0f14870bb0429d89 *inst/include/stan/math/prim/fun/one_hot_array.hpp
45d0f472922ef06137287dd235f37596 *inst/include/stan/math/prim/fun/one_hot_int_array.hpp
96563578169c59da569b29d1483e17b7 *inst/include/stan/math/prim/fun/one_hot_row_vector.hpp
d387951c49d27523a862dfa185f940a2 *inst/include/stan/math/prim/fun/one_hot_vector.hpp
723da42a01f2e5b0699d8e73489dfe87 *inst/include/stan/math/prim/fun/ones_array.hpp
896680820fa7b4f9c55e79c3358f5da4 *inst/include/stan/math/prim/fun/ones_int_array.hpp
0aa42bb56dd184a83d098e64262f2921 *inst/include/stan/math/prim/fun/ones_row_vector.hpp
9e9b26bb304fdf219a34730b48f70d67 *inst/include/stan/math/prim/fun/ones_vector.hpp
2ab5a389e3e56fb0df46a96e6377d1f5 *inst/include/stan/math/prim/fun/ordered_constrain.hpp
cf2a9ec19ebfd562b72f9036f8b4aecd *inst/include/stan/math/prim/fun/ordered_free.hpp
bae81742b5e733a6a184d440ddee5388 *inst/include/stan/math/prim/fun/owens_t.hpp
3d2156cef8c13a027b3423698bf886d1 *inst/include/stan/math/prim/fun/plus.hpp
5dd05f296cbf3ddf0f108f9a7b60bcf0 *inst/include/stan/math/prim/fun/poisson_binomial_log_probs.hpp
e63baf3100766f90705a63eca2623424 *inst/include/stan/math/prim/fun/polar.hpp
ffdb89ab6134bfb84ea6323f15a10cd3 *inst/include/stan/math/prim/fun/positive_constrain.hpp
85f5de2e92ee80f32259121c46cba61a *inst/include/stan/math/prim/fun/positive_free.hpp
515f4a9a472919f23bf64af36c31cc46 *inst/include/stan/math/prim/fun/positive_ordered_constrain.hpp
2df303559318ff05ba28e3e37636864a *inst/include/stan/math/prim/fun/positive_ordered_free.hpp
d3028945f7b16471f441409ee7bd2afe *inst/include/stan/math/prim/fun/pow.hpp
7c2e940c9dcb941504ba30c7ebdd701c *inst/include/stan/math/prim/fun/primitive_value.hpp
93adc66cee905ad09b5f976924a1d949 *inst/include/stan/math/prim/fun/prob_constrain.hpp
78e9fe3b685deecf8458f1f53b878794 *inst/include/stan/math/prim/fun/prob_free.hpp
201d7d031e95091f251a70048570a4b7 *inst/include/stan/math/prim/fun/prod.hpp
e22f52a86a1b131d8a8582e049d5cebe *inst/include/stan/math/prim/fun/proj.hpp
1fccb6df49fbbf63a00b99a5ac5f473e *inst/include/stan/math/prim/fun/promote_elements.hpp
745492f70106415a9b7a65a6f64ef74f *inst/include/stan/math/prim/fun/promote_scalar.hpp
9189b2c61eff7731166a053c7a028b1e *inst/include/stan/math/prim/fun/pseudo_eigenvalues.hpp
65454184bb9ba3c35797bbd55305c7e2 *inst/include/stan/math/prim/fun/pseudo_eigenvectors.hpp
ae5cb6c5c3397b5c6bb6b4b94e10447a *inst/include/stan/math/prim/fun/qr.hpp
4d3326775b4ceed95cf1df99ebc9f3e2 *inst/include/stan/math/prim/fun/qr_Q.hpp
81373994829a4d72d7549f593c73354c *inst/include/stan/math/prim/fun/qr_R.hpp
11d947ebbc67c901abb81fcbbb8e12e0 *inst/include/stan/math/prim/fun/qr_thin.hpp
b64bba872962eebb9adf29137173ebe4 *inst/include/stan/math/prim/fun/qr_thin_Q.hpp
c4a57c25e467faaf0eeb795932122778 *inst/include/stan/math/prim/fun/qr_thin_R.hpp
571121ea7406819df37c4fdeb06340c8 *inst/include/stan/math/prim/fun/quad_form.hpp
c1f246ee5482f8dfb668516feeb66865 *inst/include/stan/math/prim/fun/quad_form_diag.hpp
377fdb9be308987ce78cc57356701e82 *inst/include/stan/math/prim/fun/quad_form_sym.hpp
3bdd714538069f6234371c73eb418c13 *inst/include/stan/math/prim/fun/quantile.hpp
82b4714b76b65509a1b25b48e8bed821 *inst/include/stan/math/prim/fun/rank.hpp
d4226a336fcda262c947c3fc5e6ae76b *inst/include/stan/math/prim/fun/read_corr_L.hpp
895b785accbe37bed34646b1ba0123a3 *inst/include/stan/math/prim/fun/read_corr_matrix.hpp
8c9faf268d9c905bd552629cdd58a3e6 *inst/include/stan/math/prim/fun/read_cov_L.hpp
d6e286dad727e20dd21dd4637e1ac623 *inst/include/stan/math/prim/fun/read_cov_matrix.hpp
7452feaa2a012436c8e452360259801f *inst/include/stan/math/prim/fun/real.hpp
256a6da8119f9fc6a1e849f34d276745 *inst/include/stan/math/prim/fun/rep_array.hpp
75525bdf7244b1015e76eb1b0a05fad9 *inst/include/stan/math/prim/fun/rep_matrix.hpp
2f7d545adaf43e0f6e02557646266281 *inst/include/stan/math/prim/fun/rep_row_vector.hpp
d7b35386bfbcf61437c8ac3225570893 *inst/include/stan/math/prim/fun/rep_vector.hpp
0c60b06b031602802cbb4735b26322b8 *inst/include/stan/math/prim/fun/resize.hpp
22833c82e5c27f31ed4ccd73e53a6c62 *inst/include/stan/math/prim/fun/reverse.hpp
75ac6decb3d86ac7bb19f569b0827dc9 *inst/include/stan/math/prim/fun/rising_factorial.hpp
d11a259fc81531af558e129c7e315a83 *inst/include/stan/math/prim/fun/round.hpp
786f7299d504333954c3ddbfeb2a873f *inst/include/stan/math/prim/fun/row.hpp
b3440168e038896f134f857fd55ffaaa *inst/include/stan/math/prim/fun/rows.hpp
0121e59b09717435de097cde2062f9eb *inst/include/stan/math/prim/fun/rows_dot_product.hpp
e70fb0217c649e74684a26508d5020e9 *inst/include/stan/math/prim/fun/rows_dot_self.hpp
1899e270269eec1a16c74284cb20051b *inst/include/stan/math/prim/fun/scalar_seq_view.hpp
68cae61cea9ff6ac101145e97048cedd *inst/include/stan/math/prim/fun/scalbn.hpp
ac5bdb6f6b50bc66f557f2a233daeea4 *inst/include/stan/math/prim/fun/scale_matrix_exp_multiply.hpp
62eea15b0bc87995484ef6a83a670f47 *inst/include/stan/math/prim/fun/scaled_add.hpp
4a7f3b62c2cc29433c002750f84b4495 *inst/include/stan/math/prim/fun/sd.hpp
b1a80c5229206009d8a8af5627f9d98a *inst/include/stan/math/prim/fun/segment.hpp
a9654ec8e29c0e854f52e76ea34fa079 *inst/include/stan/math/prim/fun/select.hpp
ce1c3cb1228615bcb7394c2c1503363c *inst/include/stan/math/prim/fun/sign.hpp
3c210a27187ac798a06dfe69539a5dbd *inst/include/stan/math/prim/fun/signbit.hpp
d00a6e242647fbf4e5c0d631e6be4c71 *inst/include/stan/math/prim/fun/simplex_constrain.hpp
5d6854bf80d39f4ac0da4bc675533509 *inst/include/stan/math/prim/fun/simplex_free.hpp
bbd3fafd9305513a3a5bf957610fdc94 *inst/include/stan/math/prim/fun/sin.hpp
e52d54fbe997c3a8aee20e14e9bb297f *inst/include/stan/math/prim/fun/singular_values.hpp
39710d3fc30e378bbee35c3c2dfe9306 *inst/include/stan/math/prim/fun/sinh.hpp
fa37010938fecfe4245a751f48a6b7b1 *inst/include/stan/math/prim/fun/size.hpp
4a2da8279dd07faf78f000d6aed6d78a *inst/include/stan/math/prim/fun/size_mvt.hpp
e8bfd80200ed03b13cc53ef15ed373c5 *inst/include/stan/math/prim/fun/size_zero.hpp
eb57e622d91d6f8c099476721069c56e *inst/include/stan/math/prim/fun/softmax.hpp
672453ca894a870ac1e1124e40f396c4 *inst/include/stan/math/prim/fun/sort_asc.hpp
0f74cbc524c9b59628658269126c684f *inst/include/stan/math/prim/fun/sort_desc.hpp
f8504a0c6962a7d2b5685dcd1653ef1b *inst/include/stan/math/prim/fun/sort_indices.hpp
84431afa818cff259249043695aef7d3 *inst/include/stan/math/prim/fun/sort_indices_asc.hpp
eea3e4f7090eab96852555273ee1377f *inst/include/stan/math/prim/fun/sort_indices_desc.hpp
30cad1a393a173db4a44954d0c10481b *inst/include/stan/math/prim/fun/sqrt.hpp
0427f9b356ea31e7ac31bc61625e535a *inst/include/stan/math/prim/fun/square.hpp
510ff20c612cdc6a6697bf73d75bf679 *inst/include/stan/math/prim/fun/squared_distance.hpp
cf090721470f64ae99b41a90086fcee8 *inst/include/stan/math/prim/fun/stan_print.hpp
35129ac5687c4f3825129b6dc2bead8a *inst/include/stan/math/prim/fun/step.hpp
7503d4fde665d5ae9fa684990503fb19 *inst/include/stan/math/prim/fun/sub_col.hpp
5fb8daa3ad27af8fef77eef995927855 *inst/include/stan/math/prim/fun/sub_row.hpp
b0b7e1f83720082bba180319b523857e *inst/include/stan/math/prim/fun/subtract.hpp
48c745f1907bbf527e87503ff84c5687 *inst/include/stan/math/prim/fun/sum.hpp
08438d0500ee157964a07bee83d82bdc *inst/include/stan/math/prim/fun/svd.hpp
1df4dd68ed9b53609d0e866e97a9d8c5 *inst/include/stan/math/prim/fun/svd_U.hpp
a19fefa5a737291c2f7de21f8a9fce71 *inst/include/stan/math/prim/fun/svd_V.hpp
54b354afcfad336cb490d63b940c305e *inst/include/stan/math/prim/fun/symmetrize_from_lower_tri.hpp
c9648fc6dc56b55e4320da8f891c50b2 *inst/include/stan/math/prim/fun/symmetrize_from_upper_tri.hpp
fd4f8f3038afadd62614db22b832c7f7 *inst/include/stan/math/prim/fun/tail.hpp
6bdf2565da2b6653b6203614bce19687 *inst/include/stan/math/prim/fun/tan.hpp
0dc767656fd1140190471c728887d35f *inst/include/stan/math/prim/fun/tanh.hpp
76e748a988fae82d79fa4eb130fd7b87 *inst/include/stan/math/prim/fun/tcrossprod.hpp
e89d94b5b2ca774856dfeb3eac07e820 *inst/include/stan/math/prim/fun/tgamma.hpp
15539f26bda765bddce1e4af7fb21575 *inst/include/stan/math/prim/fun/to_array_1d.hpp
154ae9dc212d4e2e7c747d03fa982eee *inst/include/stan/math/prim/fun/to_array_2d.hpp
5ae3f1a5d9fafeaef98aa5a772a29a75 *inst/include/stan/math/prim/fun/to_complex.hpp
6b309fc721316b7a2ea647ec0a3f6a02 *inst/include/stan/math/prim/fun/to_int.hpp
ebe49a74e1b45645b81fb89f230690b5 *inst/include/stan/math/prim/fun/to_matrix.hpp
5e5858432a9dd6003058a8100f006f6c *inst/include/stan/math/prim/fun/to_ref.hpp
859196f909d62b1241636ca01c27acaa *inst/include/stan/math/prim/fun/to_row_vector.hpp
edc104ef158af3d5c8ef8dfe80d7757e *inst/include/stan/math/prim/fun/to_vector.hpp
b9bbd845d838010879eaafd2b513e987 *inst/include/stan/math/prim/fun/trace.hpp
75f24682423e029b1be0fbc8ef059b2f *inst/include/stan/math/prim/fun/trace_gen_inv_quad_form_ldlt.hpp
47135d09ba0955b2825b27a8eb5a3fe5 *inst/include/stan/math/prim/fun/trace_gen_quad_form.hpp
3d419ee8b0e935398554d3664e29f6d8 *inst/include/stan/math/prim/fun/trace_inv_quad_form_ldlt.hpp
471787e325c7a01297d9331a5c983021 *inst/include/stan/math/prim/fun/trace_quad_form.hpp
0914ae5d1e5b924f818eb8b692b2dbae *inst/include/stan/math/prim/fun/transpose.hpp
8a80829b8b2b494380f3ea4e39ec044c *inst/include/stan/math/prim/fun/trigamma.hpp
9875f87462fd12502e086db003f2ad44 *inst/include/stan/math/prim/fun/trunc.hpp
e84bd249f3b3bb15aab4de866e4dde0c *inst/include/stan/math/prim/fun/typedefs.hpp
f46df05a874ed23f33e2751aac2c8314 *inst/include/stan/math/prim/fun/ub_constrain.hpp
522fdc182445a040226d847626e9975b *inst/include/stan/math/prim/fun/ub_free.hpp
9f2acd4ebd40d151bc549c2e162b5ee7 *inst/include/stan/math/prim/fun/uniform_simplex.hpp
0defe43648e7448173e715a110cd0c5b *inst/include/stan/math/prim/fun/unit_vector_constrain.hpp
963d059d66e175deb22bf4742dc396c8 *inst/include/stan/math/prim/fun/unit_vector_free.hpp
0c20c0d40cabf4b0804f630694a0dc7c *inst/include/stan/math/prim/fun/unitspaced_array.hpp
4cfab6826db41a2b85aabe3ce455ada1 *inst/include/stan/math/prim/fun/value_of.hpp
cf783938b57a613c7fed8ab8559baf31 *inst/include/stan/math/prim/fun/value_of_rec.hpp
911ce93b0623296a900aecf09500cc17 *inst/include/stan/math/prim/fun/variance.hpp
656bd609774439c2b1ffadb07889f16c *inst/include/stan/math/prim/fun/vec_concat.hpp
ac56e149d920192200bb624038faec2b *inst/include/stan/math/prim/fun/vector_seq_view.hpp
fde247e3c342714ba627e7c521988fb5 *inst/include/stan/math/prim/fun/welford_covar_estimator.hpp
d3e2ae264ef208e509ba4858afc31a37 *inst/include/stan/math/prim/fun/welford_var_estimator.hpp
ff20b088b5e7baca4b240186f41f7353 *inst/include/stan/math/prim/fun/zeros_array.hpp
0daa78ce098e661250dc2c7d80cdd4f4 *inst/include/stan/math/prim/fun/zeros_int_array.hpp
ea3ee2fe7aec1ad56c5ede3249fd355a *inst/include/stan/math/prim/fun/zeros_row_vector.hpp
ad71b9e381dc2069b202e88a4a13d90f *inst/include/stan/math/prim/fun/zeros_vector.hpp
5e5aef31300b0b9e9519d96f283a7cb2 *inst/include/stan/math/prim/functor.hpp
f1c6d2e6df7ddf44f72f8dba89d5975f *inst/include/stan/math/prim/functor/algebra_solver_adapter.hpp
2bb9913b3ffe86f12b9ddf2a94fde4d9 *inst/include/stan/math/prim/functor/apply.hpp
13f40ca674a24e9ff0096e3a8d83c37f *inst/include/stan/math/prim/functor/apply_scalar_binary.hpp
6f2064cc0bd1df648190dfd878ae259a *inst/include/stan/math/prim/functor/apply_scalar_ternary.hpp
5b487e0bd5b9cc2b9873c6c5f8411b48 *inst/include/stan/math/prim/functor/apply_scalar_unary.hpp
5dbd76558d16c58c530a19c19ff2f475 *inst/include/stan/math/prim/functor/apply_vector_unary.hpp
31b6a41a4cb9c35668968d3abaa4eabb *inst/include/stan/math/prim/functor/broadcast_array.hpp
543154c2189166b5744a571bd2b08d13 *inst/include/stan/math/prim/functor/coupled_ode_system.hpp
4b8e68322a1dd6aeebb3724395b00f44 *inst/include/stan/math/prim/functor/finite_diff_gradient.hpp
458702552da777f02073beecff8c6ef5 *inst/include/stan/math/prim/functor/finite_diff_gradient_auto.hpp
d0abfefae154add7ff98013fb45a0cd1 *inst/include/stan/math/prim/functor/for_each.hpp
5afe5e92b65b4daf9fd6157c9fd0c9c5 *inst/include/stan/math/prim/functor/hcubature.hpp
942362a14cc0cbc4dcbdd5e0121724a0 *inst/include/stan/math/prim/functor/integrate_1d.hpp
77de6b6028a5ae75afa52b8e8afdbf71 *inst/include/stan/math/prim/functor/integrate_1d_adapter.hpp
99a7928a103de64f26b1a201535a6995 *inst/include/stan/math/prim/functor/integrate_ode_rk45.hpp
7590d01fe78b60164b007f109c26f672 *inst/include/stan/math/prim/functor/integrate_ode_std_vector_interface_adapter.hpp
304f3e9a520f18b9edd14a3de39a473f *inst/include/stan/math/prim/functor/map_rect.hpp
74962beb567e41074b788474a1e77731 *inst/include/stan/math/prim/functor/map_rect_combine.hpp
35238f14d69425591ae4d47312b3d2d5 *inst/include/stan/math/prim/functor/map_rect_concurrent.hpp
8d9020de42a08bb68c2d8ed2a9d9d571 *inst/include/stan/math/prim/functor/map_rect_mpi.hpp
823a4d72c02c9553a92989727fe273cf *inst/include/stan/math/prim/functor/map_rect_reduce.hpp
2447b097b1b93ecd1b2d5a99c2376976 *inst/include/stan/math/prim/functor/mpi_cluster.hpp
ae5285a9854322c7dc99320e80514c5d *inst/include/stan/math/prim/functor/mpi_cluster_inst.cpp
e0df27269ab0ccee2d9bc8a10c80699b *inst/include/stan/math/prim/functor/mpi_command.hpp
41d8964efb0c07267b2870cbbd8a8a6e *inst/include/stan/math/prim/functor/mpi_distributed_apply.hpp
fd209041f89b41226506604372935057 *inst/include/stan/math/prim/functor/mpi_parallel_call.hpp
048aae3adafe466d416ea79b8fd24ebe *inst/include/stan/math/prim/functor/ode_ckrk.hpp
d6c12dacc98bce44c3ad64eb90051d8b *inst/include/stan/math/prim/functor/ode_rk45.hpp
d283be9a748a24384d9ef0259a926490 *inst/include/stan/math/prim/functor/ode_store_sensitivities.hpp
d366ffa97bbc5c4727fbefe6e7d53ea2 *inst/include/stan/math/prim/functor/operands_and_partials.hpp
359c14115dc27d709ce3729f0a49d42d *inst/include/stan/math/prim/functor/partials_propagator.hpp
5c25711961dc64f840d775cb37bc947c *inst/include/stan/math/prim/functor/reduce_sum.hpp
3e244b3031db5bcb5a9f584e0cac13eb *inst/include/stan/math/prim/functor/reduce_sum_static.hpp
8445e95ecef0d0e1ab48e173fb494d7e *inst/include/stan/math/prim/meta.hpp
627d81225d17693185dc0b186e3ccc86 *inst/include/stan/math/prim/meta/StdVectorBuilder.hpp
63162d9f7464fe7fa436325707e26771 *inst/include/stan/math/prim/meta/VectorBuilder.hpp
686abdabc034e7f2762799a04ad1d5bd *inst/include/stan/math/prim/meta/VectorBuilderHelper.hpp
f66dc0fd406ea6b131c1b5dc6349e6e2 *inst/include/stan/math/prim/meta/ad_promotable.hpp
3be3429955dcf17832f694ed6b67bf6c *inst/include/stan/math/prim/meta/append_return_type.hpp
c8484977466f405c4ed326e49a1d7479 *inst/include/stan/math/prim/meta/base_type.hpp
3f80fb2730652e57a3d26cf79d128fd9 *inst/include/stan/math/prim/meta/bool_constant.hpp
70cc77177abbb183aa960a0478d42f2f *inst/include/stan/math/prim/meta/child_type.hpp
c4a9c3b4abc15db59073ff45b08367b5 *inst/include/stan/math/prim/meta/compiler_attributes.hpp
47b16068bb02d5c1e669fbbab30dab59 *inst/include/stan/math/prim/meta/conjunction.hpp
1561aa5b2002f8aa200ea051bcbc6869 *inst/include/stan/math/prim/meta/contains_fvar.hpp
8c8a8d0f25b6af2d9810ad2b39d30792 *inst/include/stan/math/prim/meta/contains_std_vector.hpp
882dddb92310a09bf4172485aea8a081 *inst/include/stan/math/prim/meta/disjunction.hpp
2b397bb9bf713a74c14e129265e3f37d *inst/include/stan/math/prim/meta/error_index.hpp
01060a5e623319720aa4b9560a44f65d *inst/include/stan/math/prim/meta/forward_as.hpp
61a5b30cfaddfa3c7c61461f6b16e0fa *inst/include/stan/math/prim/meta/holder.hpp
beebb050afea7bc651ae9b6e0a3641d2 *inst/include/stan/math/prim/meta/include_summand.hpp
a62137f5133d038255bef86901f983e5 *inst/include/stan/math/prim/meta/index_apply.hpp
93682e31ba07766aa3ec59805e882829 *inst/include/stan/math/prim/meta/index_type.hpp
46256adf079162f5267816876c57eaf1 *inst/include/stan/math/prim/meta/is_arena_matrix.hpp
6ed4fdebff78b46d24f5c9eb01c7e5a8 *inst/include/stan/math/prim/meta/is_autodiff.hpp
08dc048f5cb8ee09cf0214f9953bc893 *inst/include/stan/math/prim/meta/is_base_pointer_convertible.hpp
72b931ca3234e7c9e1a7cc33f2b3ce2d *inst/include/stan/math/prim/meta/is_complex.hpp
c24274165f6958ffe7cfc58c4daf5b77 *inst/include/stan/math/prim/meta/is_constant.hpp
ff8ff4b0ac2177af765fdae4732c1f5d *inst/include/stan/math/prim/meta/is_container.hpp
361d63224908989ea21a3f17bf38b67b *inst/include/stan/math/prim/meta/is_container_or_var_matrix.hpp
8927df03d9ca097b16db7e675227a58e *inst/include/stan/math/prim/meta/is_dense_dynamic.hpp
cc46663f63f17f3345f1b0187347ae09 *inst/include/stan/math/prim/meta/is_detected.hpp
c271b9415494f059df9f6264d1cb0eea *inst/include/stan/math/prim/meta/is_double_or_int.hpp
5fd285dd6bd969c43a2ce0d2aeae4a79 *inst/include/stan/math/prim/meta/is_eigen.hpp
5a70c2ea85b10d3cabe230bc592a310d *inst/include/stan/math/prim/meta/is_eigen_dense_base.hpp
1f3bd6d6c98bcfe264ae9ac9f71560d5 *inst/include/stan/math/prim/meta/is_eigen_dense_dynamic.hpp
1587ab0807c5b003ad76b2094593cfb6 *inst/include/stan/math/prim/meta/is_eigen_matrix.hpp
a5e85d9551b37b87b856fd679ed0cd50 *inst/include/stan/math/prim/meta/is_eigen_matrix_base.hpp
b0b6e56deb608995c60162715f908517 *inst/include/stan/math/prim/meta/is_eigen_sparse_base.hpp
b37f2aeea71682666fdb859f38156d1e *inst/include/stan/math/prim/meta/is_fvar.hpp
00b8a9a3639ecd8ebce67e859aad370c *inst/include/stan/math/prim/meta/is_kernel_expression.hpp
75bdecb216249391deb5eaffa6faf7d0 *inst/include/stan/math/prim/meta/is_matrix.hpp
09cae744d58860ddd5578a0505265de7 *inst/include/stan/math/prim/meta/is_matrix_cl.hpp
63205db46b5ae90ae066ac92b583aede *inst/include/stan/math/prim/meta/is_plain_type.hpp
b747fb38b0f73fce87b943de0f1c9372 *inst/include/stan/math/prim/meta/is_rev_matrix.hpp
22455259495876575743a7e6efae8fee *inst/include/stan/math/prim/meta/is_stan_scalar.hpp
3f7d3f3ff219dcb831883e32e967da80 *inst/include/stan/math/prim/meta/is_stan_scalar_or_eigen.hpp
4bc67a5ab842e512f2de4aa26a1dfd0c *inst/include/stan/math/prim/meta/is_string_convertible.hpp
8dba1f02fc519005eb4a3b5c56bc5825 *inst/include/stan/math/prim/meta/is_tuple.hpp
d78a2c5a8068cc75188288a6dbd5ad5f *inst/include/stan/math/prim/meta/is_var.hpp
bf2927560d159207d2259c5377ea460a *inst/include/stan/math/prim/meta/is_var_and_matrix_types.hpp
5d33c928265c7a7096f8297b9768b740 *inst/include/stan/math/prim/meta/is_var_dense_dynamic.hpp
5273dcca0958d68e70883de19a62cc8c *inst/include/stan/math/prim/meta/is_var_eigen.hpp
3b419d329c63cc6bf62a6167defb0e4b *inst/include/stan/math/prim/meta/is_var_matrix.hpp
67d324bb256a04d93231de4ae9036e05 *inst/include/stan/math/prim/meta/is_var_or_arithmetic.hpp
be65474b4da389802832de23d15df85e *inst/include/stan/math/prim/meta/is_vari.hpp
4bb27af932aa8a75843c4c0bec3d3029 *inst/include/stan/math/prim/meta/is_vector.hpp
e7da865829a134331ad5bba0571c1a57 *inst/include/stan/math/prim/meta/is_vector_like.hpp
05d4226ac619a81b3e4a8d822c7d88cd *inst/include/stan/math/prim/meta/partials_return_type.hpp
644077f4126facc66cd968b2012ecdd7 *inst/include/stan/math/prim/meta/partials_type.hpp
075fd934c347d02802be944fe7713f59 *inst/include/stan/math/prim/meta/plain_type.hpp
68b43a4368512612ec80efc8dc8fee98 *inst/include/stan/math/prim/meta/possibly_sum.hpp
273dec0324918b0857fb30b929c26307 *inst/include/stan/math/prim/meta/promote_args.hpp
fd3f50ea1041e5ee26bdf44846aadfaf *inst/include/stan/math/prim/meta/promote_scalar_type.hpp
65df52477c731dfe86b1c650d2b11e31 *inst/include/stan/math/prim/meta/ref_type.hpp
4991157382a14353e2c0635e667b4d18 *inst/include/stan/math/prim/meta/require_generics.hpp
6028ce2c207e9a010c703b970df4a3d7 *inst/include/stan/math/prim/meta/require_helpers.hpp
2ce31810b7d583090922cdd413446b0a *inst/include/stan/math/prim/meta/return_type.hpp
314eba5ae46ec7782cb5eb7d846e3958 *inst/include/stan/math/prim/meta/scalar_type.hpp
c95f86926f000c98062d2e9783d3f30a *inst/include/stan/math/prim/meta/scalar_type_pre.hpp
fbdd091f9ecff467aee8abb1fa15d470 *inst/include/stan/math/prim/meta/seq_view.hpp
fbec2c5a9b5cf68a7141b9ade30d4965 *inst/include/stan/math/prim/meta/static_select.hpp
4672dc23cbfcc1dfca8d569101cb3fc5 *inst/include/stan/math/prim/meta/value_type.hpp
541b6b7aead413a9bbe11de7d434d773 *inst/include/stan/math/prim/meta/void_t.hpp
552c6314f29674bb2da86ad528691ae8 *inst/include/stan/math/prim/prob.hpp
76eaac22d8d1912308bbfd33d08e00f1 *inst/include/stan/math/prim/prob/bernoulli_ccdf_log.hpp
ba80bc24b603f1bc58fba5d7cef02200 *inst/include/stan/math/prim/prob/bernoulli_cdf.hpp
d194be1f10f50ba3bfdaab8b99ebb0c0 *inst/include/stan/math/prim/prob/bernoulli_cdf_log.hpp
d567eba174e6327bd8888175edba7781 *inst/include/stan/math/prim/prob/bernoulli_lccdf.hpp
12f26a9a453db36abf13d6539a1f04c2 *inst/include/stan/math/prim/prob/bernoulli_lcdf.hpp
f9f1c1147bda53007c512c97992e6083 *inst/include/stan/math/prim/prob/bernoulli_log.hpp
3bd64ad74af970d646b35c0919d3492f *inst/include/stan/math/prim/prob/bernoulli_logit_glm_log.hpp
b6e6a937ecbf8214037b54ad0b005f86 *inst/include/stan/math/prim/prob/bernoulli_logit_glm_lpmf.hpp
f32d0a2083240553973453a13fb552ca *inst/include/stan/math/prim/prob/bernoulli_logit_glm_rng.hpp
e4ca47a1e24be270512c7092367efd2e *inst/include/stan/math/prim/prob/bernoulli_logit_log.hpp
e8cd6a3a2ec3a8cf21b1ba1587bb847c *inst/include/stan/math/prim/prob/bernoulli_logit_lpmf.hpp
018056aec88aa639c920d4d356a6f2e4 *inst/include/stan/math/prim/prob/bernoulli_logit_rng.hpp
3784e7af2394a49ec2c320869258d45a *inst/include/stan/math/prim/prob/bernoulli_lpmf.hpp
512b3a4d8a41f2061bffaf1b58685f6c *inst/include/stan/math/prim/prob/bernoulli_rng.hpp
9f0288fb25835a46bdb09c5f4f1e359b *inst/include/stan/math/prim/prob/beta_binomial_ccdf_log.hpp
447417078e8e620409b5a98a124cbccb *inst/include/stan/math/prim/prob/beta_binomial_cdf.hpp
8dc8682f4edd9c0c1ee36e24c4312e7b *inst/include/stan/math/prim/prob/beta_binomial_cdf_log.hpp
6988be9bf256edc21f692289431bfb99 *inst/include/stan/math/prim/prob/beta_binomial_lccdf.hpp
d81d65b49c92c569ddf915c691d509de *inst/include/stan/math/prim/prob/beta_binomial_lcdf.hpp
a59410041b904c16cad0283377dae3a1 *inst/include/stan/math/prim/prob/beta_binomial_log.hpp
decfb687e0fd9937c290f12a0bea41fb *inst/include/stan/math/prim/prob/beta_binomial_lpmf.hpp
dff9bfb324c320c4dc38f16bf56b98db *inst/include/stan/math/prim/prob/beta_binomial_rng.hpp
c2df0b0b3c192dab0673ff68fa5622ca *inst/include/stan/math/prim/prob/beta_ccdf_log.hpp
9d186735187c2516c84b322cdac545f4 *inst/include/stan/math/prim/prob/beta_cdf.hpp
c04fbe77a44efb79bdc8c1f4487278ef *inst/include/stan/math/prim/prob/beta_cdf_log.hpp
22ccbe418c16fdc6fca8aa7522870220 *inst/include/stan/math/prim/prob/beta_lccdf.hpp
7d2588cdc68cefbe4c53f0528aaa9b24 *inst/include/stan/math/prim/prob/beta_lcdf.hpp
f98b048e116733e7247cc4ca4074952d *inst/include/stan/math/prim/prob/beta_log.hpp
9fcd424ea27801dba7379512c951b7ef *inst/include/stan/math/prim/prob/beta_lpdf.hpp
6e700fe94d6fecca3cf05db3037a67c9 *inst/include/stan/math/prim/prob/beta_proportion_ccdf_log.hpp
8abf8c729f280945acf7b34cdbf72383 *inst/include/stan/math/prim/prob/beta_proportion_cdf_log.hpp
57b0f979a71d93bed7e13f629fbf5a7a *inst/include/stan/math/prim/prob/beta_proportion_lccdf.hpp
bfb2bb742fe321b2c1ba4c83c9c5dd8c *inst/include/stan/math/prim/prob/beta_proportion_lcdf.hpp
bc3cb581b182ee5821144a7baed5e1d6 *inst/include/stan/math/prim/prob/beta_proportion_log.hpp
4345bf370f1d0b8ad01c463021f311fd *inst/include/stan/math/prim/prob/beta_proportion_lpdf.hpp
90183f70618a6135214f723e96b2013f *inst/include/stan/math/prim/prob/beta_proportion_rng.hpp
6f2084ad6ee55b9a0b50fb151d38a27a *inst/include/stan/math/prim/prob/beta_rng.hpp
649eafcdca5fd35863ca8b2ad996d136 *inst/include/stan/math/prim/prob/binomial_ccdf_log.hpp
9cdea62131caa227259e554d75df6e65 *inst/include/stan/math/prim/prob/binomial_cdf.hpp
be38e1f0ef25dcc942b7cd9334ff9f03 *inst/include/stan/math/prim/prob/binomial_cdf_log.hpp
0c79ef88ed807ec4ab4503bc104c9852 *inst/include/stan/math/prim/prob/binomial_lccdf.hpp
dab3f9868e2151288d80da03a12b39bd *inst/include/stan/math/prim/prob/binomial_lcdf.hpp
f66eef7566d99d8ad96b8c925084ea03 *inst/include/stan/math/prim/prob/binomial_log.hpp
33fd408dfc74254f4a176b7ef9b33d99 *inst/include/stan/math/prim/prob/binomial_logit_log.hpp
cba5d99c4c4d075041049c72a48d41d4 *inst/include/stan/math/prim/prob/binomial_logit_lpmf.hpp
eccb6c59bff48034357f9a305e1348a1 *inst/include/stan/math/prim/prob/binomial_lpmf.hpp
6a856442907098655e842bfece33c2b0 *inst/include/stan/math/prim/prob/binomial_rng.hpp
9d40680e7bee7692dfc413e9ffb25e26 *inst/include/stan/math/prim/prob/categorical_log.hpp
96796c9d4bfee94bf832393c01a1db00 *inst/include/stan/math/prim/prob/categorical_logit_glm_lpmf.hpp
caff3da49e787710ada92b5c4d82a588 *inst/include/stan/math/prim/prob/categorical_logit_log.hpp
6c1f0f606491ea1ec6c3a3831be44d39 *inst/include/stan/math/prim/prob/categorical_logit_lpmf.hpp
dd4ce19ce75a2bef1c294f2ffd531f8a *inst/include/stan/math/prim/prob/categorical_logit_rng.hpp
a3f5756008168270797636c6bc93131d *inst/include/stan/math/prim/prob/categorical_lpmf.hpp
6a55afa8ccd817baf88eede330c201ed *inst/include/stan/math/prim/prob/categorical_rng.hpp
4f9bf1146bbc9466747f79910436f3e4 *inst/include/stan/math/prim/prob/cauchy_ccdf_log.hpp
a6bcb931521dc0e6e2d244ac03b37e9c *inst/include/stan/math/prim/prob/cauchy_cdf.hpp
d370763ee1a6311f089849abc6d03fdc *inst/include/stan/math/prim/prob/cauchy_cdf_log.hpp
39f0b8d0b3ca93b1463523b138248d5e *inst/include/stan/math/prim/prob/cauchy_lccdf.hpp
67486ee165cfbd55832847cb6bacbe50 *inst/include/stan/math/prim/prob/cauchy_lcdf.hpp
97ab629dbf9ef59a7c899987f128f6d0 *inst/include/stan/math/prim/prob/cauchy_log.hpp
8bd0da028747c62494301beb3b3cce74 *inst/include/stan/math/prim/prob/cauchy_lpdf.hpp
1739592eeaea79a6951b173c470d11c5 *inst/include/stan/math/prim/prob/cauchy_rng.hpp
f27d7d2d3b47659c957d3cf7d21b216e *inst/include/stan/math/prim/prob/chi_square_ccdf_log.hpp
f3a6870079a9b502c2f4bb0643e52b8e *inst/include/stan/math/prim/prob/chi_square_cdf.hpp
07f95d13f17d2867699bca37b4be69c1 *inst/include/stan/math/prim/prob/chi_square_cdf_log.hpp
a166bc69a7e491bb891b85f58daecffc *inst/include/stan/math/prim/prob/chi_square_lccdf.hpp
522ec70880e85d6da39e4230ed3d6fa0 *inst/include/stan/math/prim/prob/chi_square_lcdf.hpp
759901b1408b7a3487c206da8bd93160 *inst/include/stan/math/prim/prob/chi_square_log.hpp
d5f89fbeb20e4e950051365a85e0485a *inst/include/stan/math/prim/prob/chi_square_lpdf.hpp
35815b415cb14a1e8efe941991a7a426 *inst/include/stan/math/prim/prob/chi_square_rng.hpp
e7aebdcf7117aeffb986f72d7ad73369 *inst/include/stan/math/prim/prob/dirichlet_log.hpp
90722684351dafe253275312678f78f0 *inst/include/stan/math/prim/prob/dirichlet_lpdf.hpp
1236d0f317374abe48b1cf410affaa2e *inst/include/stan/math/prim/prob/dirichlet_lpmf.hpp
a7bbfe00581640aab1afa9a0addfb192 *inst/include/stan/math/prim/prob/dirichlet_rng.hpp
73a640e5dff3423a922869d544622d96 *inst/include/stan/math/prim/prob/discrete_range_ccdf_log.hpp
4e59f607ed919c182547f6152bada0f9 *inst/include/stan/math/prim/prob/discrete_range_cdf.hpp
3493aa1035d15284d63b6583b6b6a048 *inst/include/stan/math/prim/prob/discrete_range_cdf_log.hpp
de4c17673b387877adf88641efaf9389 *inst/include/stan/math/prim/prob/discrete_range_lccdf.hpp
2a91ba8f8f3ecfcb6c1e4c63f5d2d3f6 *inst/include/stan/math/prim/prob/discrete_range_lcdf.hpp
09f3337203fce3d0bf3a14b4b8020e1a *inst/include/stan/math/prim/prob/discrete_range_log.hpp
da589ceee1d29da8fcf7ddc209f62fac *inst/include/stan/math/prim/prob/discrete_range_lpmf.hpp
dd917c0e467eae8c8a0e1fe9b9286475 *inst/include/stan/math/prim/prob/discrete_range_rng.hpp
cdad3b2a4c75cae15207481c81a1277e *inst/include/stan/math/prim/prob/double_exponential_ccdf_log.hpp
0592b51b77d6267b513b4a73dc412c6b *inst/include/stan/math/prim/prob/double_exponential_cdf.hpp
ff0892b510eba19c08c14fa51430b145 *inst/include/stan/math/prim/prob/double_exponential_cdf_log.hpp
2630b1e06d8d8659c8c5d348e59101af *inst/include/stan/math/prim/prob/double_exponential_lccdf.hpp
15f8ac7d55dca3288171e93114f672d1 *inst/include/stan/math/prim/prob/double_exponential_lcdf.hpp
8f8875a420898f09bcc8e002ce5ee0fb *inst/include/stan/math/prim/prob/double_exponential_log.hpp
12b0f96144c5bd2765314f1d0db1402c *inst/include/stan/math/prim/prob/double_exponential_lpdf.hpp
99cb15f026fcb5e07309ec2d31bf6c13 *inst/include/stan/math/prim/prob/double_exponential_rng.hpp
62e9583bb795cf354cb57480f81eacaa *inst/include/stan/math/prim/prob/exp_mod_normal_ccdf_log.hpp
a2606a253118b8f4c27e36a58e68bcb1 *inst/include/stan/math/prim/prob/exp_mod_normal_cdf.hpp
a112b2763e0aee43b795907143bae523 *inst/include/stan/math/prim/prob/exp_mod_normal_cdf_log.hpp
3d31bba7b2b555dee57b26de2c70cd0e *inst/include/stan/math/prim/prob/exp_mod_normal_lccdf.hpp
168c73337f903ef3c2f1053bb6d20de9 *inst/include/stan/math/prim/prob/exp_mod_normal_lcdf.hpp
e786148f16da0984972161a9820fe211 *inst/include/stan/math/prim/prob/exp_mod_normal_log.hpp
19e701d3061611dd991d522ae6ad61f3 *inst/include/stan/math/prim/prob/exp_mod_normal_lpdf.hpp
1372979fe382d4953fd7c5e4e4b07df1 *inst/include/stan/math/prim/prob/exp_mod_normal_rng.hpp
44560397c63c1f41c7d28cb4b1788c6f *inst/include/stan/math/prim/prob/exponential_ccdf_log.hpp
51db79250a642b1aa6c6c739ee8baeeb *inst/include/stan/math/prim/prob/exponential_cdf.hpp
99e41393e93aea7207949d986de33867 *inst/include/stan/math/prim/prob/exponential_cdf_log.hpp
4a2f827dc629818625eadebaef1dac20 *inst/include/stan/math/prim/prob/exponential_lccdf.hpp
ae6a964b2462215f4354bf0b0f0b7882 *inst/include/stan/math/prim/prob/exponential_lcdf.hpp
e78ee96b8637a45143bb94a00a6f9462 *inst/include/stan/math/prim/prob/exponential_log.hpp
42ef856429fde0db84af2661d57de6e2 *inst/include/stan/math/prim/prob/exponential_lpdf.hpp
503d444f99091607998810a986183fdd *inst/include/stan/math/prim/prob/exponential_rng.hpp
47b524384e72c0dda8d3551921663f75 *inst/include/stan/math/prim/prob/frechet_ccdf_log.hpp
0b482ebce0414919eafb8d6af1eb168d *inst/include/stan/math/prim/prob/frechet_cdf.hpp
836632da3ebf84f97a1a5d76e5627091 *inst/include/stan/math/prim/prob/frechet_cdf_log.hpp
b015f551a5de0fad7a2e1c5bd9aa4d8b *inst/include/stan/math/prim/prob/frechet_lccdf.hpp
0b47f15fa0660488fb9ef49bc5af2d6c *inst/include/stan/math/prim/prob/frechet_lcdf.hpp
bd19b2402e552dffb04949cad61ed046 *inst/include/stan/math/prim/prob/frechet_log.hpp
3d48759e9d810b2617d013e31c344286 *inst/include/stan/math/prim/prob/frechet_lpdf.hpp
ad59166802e6daeaa3d761f01d54c3fd *inst/include/stan/math/prim/prob/frechet_rng.hpp
a8857a83c7efa40172da357d14efd4e6 *inst/include/stan/math/prim/prob/gamma_ccdf_log.hpp
e58b39af1ff82094559d482083cb99fc *inst/include/stan/math/prim/prob/gamma_cdf.hpp
5cf040a3830b5e80a00c95cb4466f072 *inst/include/stan/math/prim/prob/gamma_cdf_log.hpp
b6a361bbde21420d9b460f3eef8ddfdd *inst/include/stan/math/prim/prob/gamma_lccdf.hpp
e3fa99cad293c5ddaf089396cfa085e3 *inst/include/stan/math/prim/prob/gamma_lcdf.hpp
a66c465b260450b68c990c559dc3c19b *inst/include/stan/math/prim/prob/gamma_log.hpp
3eef3a5a98f8775a3344b842a24ebf89 *inst/include/stan/math/prim/prob/gamma_lpdf.hpp
59665aaa9b4cf8cc0f7e9cef07572eb8 *inst/include/stan/math/prim/prob/gamma_rng.hpp
2ca15d34d308a055d04888c7bc983cc7 *inst/include/stan/math/prim/prob/gaussian_dlm_obs_log.hpp
ef8350e2f3315c4557dbf6838084ccf5 *inst/include/stan/math/prim/prob/gaussian_dlm_obs_lpdf.hpp
9b3720ccaf2b2898a23b6dfd3952723a *inst/include/stan/math/prim/prob/gaussian_dlm_obs_rng.hpp
75afed3b77de54ecf11848c2df35e9ce *inst/include/stan/math/prim/prob/gumbel_ccdf_log.hpp
5bc58783085d69e682684848575dfcc7 *inst/include/stan/math/prim/prob/gumbel_cdf.hpp
7637db82a2ed88c0ec2888f5550f1abb *inst/include/stan/math/prim/prob/gumbel_cdf_log.hpp
090f9a0dcdb09f41c0eddbea4f0443f9 *inst/include/stan/math/prim/prob/gumbel_lccdf.hpp
70756a93f49387b3ca7e8fd8f4658626 *inst/include/stan/math/prim/prob/gumbel_lcdf.hpp
8ce7c9a3a4e3bd9a99b8748648d86fd4 *inst/include/stan/math/prim/prob/gumbel_log.hpp
e60d6863b70e1f54410002daffb71f45 *inst/include/stan/math/prim/prob/gumbel_lpdf.hpp
633c466da847e61b973a64e89b085e1e *inst/include/stan/math/prim/prob/gumbel_rng.hpp
0606ee8ad63f8dffbd62da7babbb2425 *inst/include/stan/math/prim/prob/hmm_hidden_state_prob.hpp
01d7b90245d42925637c89f81815396a *inst/include/stan/math/prim/prob/hmm_latent_rng.hpp
69b3d37d09bd99c96f285efe60bb6573 *inst/include/stan/math/prim/prob/hmm_marginal.hpp
974b7c32212ee8127ec2a22d80cb0a97 *inst/include/stan/math/prim/prob/hypergeometric_log.hpp
f23f3a276ab362b38b579104720bd2fe *inst/include/stan/math/prim/prob/hypergeometric_lpmf.hpp
5a49f98eab22a5e50d243efc2641f7d2 *inst/include/stan/math/prim/prob/hypergeometric_rng.hpp
86f1395abfd0899114e92757d21d17f6 *inst/include/stan/math/prim/prob/inv_chi_square_ccdf_log.hpp
a802882fc8033c9737c1addae86ac672 *inst/include/stan/math/prim/prob/inv_chi_square_cdf.hpp
e8db43338424dd847ccfd538fa94dad5 *inst/include/stan/math/prim/prob/inv_chi_square_cdf_log.hpp
7f37acd7293b81b307f76ec6e027dab5 *inst/include/stan/math/prim/prob/inv_chi_square_lccdf.hpp
97f3af378e47b60fa9bf2553cfec273e *inst/include/stan/math/prim/prob/inv_chi_square_lcdf.hpp
1cb4dec4556da7c9cfa1e30d0210398a *inst/include/stan/math/prim/prob/inv_chi_square_log.hpp
48190ff5d662dfe0df17d2a2625d82a0 *inst/include/stan/math/prim/prob/inv_chi_square_lpdf.hpp
ba8017908426b3cb936f81a1af5173a0 *inst/include/stan/math/prim/prob/inv_chi_square_rng.hpp
a8f940d4c89fea128c2003fb50830a12 *inst/include/stan/math/prim/prob/inv_gamma_ccdf_log.hpp
01e82c3de2b2c2764a0bd1ab9a0cfc5e *inst/include/stan/math/prim/prob/inv_gamma_cdf.hpp
d44387ae61f2061c2c144bddad3a611b *inst/include/stan/math/prim/prob/inv_gamma_cdf_log.hpp
98e9b8f84283faf633921cf85d530970 *inst/include/stan/math/prim/prob/inv_gamma_lccdf.hpp
c66e35218ee88b607abdd27dc7819325 *inst/include/stan/math/prim/prob/inv_gamma_lcdf.hpp
025db9a40c3f3cd723d12482c2c647dd *inst/include/stan/math/prim/prob/inv_gamma_log.hpp
f0ba492f99e92ce1e7ab9e0307507036 *inst/include/stan/math/prim/prob/inv_gamma_lpdf.hpp
f18059750cd91cbdb235875baf8d2f37 *inst/include/stan/math/prim/prob/inv_gamma_rng.hpp
ac5ab688cc5814b31f2c59a002557bc0 *inst/include/stan/math/prim/prob/inv_wishart_cholesky_lpdf.hpp
7ba893a591556006f2d29ecb77020cce *inst/include/stan/math/prim/prob/inv_wishart_cholesky_rng.hpp
ccb8642877d188a9ab43c9b9d334a7f8 *inst/include/stan/math/prim/prob/inv_wishart_log.hpp
a0e255cd9fa68e20729b2b7d57a51169 *inst/include/stan/math/prim/prob/inv_wishart_lpdf.hpp
540a7173a1a244834a816425af403f31 *inst/include/stan/math/prim/prob/inv_wishart_rng.hpp
20d4a63adfa2dcae417d889609592a1c *inst/include/stan/math/prim/prob/lkj_corr_cholesky_log.hpp
ff715599b19b21c8090d2103cd0ac952 *inst/include/stan/math/prim/prob/lkj_corr_cholesky_lpdf.hpp
b781361e95d601b4dec1f14655b4566c *inst/include/stan/math/prim/prob/lkj_corr_cholesky_rng.hpp
e5738b4b8262d0f206bd7332e8be37c8 *inst/include/stan/math/prim/prob/lkj_corr_log.hpp
ebfb81f7ae9a6a5c0c922ec22e68fc19 *inst/include/stan/math/prim/prob/lkj_corr_lpdf.hpp
47f8f2421abe5a1e044f9b3653f6f25a *inst/include/stan/math/prim/prob/lkj_corr_rng.hpp
670d50e104033b346bda5907b1af9068 *inst/include/stan/math/prim/prob/lkj_cov_log.hpp
f8e8267e93f8b28387e667c3e8a196b2 *inst/include/stan/math/prim/prob/lkj_cov_lpdf.hpp
4dd96fdd7dcfd7161ec0691608ab5f1d *inst/include/stan/math/prim/prob/logistic_ccdf_log.hpp
8c3bd12b32cc2d4ab0806f7701f53f38 *inst/include/stan/math/prim/prob/logistic_cdf.hpp
695cc3fb90e6f4c2b3e55219ad863daf *inst/include/stan/math/prim/prob/logistic_cdf_log.hpp
ff1705cf9a7ce7407edcb2b834ca929e *inst/include/stan/math/prim/prob/logistic_lccdf.hpp
e1340892b36e862546a28a21dbdf2714 *inst/include/stan/math/prim/prob/logistic_lcdf.hpp
ff9d5756e6ea09f1d46ff414eb12763c *inst/include/stan/math/prim/prob/logistic_log.hpp
ebac41d849c668c365cc9e268f333c41 *inst/include/stan/math/prim/prob/logistic_lpdf.hpp
6be5cf90c4004aca4b80f258a14092c9 *inst/include/stan/math/prim/prob/logistic_rng.hpp
1bde6026c7a6d106ffd167dc5515ce16 *inst/include/stan/math/prim/prob/loglogistic_cdf.hpp
57344da61d50c0950e9e9ce6180f2d6d *inst/include/stan/math/prim/prob/loglogistic_log.hpp
568bf4b77f535e9b9668c66dd318d9b4 *inst/include/stan/math/prim/prob/loglogistic_lpdf.hpp
73fe1a31f7e2dfbc7bd5dd5c9210b992 *inst/include/stan/math/prim/prob/loglogistic_rng.hpp
468dac43fdd4b079d1ffef0cf9aaa992 *inst/include/stan/math/prim/prob/lognormal_ccdf_log.hpp
206af0d444ff799d7414daa6936a3164 *inst/include/stan/math/prim/prob/lognormal_cdf.hpp
2cd6d48219968d1323299ee400af917a *inst/include/stan/math/prim/prob/lognormal_cdf_log.hpp
5fbac57f9c23c32e93df1a3fdb78b943 *inst/include/stan/math/prim/prob/lognormal_lccdf.hpp
ef2b00ed80c7e1acc5c05f5c62a80184 *inst/include/stan/math/prim/prob/lognormal_lcdf.hpp
9674e5a7ea08f7f35e85c1d654874473 *inst/include/stan/math/prim/prob/lognormal_log.hpp
a733e61c9b6039025174c3542deff6b7 *inst/include/stan/math/prim/prob/lognormal_lpdf.hpp
e015a6f0818860f36842c126149181a6 *inst/include/stan/math/prim/prob/lognormal_rng.hpp
783e43f9e997000167071f4d894aabe4 *inst/include/stan/math/prim/prob/matrix_normal_prec_log.hpp
b43a8af78670aab5d3c56510c11bc511 *inst/include/stan/math/prim/prob/matrix_normal_prec_lpdf.hpp
b107733c729280da011398f8e431fbac *inst/include/stan/math/prim/prob/matrix_normal_prec_rng.hpp
8b6a977fb8aeb808393331620e81c4b3 *inst/include/stan/math/prim/prob/multi_gp_cholesky_log.hpp
e63917f18eabc2eaa856662027fbbfd4 *inst/include/stan/math/prim/prob/multi_gp_cholesky_lpdf.hpp
298167212e9208d106eb7d393514a4a8 *inst/include/stan/math/prim/prob/multi_gp_log.hpp
5acb37bba283c602da39d2088920aa4f *inst/include/stan/math/prim/prob/multi_gp_lpdf.hpp
ccde82cfbee6ec9cc8a2e2d76f9b48a3 *inst/include/stan/math/prim/prob/multi_normal_cholesky_log.hpp
0d8039de811e629eba3072b8b0b6973a *inst/include/stan/math/prim/prob/multi_normal_cholesky_lpdf.hpp
237cf3e71b53bd5f5af3c32fdcb6d943 *inst/include/stan/math/prim/prob/multi_normal_cholesky_rng.hpp
ae6050dce3f3255745973855df2e4078 *inst/include/stan/math/prim/prob/multi_normal_log.hpp
016fe84ef904660d07b67b3505354b48 *inst/include/stan/math/prim/prob/multi_normal_lpdf.hpp
d666bb980daa2ac2e4feff214ba8aea3 *inst/include/stan/math/prim/prob/multi_normal_prec_log.hpp
fb3dc36faa1c94b990a049f1e58da020 *inst/include/stan/math/prim/prob/multi_normal_prec_lpdf.hpp
4275ea4569432a7810034f0b5f8ab98f *inst/include/stan/math/prim/prob/multi_normal_prec_rng.hpp
66f6504a245ca03ac3f33f4a678559c3 *inst/include/stan/math/prim/prob/multi_normal_rng.hpp
34418ebac65eb959a76d3492a43050ce *inst/include/stan/math/prim/prob/multi_student_t_cholesky_lpdf.hpp
dfb68ff113e5c785a994925643f505d4 *inst/include/stan/math/prim/prob/multi_student_t_cholesky_rng.hpp
637b59825604307476c07b823ef28c8d *inst/include/stan/math/prim/prob/multi_student_t_log.hpp
840a612c8807fdc04e8b7825f885093f *inst/include/stan/math/prim/prob/multi_student_t_lpdf.hpp
d53f421ad1db2e78867a66c73af91d18 *inst/include/stan/math/prim/prob/multi_student_t_rng.hpp
98834c20a4b8f7e1420927e7262f26fe *inst/include/stan/math/prim/prob/multinomial_log.hpp
3331bf455787b919bd7fb4fa071a59f1 *inst/include/stan/math/prim/prob/multinomial_logit_log.hpp
b472691cebb36283c652e207f7d3c6b4 *inst/include/stan/math/prim/prob/multinomial_logit_lpmf.hpp
6817328286a30a980ab34fa672a927aa *inst/include/stan/math/prim/prob/multinomial_logit_rng.hpp
c50ceae76ee874da548333eb1877037b *inst/include/stan/math/prim/prob/multinomial_lpmf.hpp
fa6bc27c268048cd8984b8d4b0bcaec7 *inst/include/stan/math/prim/prob/multinomial_rng.hpp
fe60b54b8adf5fbb8de1afe7b8c29389 *inst/include/stan/math/prim/prob/neg_binomial_2_ccdf_log.hpp
0562abd2ef61ec3d868664925a434482 *inst/include/stan/math/prim/prob/neg_binomial_2_cdf.hpp
b16baa2812779c12c12a48e48e6b2590 *inst/include/stan/math/prim/prob/neg_binomial_2_cdf_log.hpp
856190e1fe88bd7d38b7685bf7af1890 *inst/include/stan/math/prim/prob/neg_binomial_2_lccdf.hpp
b791965edd286667fff48ce56fb92bf3 *inst/include/stan/math/prim/prob/neg_binomial_2_lcdf.hpp
4eec5fc2481ad68ab7595987b5b4c7cf *inst/include/stan/math/prim/prob/neg_binomial_2_log.hpp
332536aa40dc65060464ac7f5218a80e *inst/include/stan/math/prim/prob/neg_binomial_2_log_glm_log.hpp
2711574d5fb07ca2e091005bbeab3670 *inst/include/stan/math/prim/prob/neg_binomial_2_log_glm_lpmf.hpp
1c87e10dde69a65f4962eac97c47c4b8 *inst/include/stan/math/prim/prob/neg_binomial_2_log_log.hpp
276ec2f5a118715b380f9505185ed9a4 *inst/include/stan/math/prim/prob/neg_binomial_2_log_lpmf.hpp
adddab6f4dfd0246f62b95405e1d426e *inst/include/stan/math/prim/prob/neg_binomial_2_log_rng.hpp
e251ebd8a498b3cae2b3c8d63a8f0b98 *inst/include/stan/math/prim/prob/neg_binomial_2_lpmf.hpp
3f42a9b2deca98306d49d1800c275cf7 *inst/include/stan/math/prim/prob/neg_binomial_2_rng.hpp
c1793c4137299a1e679ca707489ade92 *inst/include/stan/math/prim/prob/neg_binomial_ccdf_log.hpp
e7e16f00188a63f4b2cc4a0add0c3f38 *inst/include/stan/math/prim/prob/neg_binomial_cdf.hpp
f756155e014221d186bb91763223d261 *inst/include/stan/math/prim/prob/neg_binomial_cdf_log.hpp
81462fb122c58f19a22e1684e2905d3c *inst/include/stan/math/prim/prob/neg_binomial_lccdf.hpp
f3edfeca1a5d0087046af08144741200 *inst/include/stan/math/prim/prob/neg_binomial_lcdf.hpp
11b042c06f7923a8f18cab57026fb3e9 *inst/include/stan/math/prim/prob/neg_binomial_log.hpp
ab7ac64dab6c7a3d27ce47757a13a72d *inst/include/stan/math/prim/prob/neg_binomial_lpmf.hpp
52a8f92fb4f2db1868fb1710ef3617a5 *inst/include/stan/math/prim/prob/neg_binomial_rng.hpp
3dcfecf94738a5d868711c54ebd8ff4c *inst/include/stan/math/prim/prob/normal_ccdf_log.hpp
113d05f35795336e5e3b4d7a24c5bbe8 *inst/include/stan/math/prim/prob/normal_cdf.hpp
328ff884816ed34f0b3a40c7c3d3e092 *inst/include/stan/math/prim/prob/normal_cdf_log.hpp
a6552167e8bb01af56bdf579636c8a1b *inst/include/stan/math/prim/prob/normal_id_glm_log.hpp
4769a6d51a4011471b2d7f34249cdd3d *inst/include/stan/math/prim/prob/normal_id_glm_lpdf.hpp
ecc2d197151d14b06457acc3f2a7be8b *inst/include/stan/math/prim/prob/normal_lccdf.hpp
b18f9eb064e8df0831ad958b85d81532 *inst/include/stan/math/prim/prob/normal_lcdf.hpp
30c979077285bdbb0efd627c07853230 *inst/include/stan/math/prim/prob/normal_log.hpp
618308352244fd970f892e695450d198 *inst/include/stan/math/prim/prob/normal_lpdf.hpp
824a16d1a4a992348fc5286d7ae36b99 *inst/include/stan/math/prim/prob/normal_rng.hpp
4f3a12b63a316f0c24e6cd8fc605d24d *inst/include/stan/math/prim/prob/normal_sufficient_log.hpp
96f662ff19b449cc1ff6c52d838e6281 *inst/include/stan/math/prim/prob/normal_sufficient_lpdf.hpp
331f9bdfc3a0b97c610dfc1fdf5fdfed *inst/include/stan/math/prim/prob/ordered_logistic_glm_lpmf.hpp
4fd1364f8e67269c0fd33e6f26150548 *inst/include/stan/math/prim/prob/ordered_logistic_log.hpp
bb194a7fa210b6d9199978054dec8739 *inst/include/stan/math/prim/prob/ordered_logistic_lpmf.hpp
c1d0125dc1646090205edc1436078981 *inst/include/stan/math/prim/prob/ordered_logistic_rng.hpp
4dc6d4ebed2d4e681c1b2b907b340d18 *inst/include/stan/math/prim/prob/ordered_probit_log.hpp
7cad78fcf9a3a5060760e97e9c61ebf6 *inst/include/stan/math/prim/prob/ordered_probit_lpmf.hpp
27f3d39e0e0320e4029e8b25f90cc588 *inst/include/stan/math/prim/prob/ordered_probit_rng.hpp
c4314970010b102b479eb6ebe9ea22a0 *inst/include/stan/math/prim/prob/pareto_ccdf_log.hpp
22cb2ce33682400b12f7460ef7eb39a0 *inst/include/stan/math/prim/prob/pareto_cdf.hpp
0b11f6b991496f7a322e37cfc9eac0c6 *inst/include/stan/math/prim/prob/pareto_cdf_log.hpp
25ac838d3a35471ef2e3ffea18a096f3 *inst/include/stan/math/prim/prob/pareto_lccdf.hpp
b98a662fd637d35367c803918c5525ef *inst/include/stan/math/prim/prob/pareto_lcdf.hpp
f02acaef4aba2d390e27e29ff280c62d *inst/include/stan/math/prim/prob/pareto_log.hpp
931828ed5baa582645454b5851aa23f6 *inst/include/stan/math/prim/prob/pareto_lpdf.hpp
d741fbde30f028e70449d378aebf6e92 *inst/include/stan/math/prim/prob/pareto_rng.hpp
978b5cdedc3c4b768de572c9f75da340 *inst/include/stan/math/prim/prob/pareto_type_2_ccdf_log.hpp
9cc51f5ba26ab7f1041e29798a926213 *inst/include/stan/math/prim/prob/pareto_type_2_cdf.hpp
9b741e050261844c9fa15ccf0ae345b6 *inst/include/stan/math/prim/prob/pareto_type_2_cdf_log.hpp
929f7266e84e4ff1981d18a5ee3b6ea7 *inst/include/stan/math/prim/prob/pareto_type_2_lccdf.hpp
5130dd95a09019b97c2c87b4a6d71309 *inst/include/stan/math/prim/prob/pareto_type_2_lcdf.hpp
f0aa61aa38846e20ba06dd688e035fa3 *inst/include/stan/math/prim/prob/pareto_type_2_log.hpp
12d07f0659aa6bab9d5a1c0591eaddd2 *inst/include/stan/math/prim/prob/pareto_type_2_lpdf.hpp
72070c912f82e53cbe83f55eb4f6430e *inst/include/stan/math/prim/prob/pareto_type_2_rng.hpp
e0a8b6929dd7a39c4fda717761827f16 *inst/include/stan/math/prim/prob/poisson_binomial_ccdf_log.hpp
cdee0237eff29e8a6188c3c29f6ce43e *inst/include/stan/math/prim/prob/poisson_binomial_cdf.hpp
6fbe026d4ef9f158e684b4e8aa32afa1 *inst/include/stan/math/prim/prob/poisson_binomial_cdf_log.hpp
78ae7922df97a40d602846892f54aaf9 *inst/include/stan/math/prim/prob/poisson_binomial_lccdf.hpp
f4ea92d9cd267213b784f8f2c3299279 *inst/include/stan/math/prim/prob/poisson_binomial_lcdf.hpp
ede1143009e5b6bffebca32987de15f3 *inst/include/stan/math/prim/prob/poisson_binomial_log.hpp
bc7d1da07ddf014ad239901a1ece35cf *inst/include/stan/math/prim/prob/poisson_binomial_lpmf.hpp
8888d284064cf97b0f89e7735ea82646 *inst/include/stan/math/prim/prob/poisson_binomial_rng.hpp
a012fec710bb48bb591f69de8da238fc *inst/include/stan/math/prim/prob/poisson_ccdf_log.hpp
d93a8844d42379e2bc855fd1eb3ef6c8 *inst/include/stan/math/prim/prob/poisson_cdf.hpp
f72da09359ba9f1c653ca1466ef8edd8 *inst/include/stan/math/prim/prob/poisson_cdf_log.hpp
0ad7b3fae4e00e78132ae211f2cbc433 *inst/include/stan/math/prim/prob/poisson_lccdf.hpp
03ee1bfae58c24c09233fabab5e045f7 *inst/include/stan/math/prim/prob/poisson_lcdf.hpp
ee30439184f9383ff7fb5346a95f2d0e *inst/include/stan/math/prim/prob/poisson_log.hpp
7eedce166f7457fae132c4b0effda948 *inst/include/stan/math/prim/prob/poisson_log_glm_log.hpp
f09f6ea9d2b14ccee13774147c3cdcc1 *inst/include/stan/math/prim/prob/poisson_log_glm_lpmf.hpp
1b93799bce69cc80fad00288a41c109e *inst/include/stan/math/prim/prob/poisson_log_log.hpp
3476e7c040b0af0d4d072471771a23e5 *inst/include/stan/math/prim/prob/poisson_log_lpmf.hpp
464db3e2a8161a5cd01a086924c98b5c *inst/include/stan/math/prim/prob/poisson_log_rng.hpp
deaf28dc686428cc902a0245c5871b74 *inst/include/stan/math/prim/prob/poisson_lpmf.hpp
5c5b91def4a8037156b8df53f910bb54 *inst/include/stan/math/prim/prob/poisson_rng.hpp
5b7461a060b26c1ed3696ce2984805a6 *inst/include/stan/math/prim/prob/rayleigh_ccdf_log.hpp
266887a2b6bb60984fcf574e7f5e330a *inst/include/stan/math/prim/prob/rayleigh_cdf.hpp
65c0ac8902e1afbdc09dd883aa4b31eb *inst/include/stan/math/prim/prob/rayleigh_cdf_log.hpp
a8e34a4cdb51b665cc0f99e1de2bde86 *inst/include/stan/math/prim/prob/rayleigh_lccdf.hpp
72a17bc4603f843c0ae5fcd86704b485 *inst/include/stan/math/prim/prob/rayleigh_lcdf.hpp
f4c8bed8a9a2d4ef15a1d3eab2607a97 *inst/include/stan/math/prim/prob/rayleigh_log.hpp
434df6c158b00e702dfff79da1f2dde2 *inst/include/stan/math/prim/prob/rayleigh_lpdf.hpp
c38e81cfd21ae15f55e7d8db7159f86b *inst/include/stan/math/prim/prob/rayleigh_rng.hpp
4d8c485a06523026b4408c727c6844bc *inst/include/stan/math/prim/prob/scaled_inv_chi_square_ccdf_log.hpp
14868cbcb0de0b0627235e807e99e8ee *inst/include/stan/math/prim/prob/scaled_inv_chi_square_cdf.hpp
01b058c020c87f2a265d989e2d9e3e65 *inst/include/stan/math/prim/prob/scaled_inv_chi_square_cdf_log.hpp
7eaea19c5b997cf32563b7951ad0d47f *inst/include/stan/math/prim/prob/scaled_inv_chi_square_lccdf.hpp
88f37f47d7eb6f0ebda0934859d9ba33 *inst/include/stan/math/prim/prob/scaled_inv_chi_square_lcdf.hpp
a6538eb12266d5ac20473a9f729d5162 *inst/include/stan/math/prim/prob/scaled_inv_chi_square_log.hpp
e2e8d17775bf573f11a952c76f5e4376 *inst/include/stan/math/prim/prob/scaled_inv_chi_square_lpdf.hpp
5bd7e650c40292bb24e3f017e84b2718 *inst/include/stan/math/prim/prob/scaled_inv_chi_square_rng.hpp
c0c77bae19cbfd0f0434f8fc76d8256e *inst/include/stan/math/prim/prob/skew_double_exponential_ccdf_log.hpp
00f565396e1fa96cc853608fa6673067 *inst/include/stan/math/prim/prob/skew_double_exponential_cdf.hpp
6865af7c1e511a6ea05f0c7b319fe7b7 *inst/include/stan/math/prim/prob/skew_double_exponential_cdf_log.hpp
7570e972dc3d7fed6bf917f36ffa76d8 *inst/include/stan/math/prim/prob/skew_double_exponential_lccdf.hpp
fad6e307d0b2d40e82fdea63c71006ef *inst/include/stan/math/prim/prob/skew_double_exponential_lcdf.hpp
d77c550ee0b03ebede81b672640eb3cb *inst/include/stan/math/prim/prob/skew_double_exponential_log.hpp
fbfcd3919a8e32e1ce38d5d86a98d4a7 *inst/include/stan/math/prim/prob/skew_double_exponential_lpdf.hpp
33a24a794e430cb4b9ce1c1c55de8191 *inst/include/stan/math/prim/prob/skew_double_exponential_rng.hpp
8d1502f90c15fd4cfb72ebf05b48e481 *inst/include/stan/math/prim/prob/skew_normal_ccdf_log.hpp
0385dd11698943731da6fa994789ce6b *inst/include/stan/math/prim/prob/skew_normal_cdf.hpp
c13e8c6c528ca6993651debcfae391cb *inst/include/stan/math/prim/prob/skew_normal_cdf_log.hpp
3856bf10772dfda219bd9d44dc529c41 *inst/include/stan/math/prim/prob/skew_normal_lccdf.hpp
0e4478f3789cf2d3369a58e50917b157 *inst/include/stan/math/prim/prob/skew_normal_lcdf.hpp
2f266d96f1157da56241caf716c99c18 *inst/include/stan/math/prim/prob/skew_normal_log.hpp
2871114cc83adefc47c54113b5a1a45e *inst/include/stan/math/prim/prob/skew_normal_lpdf.hpp
4f1f434fcf284f81c3d74c6537fddfc4 *inst/include/stan/math/prim/prob/skew_normal_rng.hpp
1db48aa6b47c6088bf28dd6ac4d74053 *inst/include/stan/math/prim/prob/std_normal_ccdf_log.hpp
c835813d5768d408d523e452bf01f6f8 *inst/include/stan/math/prim/prob/std_normal_cdf.hpp
fbcc64e3f23acf4f90d8697872eba3be *inst/include/stan/math/prim/prob/std_normal_cdf_log.hpp
3567ab270956fd97ae4ef139a22a99d9 *inst/include/stan/math/prim/prob/std_normal_lccdf.hpp
bedcd78e8bb9be8d1b4212a08a73d145 *inst/include/stan/math/prim/prob/std_normal_lcdf.hpp
e28d70fc24799aa5defecbed5d4c82ab *inst/include/stan/math/prim/prob/std_normal_log.hpp
85ef321900eee0de3837f5eae46dfed9 *inst/include/stan/math/prim/prob/std_normal_log_qf.hpp
1a71974163a07db9a1fcdb4c59fa2d4e *inst/include/stan/math/prim/prob/std_normal_lpdf.hpp
3cbe608835de8100a6c390b7b703bbf6 *inst/include/stan/math/prim/prob/std_normal_rng.hpp
5c16bbde6dba16a657b850ba1764a658 *inst/include/stan/math/prim/prob/student_t_ccdf_log.hpp
3e522d1b4e175b9713c3a1406147c145 *inst/include/stan/math/prim/prob/student_t_cdf.hpp
94d99dcbdc43b28f25dc93a4e126ee53 *inst/include/stan/math/prim/prob/student_t_cdf_log.hpp
72ac553ea6421122a7912e5df4ccd64e *inst/include/stan/math/prim/prob/student_t_lccdf.hpp
5c8c1a7b736690ab38400dae4ba784b7 *inst/include/stan/math/prim/prob/student_t_lcdf.hpp
4ae88fb2f6e9ca26259c49bd879f3a2a *inst/include/stan/math/prim/prob/student_t_log.hpp
99963922b9e98911c9dfe75f565248f2 *inst/include/stan/math/prim/prob/student_t_lpdf.hpp
1b703f68dfd23833acfc1880be6374f7 *inst/include/stan/math/prim/prob/student_t_rng.hpp
8ea1d5f6bd65bd3ed46a94e40ab6f574 *inst/include/stan/math/prim/prob/uniform_ccdf_log.hpp
7be00b80aa815fc3a31e45b5a5a23bd2 *inst/include/stan/math/prim/prob/uniform_cdf.hpp
4302a03eb4b77a10f0cf238f5cc33135 *inst/include/stan/math/prim/prob/uniform_cdf_log.hpp
d6b19a97f762ed977388f601e4dc1ed7 *inst/include/stan/math/prim/prob/uniform_lccdf.hpp
9581836db5e5c17e85b54e17b28d6d46 *inst/include/stan/math/prim/prob/uniform_lcdf.hpp
865abb5930e8a566b1c86f345bf39296 *inst/include/stan/math/prim/prob/uniform_log.hpp
25d38b6c4db6c0fe6b357a0ec0552b5d *inst/include/stan/math/prim/prob/uniform_lpdf.hpp
06aef810d9806b32cbf365f407ef81d9 *inst/include/stan/math/prim/prob/uniform_rng.hpp
039c061bc36d9b7d3d0a8d2cbbb14b26 *inst/include/stan/math/prim/prob/von_mises_ccdf_log.hpp
51f51a9bab353240e6c6de00cfb1f159 *inst/include/stan/math/prim/prob/von_mises_cdf.hpp
7e274d3ca799be6279fa0cc0940419cf *inst/include/stan/math/prim/prob/von_mises_cdf_log.hpp
efde963311c3a6a3b60abb5bc7c6a08e *inst/include/stan/math/prim/prob/von_mises_lccdf.hpp
b9f71f045cb8b09d30897ccb7e27789b *inst/include/stan/math/prim/prob/von_mises_lcdf.hpp
cb1e41db26a5c666a9033d50ad7e04cf *inst/include/stan/math/prim/prob/von_mises_log.hpp
3e43a481e27ac525072cd7440702dd5d *inst/include/stan/math/prim/prob/von_mises_lpdf.hpp
2235f534f585cd154867efffbfe5a66a *inst/include/stan/math/prim/prob/von_mises_rng.hpp
113729f06fb2f83db0e8ba9afeb64c74 *inst/include/stan/math/prim/prob/weibull_ccdf_log.hpp
39eb77337b53847be15ab787d19272c0 *inst/include/stan/math/prim/prob/weibull_cdf.hpp
4ca7f2086d3ac4f94e3c5dcff8fe223e *inst/include/stan/math/prim/prob/weibull_cdf_log.hpp
406467fe377f41af97fe5f01a60aa9ee *inst/include/stan/math/prim/prob/weibull_lccdf.hpp
e29e91683f5151a0b1394c498c681727 *inst/include/stan/math/prim/prob/weibull_lcdf.hpp
eecc43c65f3178477d14c1e12803fa1d *inst/include/stan/math/prim/prob/weibull_log.hpp
629202c55747bd1e270121ac000f650f *inst/include/stan/math/prim/prob/weibull_lpdf.hpp
31e303cf6f2db44edaeccd8edb8cff07 *inst/include/stan/math/prim/prob/weibull_rng.hpp
5904b55b9381dce4cb13b6b823a04ac9 *inst/include/stan/math/prim/prob/wiener_log.hpp
e3cff4c1bca774a08468678fa8e6dc77 *inst/include/stan/math/prim/prob/wiener_lpdf.hpp
0eeda4057e3e01e68efbe4778ae89004 *inst/include/stan/math/prim/prob/wishart_cholesky_lpdf.hpp
1cc8114b83e391d1fd9cde0b73d3e636 *inst/include/stan/math/prim/prob/wishart_cholesky_rng.hpp
5766443c7998d8e994bbb379fb9f6a3e *inst/include/stan/math/prim/prob/wishart_log.hpp
271c5e32be29bfc3a6bc4922fe435cde *inst/include/stan/math/prim/prob/wishart_lpdf.hpp
56ca50d8ec9bf2945bf88a175247243f *inst/include/stan/math/prim/prob/wishart_rng.hpp
a7468f68d0f46bca38c8eb97681fd766 *inst/include/stan/math/rev.hpp
7b9723fc822a1fa567e81e015e9319d4 *inst/include/stan/math/rev/core.hpp
bb711c1dde0e3a09639e7573f4a94148 *inst/include/stan/math/rev/core/Eigen_NumTraits.hpp
1f70a6f3552b47e485066b4ded449ea6 *inst/include/stan/math/rev/core/accumulate_adjoints.hpp
89489d3b6596201974b52cf855c4ce8e *inst/include/stan/math/rev/core/arena_allocator.hpp
3c2d27c112b288b2ded35ef9c3a33bed *inst/include/stan/math/rev/core/arena_matrix.hpp
3329424b843894b26b35ebbeaad755ae *inst/include/stan/math/rev/core/autodiffstackstorage.hpp
a71aa89905c31b8852c412ea43aa3821 *inst/include/stan/math/rev/core/build_vari_array.hpp
43e393c782a01601cdd431f17ecc1720 *inst/include/stan/math/rev/core/callback_vari.hpp
dccd634c297207015f1ae03a7a69d41a *inst/include/stan/math/rev/core/chainable_alloc.hpp
881985b39a215ab9a00ed15e7e9cda37 *inst/include/stan/math/rev/core/chainable_object.hpp
1d936db1dc08057c3041a370cf4df554 *inst/include/stan/math/rev/core/chainablestack.hpp
05c41ff4f3c8891f9ea990f0c5061d74 *inst/include/stan/math/rev/core/count_vars.hpp
68c34e05d440e630e43045a5c125ed0c *inst/include/stan/math/rev/core/ddv_vari.hpp
1b0989ef5b3eef123f0be622b4c633df *inst/include/stan/math/rev/core/deep_copy_vars.hpp
3df4d777906189f2ad4f1ec7e9347729 *inst/include/stan/math/rev/core/dv_vari.hpp
8d9c07187131a47ebe1422233261635a *inst/include/stan/math/rev/core/dvd_vari.hpp
ffb77b76a04a6ee823aba36aa7333a26 *inst/include/stan/math/rev/core/dvv_vari.hpp
8eb13a19e7571d8f7d4659f8d7376101 *inst/include/stan/math/rev/core/empty_nested.hpp
f2df3d5e841da0d1727c4fee020dcfb6 *inst/include/stan/math/rev/core/gevv_vvv_vari.hpp
1c9e36b6a1b2510eda3148dffaae7e11 *inst/include/stan/math/rev/core/grad.hpp
3cdc6ece97bbe8640d922f0b9226c2f8 *inst/include/stan/math/rev/core/init_chainablestack.hpp
2f0b2a02f9b761b03c5e83f08f550116 *inst/include/stan/math/rev/core/matrix_vari.hpp
27cb84dc83dbc9d5887ae4897122de24 *inst/include/stan/math/rev/core/nested_rev_autodiff.hpp
f2aaf934d7593d23d4dd78df2c748b72 *inst/include/stan/math/rev/core/nested_size.hpp
544bc839f06c8edd36a24905749465bf *inst/include/stan/math/rev/core/operator_addition.hpp
db1a79a19f8b5a510fa730fe7ddbc769 *inst/include/stan/math/rev/core/operator_divide_equal.hpp
968bb0a180e9d8409facb4d710755016 *inst/include/stan/math/rev/core/operator_division.hpp
65012b6a06f69fa03e3a0570a2198fe2 *inst/include/stan/math/rev/core/operator_equal.hpp
71c3a5ed5ffa205b0134a6f0dd063459 *inst/include/stan/math/rev/core/operator_greater_than.hpp
1ae1e152d5d9315b50c289fea44b1f5a *inst/include/stan/math/rev/core/operator_greater_than_or_equal.hpp
c516a67121a5f15679afd677f254a3fc *inst/include/stan/math/rev/core/operator_less_than.hpp
76a0d7c302351dfd9dd33c351a9a18d5 *inst/include/stan/math/rev/core/operator_less_than_or_equal.hpp
c7eae64249fc271818816e91a05f62ea *inst/include/stan/math/rev/core/operator_logical_and.hpp
e3306a8f17d2d4230866262a15061dd2 *inst/include/stan/math/rev/core/operator_logical_or.hpp
becc3bf8d770320c56a0eb8c3c701e9b *inst/include/stan/math/rev/core/operator_minus_equal.hpp
08f58548414c93a34582c29630b145c3 *inst/include/stan/math/rev/core/operator_multiplication.hpp
6cd03e4e5f4804f8db4231250be89e2e *inst/include/stan/math/rev/core/operator_multiply_equal.hpp
3609c8ff318a651944a0f7dd236bd63f *inst/include/stan/math/rev/core/operator_not_equal.hpp
cdc232aa1e63f294cd96cb6a3d4e60c7 *inst/include/stan/math/rev/core/operator_plus_equal.hpp
f25daa8adbb95eb0efc61f69b35758ef *inst/include/stan/math/rev/core/operator_subtraction.hpp
13d0a0fa49763535195e3d4e3cc4ccdd *inst/include/stan/math/rev/core/operator_unary_decrement.hpp
e91a2509b73241acaa5873852a78d25a *inst/include/stan/math/rev/core/operator_unary_increment.hpp
7f84a03d193967557eccb40217273cd4 *inst/include/stan/math/rev/core/operator_unary_negative.hpp
12faeb19dbf326d500c55c68a7b19c50 *inst/include/stan/math/rev/core/operator_unary_not.hpp
20b943f3c5a9e7866e84a8a7cf70abf6 *inst/include/stan/math/rev/core/operator_unary_plus.hpp
e221b7bd6c975aed3dbdf344165d0d42 *inst/include/stan/math/rev/core/precomp_vv_vari.hpp
7baa2dbed5a45f6edb76450f3e7f536b *inst/include/stan/math/rev/core/precomp_vvv_vari.hpp
6fb8bad5d10f9b4d3a7c3ba9ac1752bd *inst/include/stan/math/rev/core/precomputed_gradients.hpp
1a4b4bb10cccb90fa56b63c915a3077d *inst/include/stan/math/rev/core/print_stack.hpp
25e0dd880b522b2e4f17ba3bc7409db1 *inst/include/stan/math/rev/core/profiling.hpp
e127149126f107eba2a0295be0e873a4 *inst/include/stan/math/rev/core/read_var.hpp
4626bb8eec847fb6d734fed31357f9d1 *inst/include/stan/math/rev/core/recover_memory.hpp
7bcd016274cf690aaecde2f077ac0fa3 *inst/include/stan/math/rev/core/recover_memory_nested.hpp
0d2c7716212cf70e4ae38f386e8ee42d *inst/include/stan/math/rev/core/reverse_pass_callback.hpp
56f6cafb3d0b9657f64f221409d570ac *inst/include/stan/math/rev/core/save_varis.hpp
d36f37dab420780f2bfa3d9a75e88813 *inst/include/stan/math/rev/core/scoped_chainablestack.hpp
c5241609e66eaf057f2d33aa23638dea *inst/include/stan/math/rev/core/set_zero_all_adjoints.hpp
b8ce2320b0e695493f3caf0b04bdc5c9 *inst/include/stan/math/rev/core/set_zero_all_adjoints_nested.hpp
2cbe59607872d4a0032d1127b8b7e2d9 *inst/include/stan/math/rev/core/start_nested.hpp
f6abe65f1b0626ec7e88af831e1cab97 *inst/include/stan/math/rev/core/std_complex.hpp
16f7b9a6dfc2086b2417d174c1af1ae5 *inst/include/stan/math/rev/core/std_isinf.hpp
08fa39cd9c37355b80678b38fb11816b *inst/include/stan/math/rev/core/std_isnan.hpp
510bd81b17a0bbdca239f3cc5040917f *inst/include/stan/math/rev/core/std_iterator_traits.hpp
901047dddc1973764270f998e31260d5 *inst/include/stan/math/rev/core/std_numeric_limits.hpp
4958f53f6968b3472843d84eed259275 *inst/include/stan/math/rev/core/stored_gradient_vari.hpp
9fa7b0bbe2b1692b46a634b6a195746b *inst/include/stan/math/rev/core/typedefs.hpp
1d290398e626d6a85a7353bb2c002f14 *inst/include/stan/math/rev/core/v_vari.hpp
60105a931d773ad57fcc3c1902e5d356 *inst/include/stan/math/rev/core/var.hpp
bbef7f1d0a2bc43c7135843a39ab5f67 *inst/include/stan/math/rev/core/var_value_fwd_declare.hpp
fd1897da55b187482895be3aaa1f1cc0 *inst/include/stan/math/rev/core/vari.hpp
18dca63624a6b14b617a04d3e960f37e *inst/include/stan/math/rev/core/vd_vari.hpp
708b16c7821b39690fce30b23c0394e7 *inst/include/stan/math/rev/core/vdd_vari.hpp
04e01ccd5afbfa50ad609d7054caddbc *inst/include/stan/math/rev/core/vdv_vari.hpp
2054c78a253073ca5962b40348d9dd8d *inst/include/stan/math/rev/core/vector_vari.hpp
47f1a76471d0fa7784b92224fb0ca987 *inst/include/stan/math/rev/core/vv_vari.hpp
952a30d361a54309ea957986771ec38f *inst/include/stan/math/rev/core/vvd_vari.hpp
17f0e806bbbb7d1c5c45ed4d2758de50 *inst/include/stan/math/rev/core/vvv_vari.hpp
f9f642c444690cbe637a9f05b3f58b63 *inst/include/stan/math/rev/core/zero_adjoints.hpp
683231054fb3c33ea5418c5f6e536a0f *inst/include/stan/math/rev/fun.hpp
699c97d24b1ada9d49f68275ff7ea6be *inst/include/stan/math/rev/fun/LDLT_factor.hpp
89f4200d4657cae34f7d7fb05dc84f13 *inst/include/stan/math/rev/fun/Phi.hpp
88fca7514067dc6d56441985d069cb44 *inst/include/stan/math/rev/fun/Phi_approx.hpp
16cb33ecde217dfac1fa39a2d75dec8a *inst/include/stan/math/rev/fun/abs.hpp
d5c71a069b9ba2549a8f082490beae9c *inst/include/stan/math/rev/fun/accumulator.hpp
ea9b50527aca4521c1cb9f67df39bf8c *inst/include/stan/math/rev/fun/acos.hpp
d6b8a5a64cc9bb028459c222d28edd2b *inst/include/stan/math/rev/fun/acosh.hpp
1f4c113a7f211f14ba046830345e2d24 *inst/include/stan/math/rev/fun/adjoint_of.hpp
efce87abe6f85c7ef72639639280b545 *inst/include/stan/math/rev/fun/append_col.hpp
fa253b366a89e7342e4a664a9eeadf8a *inst/include/stan/math/rev/fun/append_row.hpp
66437b7b01ba754453fc69cd6d1f65ca *inst/include/stan/math/rev/fun/arg.hpp
53c6f3723c80cda923cc7fdfe22e2094 *inst/include/stan/math/rev/fun/as_array_or_scalar.hpp
4695b206d27a98822007079f77d175e3 *inst/include/stan/math/rev/fun/as_bool.hpp
174a37fb005fe572b5fffbacc24122cb *inst/include/stan/math/rev/fun/as_column_vector_or_scalar.hpp
c85c674904b493ef4adeecb2002780b0 *inst/include/stan/math/rev/fun/asin.hpp
b6581ee7309310cecc5c9182c0b542aa *inst/include/stan/math/rev/fun/asinh.hpp
9dda8ffa6db1e449eb77bb4a2e8d93bd *inst/include/stan/math/rev/fun/atan.hpp
851af129b940796f474a4d35bc541acc *inst/include/stan/math/rev/fun/atan2.hpp
a6a67c4b92dcc2e64c2f3583d0d4408f *inst/include/stan/math/rev/fun/atanh.hpp
18c1adb0e764bfa19c31a54f97ce7231 *inst/include/stan/math/rev/fun/bessel_first_kind.hpp
6caca59334081167c2ffaeb88a94138e *inst/include/stan/math/rev/fun/bessel_second_kind.hpp
ef3a7f2b035eb652465c4dff32f2d245 *inst/include/stan/math/rev/fun/beta.hpp
37e18b7cdbabf38b2dfbf50189addda7 *inst/include/stan/math/rev/fun/binary_log_loss.hpp
cdbcfc80f96cd3aadc1958de34225a81 *inst/include/stan/math/rev/fun/cbrt.hpp
a937f45f05ff9b3a70e1b52d3b54ca74 *inst/include/stan/math/rev/fun/ceil.hpp
96e7376dcdb0748628fabb9dae0106a5 *inst/include/stan/math/rev/fun/cholesky_corr_constrain.hpp
71aba6635ba7dbac1579070e8b2cc353 *inst/include/stan/math/rev/fun/cholesky_decompose.hpp
352479776481999ee4948474e4e63722 *inst/include/stan/math/rev/fun/cholesky_factor_constrain.hpp
b7fb72d787ad3409027463efd7ba5cde *inst/include/stan/math/rev/fun/columns_dot_product.hpp
f6713f66ffcf08b545888c674bcbc81a *inst/include/stan/math/rev/fun/columns_dot_self.hpp
825945e6c70a0b167434e5f8541f7f6b *inst/include/stan/math/rev/fun/conj.hpp
505e7b51d22685e4b76c9708f5611795 *inst/include/stan/math/rev/fun/corr_matrix_constrain.hpp
268bf24e7bcb11cc32eb2011b31d9f5e *inst/include/stan/math/rev/fun/cos.hpp
f39ba01a1734b8d4756c97f0bb3d34db *inst/include/stan/math/rev/fun/cosh.hpp
8ddec09199202c1a0a23572c161be89f *inst/include/stan/math/rev/fun/cov_exp_quad.hpp
a035029c862bc7ada9ab3c8cf6498930 *inst/include/stan/math/rev/fun/cov_matrix_constrain.hpp
4cc42af7f61227914b4ce576309e0eb3 *inst/include/stan/math/rev/fun/cov_matrix_constrain_lkj.hpp
4d442c798c6270dbb037c6c6448fb1cb *inst/include/stan/math/rev/fun/csr_matrix_times_vector.hpp
88db686ab5672dabc6ab12228088a70e *inst/include/stan/math/rev/fun/cumulative_sum.hpp
5fc2bffe35c0d5fa0102662165b19220 *inst/include/stan/math/rev/fun/determinant.hpp
20bb4f91aeb7b16ad298377d7f4ececc *inst/include/stan/math/rev/fun/diag_post_multiply.hpp
bdda36858eb7640097a8557391ab08d4 *inst/include/stan/math/rev/fun/diag_pre_multiply.hpp
7a334ad2e07d77536208fc358c088def *inst/include/stan/math/rev/fun/digamma.hpp
0f365bc7f6396beb1d1ee24d1fcb1a18 *inst/include/stan/math/rev/fun/dims.hpp
a9926d50b183cdf2f20c8e9ad1cfd3b9 *inst/include/stan/math/rev/fun/divide.hpp
78233ae0958076f45b4de6b1ff23622a *inst/include/stan/math/rev/fun/dot_product.hpp
16991d959831938c20cc253c6d8ca331 *inst/include/stan/math/rev/fun/dot_self.hpp
efe1782fa6340608a8ed2e32cbf6cb82 *inst/include/stan/math/rev/fun/eigendecompose_sym.hpp
057deafbc5d0cf39e3ea24467ed598a6 *inst/include/stan/math/rev/fun/eigenvalues_sym.hpp
d9df889b3aac0edffc76d727f58092bc *inst/include/stan/math/rev/fun/eigenvectors_sym.hpp
b8dd1123ed818c3fd3cd78553df5140b *inst/include/stan/math/rev/fun/elt_divide.hpp
34f2f38486d1b9c3c0a975736880d9fe *inst/include/stan/math/rev/fun/elt_multiply.hpp
bf0c06ff603df31b79d2885cd1a688e0 *inst/include/stan/math/rev/fun/erf.hpp
4a1ef9243e51fe74603e45c4accd645a *inst/include/stan/math/rev/fun/erfc.hpp
b083437e74ec2f7e79bd1b18b527280f *inst/include/stan/math/rev/fun/exp.hpp
197dd0fdd7835ee83ae8b9d1d702c49f *inst/include/stan/math/rev/fun/exp2.hpp
bb3e6e5b5eabae6295ef966bbc0bb05f *inst/include/stan/math/rev/fun/expm1.hpp
e2197eb44b3811c45ca18080322d1fbe *inst/include/stan/math/rev/fun/fabs.hpp
8b8bbc3eb5214af68446957d8f37f071 *inst/include/stan/math/rev/fun/falling_factorial.hpp
5ef70883e287c36c7a125317e425c1d8 *inst/include/stan/math/rev/fun/fdim.hpp
99586f44cd129cf7c612835c0ad9e2d6 *inst/include/stan/math/rev/fun/fft.hpp
c06b36cc1096ea2f0bfb322162888e6b *inst/include/stan/math/rev/fun/fill.hpp
4be7b3aaaa76763232d8b368d29d2b13 *inst/include/stan/math/rev/fun/floor.hpp
f4f0420d55fdcf251d6b8ff79a9aa628 *inst/include/stan/math/rev/fun/fma.hpp
2eef237e5611ef8d1e0304911e96054e *inst/include/stan/math/rev/fun/fmax.hpp
d394fab3b0246be0765bc4eb934c0638 *inst/include/stan/math/rev/fun/fmin.hpp
612f3d5138e7b39be79582d7e3799616 *inst/include/stan/math/rev/fun/fmod.hpp
dfedbfdc8571d39c5edc655e8c81bf47 *inst/include/stan/math/rev/fun/from_var_value.hpp
9b69c520270deb542fb85abafb73cac6 *inst/include/stan/math/rev/fun/gamma_p.hpp
70b26e92a618abfc7f5e12499e9fc50d *inst/include/stan/math/rev/fun/gamma_q.hpp
d2a2ccd6fd73513cf1e84f7864b657e3 *inst/include/stan/math/rev/fun/generalized_inverse.hpp
0f88518314b2d7f4d1fa24d46bb0f1c3 *inst/include/stan/math/rev/fun/gp_exp_quad_cov.hpp
bab4fe87069fb8f18c9381b9b41639b9 *inst/include/stan/math/rev/fun/gp_periodic_cov.hpp
78de3f0c0c31a0d0760274eae36df991 *inst/include/stan/math/rev/fun/grad.hpp
7303389c6d12ec3f3fbe8f91653eccf6 *inst/include/stan/math/rev/fun/grad_inc_beta.hpp
462171a5c30ecf9e25942c2c82d08407 *inst/include/stan/math/rev/fun/hypergeometric_2F1.hpp
bb9c592d10f4072015357f836a46e964 *inst/include/stan/math/rev/fun/hypergeometric_pFq.hpp
29681c70b79f1c744ddb576e544191cc *inst/include/stan/math/rev/fun/hypot.hpp
ae9a9e724f8c56d410fd84dd57eeb581 *inst/include/stan/math/rev/fun/identity_constrain.hpp
6ec8907024d3e403e3ca20cb86e74e17 *inst/include/stan/math/rev/fun/identity_free.hpp
d7bf17c204682dc6a5c0827abfdd8e3a *inst/include/stan/math/rev/fun/if_else.hpp
ad0c5d6c13316981df2695f5a0610573 *inst/include/stan/math/rev/fun/inc_beta.hpp
2f3111e276f7be97f96d1f1503d68902 *inst/include/stan/math/rev/fun/initialize_fill.hpp
b1989ae803ece28fa81080ce7f29dc2a *inst/include/stan/math/rev/fun/initialize_variable.hpp
fb5a740b15eaf6f6b3f3f6938cfa684c *inst/include/stan/math/rev/fun/inv.hpp
40669935b185f2a5724d16eb8d5b7999 *inst/include/stan/math/rev/fun/inv_Phi.hpp
caf48b7deb1bee4ea19b25118ebb11d3 *inst/include/stan/math/rev/fun/inv_cloglog.hpp
0ff993cd54913bef9124dba93cc4dd66 *inst/include/stan/math/rev/fun/inv_erfc.hpp
f4196b6693a3f62ae07c6c456cde8ef3 *inst/include/stan/math/rev/fun/inv_inc_beta.hpp
f3e364f3eded77d6177fa3b61bb7a83c *inst/include/stan/math/rev/fun/inv_logit.hpp
6735e83591f8977d0c42c1a7dc659995 *inst/include/stan/math/rev/fun/inv_sqrt.hpp
6c79fe3257b0df1b5c76b4b3ce2a05e2 *inst/include/stan/math/rev/fun/inv_square.hpp
13f9170a2bacdabf1bed02ae7103119b *inst/include/stan/math/rev/fun/inverse.hpp
880f383f4be0bbfa51296baf03c1b096 *inst/include/stan/math/rev/fun/is_inf.hpp
849545217e2b17b781370d98c2db1524 *inst/include/stan/math/rev/fun/is_nan.hpp
76cd966b9571f87b2a7ad8b5546353bf *inst/include/stan/math/rev/fun/is_uninitialized.hpp
d311dbf1a55060865b3620e5858614ce *inst/include/stan/math/rev/fun/lambert_w.hpp
6e949c6e187e30f937a26923cbfe2b5f *inst/include/stan/math/rev/fun/lb_constrain.hpp
5612328c793d75e539f7ae403b63d19f *inst/include/stan/math/rev/fun/lbeta.hpp
48324ca2eed6b775f6d426c706efae60 *inst/include/stan/math/rev/fun/ldexp.hpp
fe11f74909c48f4ef9b0c25219122ccb *inst/include/stan/math/rev/fun/lgamma.hpp
45a46ac9ea0a6073a104c57ae1c9dc7b *inst/include/stan/math/rev/fun/lmgamma.hpp
f91db9d498f0bdb9d2f2f758e5a55470 *inst/include/stan/math/rev/fun/lmultiply.hpp
646e7b6c376755a0cdba96e9ef2cd3db *inst/include/stan/math/rev/fun/log.hpp
286120699f798319d0c7ce11361d0518 *inst/include/stan/math/rev/fun/log10.hpp
23d603064a698bc607247b8f84861e4d *inst/include/stan/math/rev/fun/log1m.hpp
8a7a964a85a384a2ec54525e6b6ba6c3 *inst/include/stan/math/rev/fun/log1m_exp.hpp
a3ddd3aac4b56f6fe0fa0b57533fcc1e *inst/include/stan/math/rev/fun/log1m_inv_logit.hpp
a3903707eff32e2a5730910550aa0f2a *inst/include/stan/math/rev/fun/log1p.hpp
13a5256caeb800aa05d2c18e351b7cdf *inst/include/stan/math/rev/fun/log1p_exp.hpp
6980e476927460decc69fcea282b5cda *inst/include/stan/math/rev/fun/log2.hpp
9324baafa8cce1ee203489f056167e0b *inst/include/stan/math/rev/fun/log_determinant.hpp
c8a0a06efab2101290cdd37af81bd02c *inst/include/stan/math/rev/fun/log_determinant_ldlt.hpp
50605da6a8f02ea64a2cb7199c8263a9 *inst/include/stan/math/rev/fun/log_determinant_spd.hpp
4d75ace56afb9d4143466b3e4b3ab17d *inst/include/stan/math/rev/fun/log_diff_exp.hpp
570cb1f7e4b80e903405faab6c86fbae *inst/include/stan/math/rev/fun/log_falling_factorial.hpp
c7924500125cf0c968aadce6ad94676d *inst/include/stan/math/rev/fun/log_inv_logit.hpp
218266e42287fdd5d947e1d35b30f27b *inst/include/stan/math/rev/fun/log_inv_logit_diff.hpp
bf9ea4085d766fa83c5f194d6b3968af *inst/include/stan/math/rev/fun/log_mix.hpp
5b6b42b96ce0343901c0b8143d74ce66 *inst/include/stan/math/rev/fun/log_rising_factorial.hpp
810bec2b8ccd22c41c19b97038790af8 *inst/include/stan/math/rev/fun/log_softmax.hpp
2f1ff40703041eb000697a69256e0fd3 *inst/include/stan/math/rev/fun/log_sum_exp.hpp
dd18c224ae522d3e005be37f7ef5fdee *inst/include/stan/math/rev/fun/logit.hpp
f7157b13cffaea300a4d330947d6cea3 *inst/include/stan/math/rev/fun/lub_constrain.hpp
2531af3cd020c80660b7c82e39e102e9 *inst/include/stan/math/rev/fun/matrix_exp_multiply.hpp
1c4591621e1ba3e8301fe7179ce92d6c *inst/include/stan/math/rev/fun/matrix_power.hpp
e733b0cda9384f6fdd6600cfc282bd54 *inst/include/stan/math/rev/fun/mdivide_left.hpp
5cd99e8e816eba199421f80a2a1ad5f0 *inst/include/stan/math/rev/fun/mdivide_left_ldlt.hpp
502bb75672b237b5564d9ffd828935b0 *inst/include/stan/math/rev/fun/mdivide_left_spd.hpp
f4f3afbe82e7fd384d718910c1d0723a *inst/include/stan/math/rev/fun/mdivide_left_tri.hpp
b8f55e604ef8418cb72fbb3a4cddeba0 *inst/include/stan/math/rev/fun/modified_bessel_first_kind.hpp
aff88b0ca238f247302fb0237465c4a1 *inst/include/stan/math/rev/fun/modified_bessel_second_kind.hpp
caaa03691103227223616c7de119b4da *inst/include/stan/math/rev/fun/multiply.hpp
3d1d14bda9107142370d96b1c46fdcad *inst/include/stan/math/rev/fun/multiply_log.hpp
719ad2f4d08b1c0d3e82632e7e31f4a1 *inst/include/stan/math/rev/fun/multiply_lower_tri_self_transpose.hpp
95d8026475a958b7c3aea8dc30a67990 *inst/include/stan/math/rev/fun/norm.hpp
5c2e2a2e1f9877ac3334d4c447516437 *inst/include/stan/math/rev/fun/norm1.hpp
b86dbdb3ad707efdf6911b09f6d5216a *inst/include/stan/math/rev/fun/norm2.hpp
ecfeaaa39c3eb8efd4b32f2a594a041e *inst/include/stan/math/rev/fun/ordered_constrain.hpp
e44a60626c65c27ba81c609696364d5e *inst/include/stan/math/rev/fun/owens_t.hpp
c2e71ab55d2ed66559cb5ccb8cca7d12 *inst/include/stan/math/rev/fun/polar.hpp
95582823285d2d1fb3141ce7ffc10974 *inst/include/stan/math/rev/fun/positive_ordered_constrain.hpp
9a3386d7cae7b7cc0b62f5763d1ac8ef *inst/include/stan/math/rev/fun/pow.hpp
fa7e032c8ad173c0be94c284f780e199 *inst/include/stan/math/rev/fun/primitive_value.hpp
5285281e40ef664caca74610c9e845c4 *inst/include/stan/math/rev/fun/proj.hpp
2be9205b5666d910683d652b8bbe7c07 *inst/include/stan/math/rev/fun/quad_form.hpp
6958f353ef4877680ee47ae62a6e0ed5 *inst/include/stan/math/rev/fun/quad_form_sym.hpp
7d8c5ea3bf41dcdcb3187b4c2897c283 *inst/include/stan/math/rev/fun/read_corr_L.hpp
29b6e1f7bfdff61370b7b4fe755fe0f9 *inst/include/stan/math/rev/fun/read_corr_matrix.hpp
8e44128f5f57fc681696002b1f17a42d *inst/include/stan/math/rev/fun/read_cov_L.hpp
eaa239eec51999945c84cb608427b245 *inst/include/stan/math/rev/fun/read_cov_matrix.hpp
fffe51c2da0b7f36018a921169928a23 *inst/include/stan/math/rev/fun/rep_matrix.hpp
3757463c54386ad20608cdb8ed14f901 *inst/include/stan/math/rev/fun/rep_row_vector.hpp
63344bb97631665a1e4e2a26cbc6351f *inst/include/stan/math/rev/fun/rep_vector.hpp
6d017a44c8bda928804abb7432b7ecb7 *inst/include/stan/math/rev/fun/rising_factorial.hpp
d7010e4d20b38961c7c1b404f226d7d0 *inst/include/stan/math/rev/fun/round.hpp
af83d229d32f6864d5326004cdbaf578 *inst/include/stan/math/rev/fun/rows_dot_product.hpp
4da740a566015cd4ecb4f0869dd5b97e *inst/include/stan/math/rev/fun/rows_dot_self.hpp
800a2cdf13655cb49c5de0772524df56 *inst/include/stan/math/rev/fun/sd.hpp
b286e0bfdaa8e1a2640d875f7a47519a *inst/include/stan/math/rev/fun/simplex_constrain.hpp
ef613aaaec052c71100359f99562a2be *inst/include/stan/math/rev/fun/sin.hpp
e6c451034cbf932b7f6cddf668fba109 *inst/include/stan/math/rev/fun/singular_values.hpp
b3f8ed51cafd3012bcb7d9060e015aa7 *inst/include/stan/math/rev/fun/sinh.hpp
8b766abee535a6459cedb711129629e1 *inst/include/stan/math/rev/fun/softmax.hpp
b39bfba7eaf9a6122d7714433bf8b8e7 *inst/include/stan/math/rev/fun/sqrt.hpp
5f35a0cc54e84278040df24da615f0af *inst/include/stan/math/rev/fun/square.hpp
29ea2bc15d7eda90ec318c9c05283728 *inst/include/stan/math/rev/fun/squared_distance.hpp
39aea13f5ab69f156bf6f69224e9acce *inst/include/stan/math/rev/fun/stan_print.hpp
97d3dc84b60f509d467c48c0c5bab33e *inst/include/stan/math/rev/fun/step.hpp
7d31ffbdd9771cd446f85625d7738438 *inst/include/stan/math/rev/fun/sum.hpp
11355d4b30968e180845ba95c629e59c *inst/include/stan/math/rev/fun/svd.hpp
8d928db81d6a86f460dd5d34428a1098 *inst/include/stan/math/rev/fun/svd_U.hpp
b458ca9f52204b9ec6b218cd98b6590a *inst/include/stan/math/rev/fun/svd_V.hpp
8eb70e4959314fef8abcc961e6e9c43f *inst/include/stan/math/rev/fun/tan.hpp
5ae1f282abd93e8c54887aa48ff274af *inst/include/stan/math/rev/fun/tanh.hpp
9961182ef7e3062a6081db1ed7afd4c7 *inst/include/stan/math/rev/fun/tcrossprod.hpp
979f5ca3f948a479b6f4f66e521211a0 *inst/include/stan/math/rev/fun/tgamma.hpp
7b88e6c8bbaa4eb3ba08d9bd475bfd0e *inst/include/stan/math/rev/fun/to_arena.hpp
e7b031d48e0442e48880a0b4b6fbc8b9 *inst/include/stan/math/rev/fun/to_soa_sparse_matrix.hpp
f2e4f075d344d60204232a5b171685d5 *inst/include/stan/math/rev/fun/to_var.hpp
5564d6d405b94dd86ec1e22c523ba6b0 *inst/include/stan/math/rev/fun/to_var_value.hpp
a0e04f48a523c78cb70945f6d2e92659 *inst/include/stan/math/rev/fun/to_vector.hpp
c8234a34ec8a767bfd0eeb720f2d57db *inst/include/stan/math/rev/fun/trace.hpp
adace39242226e684f326a2b15e4477d *inst/include/stan/math/rev/fun/trace_gen_inv_quad_form_ldlt.hpp
93baa8a3dee58f0515810c6202131163 *inst/include/stan/math/rev/fun/trace_gen_quad_form.hpp
053c9e7aba44069391d6ede32218d4cd *inst/include/stan/math/rev/fun/trace_inv_quad_form_ldlt.hpp
e8ca5b58abe39643e4e3c54f4906870b *inst/include/stan/math/rev/fun/trace_quad_form.hpp
96d9e1a81398ee5f5c2ce2df3af21ad6 *inst/include/stan/math/rev/fun/trigamma.hpp
5b0a6f11001277eda115e649be39f2ec *inst/include/stan/math/rev/fun/trunc.hpp
e4e09cebd2441e1fdd2dec65f046cad3 *inst/include/stan/math/rev/fun/ub_constrain.hpp
399a3531850adb317adf7e2633a6ec9c *inst/include/stan/math/rev/fun/unit_vector_constrain.hpp
8ed774035a792f930aed16ed3897edf9 *inst/include/stan/math/rev/fun/value_of.hpp
10303c14c8114394a82ddb2a488b5cc9 *inst/include/stan/math/rev/fun/value_of_rec.hpp
936e030c43bb0409caeb627b949bc04f *inst/include/stan/math/rev/fun/variance.hpp
0333c5b63ff4b19d3954c9e3924fad4c *inst/include/stan/math/rev/functor.hpp
cfb8228a4d9ac461309814a223820f4c *inst/include/stan/math/rev/functor/algebra_solver_fp.hpp
05ddcc5a01cb8391823a71612f8b36bc *inst/include/stan/math/rev/functor/algebra_system.hpp
cfcf40776c03ee09ebb269fc16af2a72 *inst/include/stan/math/rev/functor/apply_scalar_binary.hpp
9eb538d2f4b38d41e91cc216047118fe *inst/include/stan/math/rev/functor/apply_scalar_unary.hpp
36f2691c377bd7b42c39147767d22733 *inst/include/stan/math/rev/functor/apply_vector_unary.hpp
a8516642caa9b30a4096a50a66b1ed43 *inst/include/stan/math/rev/functor/coupled_ode_system.hpp
9f02094bc523316dc8d689564a9d15f8 *inst/include/stan/math/rev/functor/cvodes_integrator.hpp
e1e73f194f8216608b2efa1153cb69bc *inst/include/stan/math/rev/functor/cvodes_integrator_adjoint.hpp
9b7aa51c53174e79d2810098d46348c3 *inst/include/stan/math/rev/functor/cvodes_utils.hpp
b90ab9a55a9244a0efc76877f229a6f7 *inst/include/stan/math/rev/functor/dae.hpp
ea485fdcd307f8a2f60354005c8d9b69 *inst/include/stan/math/rev/functor/dae_system.hpp
9aaa0687656af92c9440a5191dbfa09f *inst/include/stan/math/rev/functor/finite_diff_hessian_auto.hpp
2a73489972a14d651456c54f44c9c8ae *inst/include/stan/math/rev/functor/finite_diff_hessian_times_vector_auto.hpp
4ca2cc95112eb57c03a4019ef433d233 *inst/include/stan/math/rev/functor/gradient.hpp
a101dda6f4e24cdbc17d601d4468f4df *inst/include/stan/math/rev/functor/idas_integrator.hpp
5ebc2bab7c99edeb454553db964ae713 *inst/include/stan/math/rev/functor/idas_service.hpp
300db2c3012b3d3b0ac7f5b3fc459a8b *inst/include/stan/math/rev/functor/integrate_1d.hpp
3dfbcab713b31201f20341678ad014f5 *inst/include/stan/math/rev/functor/integrate_ode_adams.hpp
c44856c8aba9848527cc5fbd4e6b17e1 *inst/include/stan/math/rev/functor/integrate_ode_bdf.hpp
94a16c0e9383f7f91e859110dbf7b2fa *inst/include/stan/math/rev/functor/jacobian.hpp
a5d0f282977f7817b5b356c86e8d3838 *inst/include/stan/math/rev/functor/kinsol_data.hpp
222bc0fa506dbc0ecb5736af0c9e83a0 *inst/include/stan/math/rev/functor/kinsol_solve.hpp
00ee94f40c31b85dc672accf4f3e32c1 *inst/include/stan/math/rev/functor/map_rect_concurrent.hpp
a8c55cabb8abd59b5212baa1cf4e8171 *inst/include/stan/math/rev/functor/map_rect_reduce.hpp
9acdd8b870171db2c93c84e492563d6c *inst/include/stan/math/rev/functor/ode_adams.hpp
9b96ce9eb53ad654f38f32f180a0214d *inst/include/stan/math/rev/functor/ode_adjoint.hpp
fa73b8754562c3167f7b6b876742e4f3 *inst/include/stan/math/rev/functor/ode_bdf.hpp
2be0f7254a6217aef51308627023a88a *inst/include/stan/math/rev/functor/ode_store_sensitivities.hpp
ac7171f5896ad2e9831e567a0f5c90a2 *inst/include/stan/math/rev/functor/operands_and_partials.hpp
c6d382a4139e3c9a79ca4aa4f1c2e19e *inst/include/stan/math/rev/functor/partials_propagator.hpp
12fb74f8a6036465e56519ab792c98ac *inst/include/stan/math/rev/functor/reduce_sum.hpp
c12026889d02625a9c00d81c021cbabc *inst/include/stan/math/rev/functor/solve_newton.hpp
b20bd9b87f2aa8965a99cb0e86d7946f *inst/include/stan/math/rev/functor/solve_powell.hpp
a69264c0dd6ce6eee3c39a37e3d1c8aa *inst/include/stan/math/rev/meta.hpp
20735d76d7b734f0c5f6b9bf2193469b *inst/include/stan/math/rev/meta/arena_type.hpp
bba85b5a7107e3d05a8d6762f2a3c2fb *inst/include/stan/math/rev/meta/conditional_var_value.hpp
93603693b8f1db5832da980f80d427cc *inst/include/stan/math/rev/meta/is_arena_matrix.hpp
50a565370eafa7c28bd04c1b0738cb47 *inst/include/stan/math/rev/meta/is_rev_matrix.hpp
55631fb57fbebe12d265d4399377d2f1 *inst/include/stan/math/rev/meta/is_var.hpp
54adae9bc52a4465f87935a64d5ec84b *inst/include/stan/math/rev/meta/is_vari.hpp
407b309d5f1358443dc65a8104c76757 *inst/include/stan/math/rev/meta/partials_type.hpp
5a8e9bafdd1f097f9fbf329931c0fec7 *inst/include/stan/math/rev/meta/plain_type.hpp
5f44ae98ac23b09a63d100530e7eda0c *inst/include/stan/math/rev/meta/promote_var_matrix.hpp
b6060613a008d54a6307a729e168105e *inst/include/stan/math/rev/meta/return_var_matrix.hpp
a01573fb6045bc6a670118efa28fb4dd *inst/include/stan/math/rev/meta/rev_matrix_type.hpp
de30b2d12f14c108e9b043382dddf8fc *inst/include/stan/math/rev/prob.hpp
86537444a8d3878d0c21cf27b25540c2 *inst/include/stan/math/rev/prob/std_normal_log_qf.hpp
18fbeed8882ecb0edf667a951eaa02f7 *inst/include/stan/math/version.hpp
b3e50636326e2d460f7a76b7176477a2 *inst/include/stan_sundials_printf_override.hpp
9d3b95521f926b87d97eab648ca5dc14 *inst/include/sundials/sundials_band.h
d1682a09c6b7885d269787b5dfdcc3c3 *inst/include/sundials/sundials_config.h
e925a8fa93872f5a184542953d512657 *inst/include/sundials/sundials_config.in
28e47b37317ba3b3aa1f14c360973b64 *inst/include/sundials/sundials_context.h
58608f89cdf41429543a11dde80e45b4 *inst/include/sundials/sundials_cuda_policies.hpp
947765acca8aa3315ea75732ad9e1426 *inst/include/sundials/sundials_dense.h
9c50173c6b84de3f8ba03b82bbb041c9 *inst/include/sundials/sundials_direct.h
e9db0b44eae14e93ffa91896e7f417ef *inst/include/sundials/sundials_export.h
d6d3551650e4f9aa76f69cbb6ba777ca *inst/include/sundials/sundials_futils.h
42458737c2f412a28fd12442dbf45edf *inst/include/sundials/sundials_hip_policies.hpp
595eea7a38700d00b47857266ba3ff1f *inst/include/sundials/sundials_iterative.h
d8694595b75709355e031f9c5f2289c7 *inst/include/sundials/sundials_lapack.h
19b572836de4d329a8a58649921a700e *inst/include/sundials/sundials_linearsolver.h
73c2859f7c609a292fddd15d3578bed8 *inst/include/sundials/sundials_math.h
6f048eb8d22047c2b707744b6af98283 *inst/include/sundials/sundials_matrix.h
813fe393f6a2d5163ef2fe12ce153462 *inst/include/sundials/sundials_memory.h
080243397f55cea7f4ee8a45406974b3 *inst/include/sundials/sundials_mpi_types.h
f7e0608da97dbb01e3995df3cbdbe2a6 *inst/include/sundials/sundials_nonlinearsolver.h
10764906ec796a142c978a3fa7af8035 *inst/include/sundials/sundials_nvector.h
a5d75e6990baf249bbe29c361cb8dbc7 *inst/include/sundials/sundials_nvector_senswrapper.h
5c74af8d8bb621045396c37833249845 *inst/include/sundials/sundials_profiler.h
586f047c4f7f4eed1a871f65adf558cd *inst/include/sundials/sundials_sycl_policies.hpp
33b2ab8e24a4c814c2f7c0e006182ad9 *inst/include/sundials/sundials_types.h
e4492601bb4219ad3a6442bf8ab2d66a *inst/include/sundials/sundials_version.h
e9c6f8ae6632f7e8008db439121ed246 *inst/include/sundials/sundials_xbraid.h
0ed2e7e5399d03ced1ddea48c37a9d70 *inst/include/sundials_debug.h
3dc8806dbc0bacc31b4c8ad890026ba2 *inst/include/sunlinsol/sunlinsol_band.h
240257703f48dcb4fe3984019f9a47cd *inst/include/sunlinsol/sunlinsol_cusolversp_batchqr.h
96673c05bdc1f7e71e0644f33f389361 *inst/include/sunlinsol/sunlinsol_dense.h
36f311fae442cb4d307f5e1c941f3701 *inst/include/sunlinsol/sunlinsol_klu.h
f20b3a76432ef85551259d3dee54f6e0 *inst/include/sunlinsol/sunlinsol_lapackband.h
fb97fc7006a050d884a6ec66437792c2 *inst/include/sunlinsol/sunlinsol_lapackdense.h
60afe6516850c2b9e5212fbc2882a9a8 *inst/include/sunlinsol/sunlinsol_magmadense.h
547ebe9964d7683e8572bf06920fe12e *inst/include/sunlinsol/sunlinsol_onemkldense.h
9b2f759ec7423e72906223246be64d7e *inst/include/sunlinsol/sunlinsol_pcg.h
3baa2edca0808280bfa1a461c44422b4 *inst/include/sunlinsol/sunlinsol_spbcgs.h
666e51de18687470cb292d8f3a8b07d4 *inst/include/sunlinsol/sunlinsol_spfgmr.h
7a5bdb242e0b9784ac6b542f42fde0e9 *inst/include/sunlinsol/sunlinsol_spgmr.h
146610b0d82213d5ee1dcbb60b78dfc4 *inst/include/sunlinsol/sunlinsol_sptfqmr.h
e7fee2ba3df76ef031b723b6ba5e61bf *inst/include/sunlinsol/sunlinsol_superludist.h
d4169c423e70a0e9e6357920c6050b97 *inst/include/sunlinsol/sunlinsol_superlumt.h
c188d72d6c4b122658c1a135921861af *inst/include/sunmatrix/sunmatrix_band.h
a9d973dc1bc4482764df0ad685c33f2e *inst/include/sunmatrix/sunmatrix_cusparse.h
92729833fc54a57d25f143d6381a202c *inst/include/sunmatrix/sunmatrix_dense.h
fdc0200bc8070e783280389e8839d602 *inst/include/sunmatrix/sunmatrix_magmadense.h
1981495c252eb97c9a2de2b691619a45 *inst/include/sunmatrix/sunmatrix_onemkldense.h
c17096a41b40f56a985f1813e8799975 *inst/include/sunmatrix/sunmatrix_slunrloc.h
b83a02cf5b22ccdf763cb8cfd548952f *inst/include/sunmatrix/sunmatrix_sparse.h
21d235f27d6412c94bc1ba906002a729 *inst/include/sunmemory/sunmemory_cuda.h
f1889c46fb80106e25ab33659dbe6ff4 *inst/include/sunmemory/sunmemory_hip.h
cbfe0a2dee4d38517769933b3901c418 *inst/include/sunmemory/sunmemory_sycl.h
9153aea2ddc22204993373bb718bd1d0 *inst/include/sunmemory/sunmemory_system.h
4b24e5c668ae7f65c4e552302930d4e3 *inst/include/sunnonlinsol/sunnonlinsol_fixedpoint.h
4faccf6b4fd22be8435271d7f9bac24c *inst/include/sunnonlinsol/sunnonlinsol_newton.h
cf12e0797e2e7cf945e54a42163660c9 *inst/include/sunnonlinsol/sunnonlinsol_petscsnes.h
a424503e8d4d699707868317c919b505 *inst/stanc.js
3ff2d51c2b68bf7e021fe8af6772c9f7 *man/CxxFlags.Rd
c89adfeaae9bde83f24fb8ba04156b38 *man/stanFunction.Rd
807aa3edb40840d0b4c8b6b609a39b91 *src/Makevars
ce5c3747018ba72cbac1e1cb9ab74b71 *src/Makevars.win
c212a5def60ce8654d7852bb9af66e13 *src/cvodes/LICENSE
5dfe22201a2919be5021a8bc7c74efc4 *src/cvodes/NOTICE
f6aec6d2e85ff6a36438614bee1daa5d *src/cvodes/README.md
5f27f7af89703f7487a9a5b919f3013a *src/cvodes/cvodea.c
4572f4815087a9166a6431db9349aa65 *src/cvodes/cvodea_io.c
e2e4607d7cc7f606b8bb97b16051d286 *src/cvodes/cvodes.c
5995db7034570ec3dece81305b29dfcc *src/cvodes/cvodes_bandpre.c
3711227932b500ed04bbc838659ab7dd *src/cvodes/cvodes_bandpre_impl.h
968e24a4c200f8a2452d57a14aec971d *src/cvodes/cvodes_bbdpre.c
d85730e16061562f6fe2cab8f2c842b1 *src/cvodes/cvodes_bbdpre_impl.h
6d9bd2e9df87a436bed42b4d039b29ac *src/cvodes/cvodes_diag.c
6f482dc75dbba2e6a2214c0fadd7b3a8 *src/cvodes/cvodes_diag_impl.h
bba89af927a4b72877e5b4dbb5273ca8 *src/cvodes/cvodes_direct.c
9e32fdb9b487d341924c1b75889bcedd *src/cvodes/cvodes_impl.h
c81e2be5b372cbf6c5a4fb22a0de9576 *src/cvodes/cvodes_io.c
a62eec26fff6eb732c4da30bd137e865 *src/cvodes/cvodes_ls.c
77e560377689e771d7ff727d9d5174f6 *src/cvodes/cvodes_ls_impl.h
23639106b0ddd1a7b000da4af835d60c *src/cvodes/cvodes_nls.c
58ac49ca1f28914f8df20b55cac847d0 *src/cvodes/cvodes_nls_sim.c
f2b6817641ad885f69124e6930565b97 *src/cvodes/cvodes_nls_stg.c
edcba4be9d8b82b69ddc3ff57024bbe2 *src/cvodes/cvodes_nls_stg1.c
52c9e5ef2d03fa3629740445d9641600 *src/cvodes/cvodes_spils.c
cffea942974d158853d2c8eabe7d090b *src/cvodes/fmod/fcvodes_mod.c
47ac4767019c184cad3e84f11e04f64e *src/cvodes/fmod/fcvodes_mod.f90
c212a5def60ce8654d7852bb9af66e13 *src/idas/LICENSE
5dfe22201a2919be5021a8bc7c74efc4 *src/idas/NOTICE
e0447da74dde875113e0d0c754bdf926 *src/idas/README.md
ff5c5bfce0c5ab4b18162a684f4633de *src/idas/fmod/fidas_mod.c
403fbd47b54483639ffc99277c6be47e *src/idas/fmod/fidas_mod.f90
4c028d2714a377a90d40ced0af85cd54 *src/idas/idaa.c
a397e7dab6f1b553f92dd33b96fcc124 *src/idas/idaa_io.c
cf8729fab9e84660d283bdbecf934ff4 *src/idas/idas.c
fe4856b77d67ea05e97566655ab91c84 *src/idas/idas_bbdpre.c
58140c256e00813af114a29bcdd18c1f *src/idas/idas_bbdpre_impl.h
3f91714f84799d04163ae3e67d01f603 *src/idas/idas_direct.c
d24188a08ea8c8b99ff2b2dc6f96192b *src/idas/idas_ic.c
30d72bfd910dbd22b08b3f34d6577cc9 *src/idas/idas_impl.h
4dbe1b0b8ab8352c5244fe42121b9a0d *src/idas/idas_io.c
7bfea3d806eac24f2b3dc99b3a45b55a *src/idas/idas_ls.c
657417bd5dce53b21f43f56f47ea25ee *src/idas/idas_ls_impl.h
a0f9c425110812cb59ae5b60e3db73f9 *src/idas/idas_nls.c
cd82ec550c1cb0f9c9e25acd845500c0 *src/idas/idas_nls_sim.c
7dd39c919cbdcf33405e30f2d97b0fbb *src/idas/idas_nls_stg.c
1ac80ea0e3ed813b8340d66b59e5f90b *src/idas/idas_spils.c
d8d6f3a81ddc136c7bad498731bb0af0 *src/init.c
2ee1232c21d367ea9b13996cb8e38b2e *src/install.libs.R
c212a5def60ce8654d7852bb9af66e13 *src/kinsol/LICENSE
5dfe22201a2919be5021a8bc7c74efc4 *src/kinsol/NOTICE
98ce156ab20c0f11a72e2f990c96ce32 *src/kinsol/README.md
57aa8de426003b46ca82dfe7ab7b4c32 *src/kinsol/fmod/fkinsol_mod.c
238ff3cfd22c23cde7bd6fdde625a6d3 *src/kinsol/fmod/fkinsol_mod.f90
2d8caf6394f17b027c0473dbd4dc5053 *src/kinsol/kinsol.c
3ca07bb0ca604f6dd2bd935d4fbebf7c *src/kinsol/kinsol_bbdpre.c
ac16337f1105adf5843abc83d5c2d84e *src/kinsol/kinsol_bbdpre_impl.h
1ed7a54119e525684ea391900af327cb *src/kinsol/kinsol_direct.c
4532d345d96a4334745dd698dfa54dce *src/kinsol/kinsol_impl.h
f02e8f7b45f31584b6f94f315ba54fd4 *src/kinsol/kinsol_io.c
6112220efe55c7f5e17792e987b054dd *src/kinsol/kinsol_ls.c
118ab1960ba74975f7be9710c389deb2 *src/kinsol/kinsol_ls_impl.h
414c3a006814df38e0f9559abae1e7b4 *src/kinsol/kinsol_spils.c
0943317e7dfd0bf797808f6398e4ffdd *src/nvector/cuda/VectorArrayKernels.cuh
db7ed0ef937f68705eeaa211b9e89a9b *src/nvector/cuda/VectorKernels.cuh
3dd3fc8917b041d093467779c94ced14 *src/nvector/cuda/nvector_cuda.cu
312e95621f2b589d01ec05baed5e964f *src/nvector/hip/VectorArrayKernels.hip.hpp
74bf190ab28b27a16ac63c46b93561ab *src/nvector/hip/VectorKernels.hip.hpp
b8e4aaeda3f0bb3aebbcc494ca627990 *src/nvector/hip/nvector_hip.hip.cpp
aeab2bdf657c2408194fe0c2b0d5eb72 *src/nvector/manyvector/fmod/fnvector_manyvector_mod.c
203545fc4122a165517cf01cb01676dc *src/nvector/manyvector/fmod/fnvector_manyvector_mod.f90
1faae02ef19155924e765fea240b900f *src/nvector/manyvector/fmod/fnvector_mpimanyvector_mod.c
4d25bb8d8e8b9754d8ac66ae6f29ec6a *src/nvector/manyvector/fmod/fnvector_mpimanyvector_mod.f90
7fb682dc39db08444df9dda6ff955193 *src/nvector/manyvector/nvector_manyvector.c
3085cbfa7d2d7933d86c0a771c7a4d7f *src/nvector/mpiplusx/fmod/fnvector_mpiplusx_mod.c
5ea14fc3a2d4be9479608126ffcece7e *src/nvector/mpiplusx/fmod/fnvector_mpiplusx_mod.f90
b20410bdaa68378ffcbf225fbf018d31 *src/nvector/mpiplusx/nvector_mpiplusx.c
6daef2038064bcfd4e3f4627f0d01698 *src/nvector/openmp/fmod/fnvector_openmp_mod.c
b42a982fe2a21af36c4d750d3e8597e6 *src/nvector/openmp/fmod/fnvector_openmp_mod.f90
25373537043c458ac99960f18065f835 *src/nvector/openmp/nvector_openmp.c
45987274d25defd8adc2b2d51fe7fa6a *src/nvector/openmpdev/nvector_openmpdev.c
aab3f12aa3f34cf1c4c8fcb62bed5cef *src/nvector/parallel/fmod/fnvector_parallel_mod.c
aba601667c64e6d38001eddb11e5d37b *src/nvector/parallel/fmod/fnvector_parallel_mod.f90
39669065befe23875a01029931106466 *src/nvector/parallel/nvector_parallel.c
094920673b1a970e254e3df46628839f *src/nvector/parhyp/nvector_parhyp.c
a072604c0e611181736fbc8bed79d3a8 *src/nvector/petsc/nvector_petsc.c
ebdd085161e89fd1d78dc6387002d50a *src/nvector/pthreads/fmod/fnvector_pthreads_mod.c
4ad28fc75a27f4216a03710bda2e4c14 *src/nvector/pthreads/fmod/fnvector_pthreads_mod.f90
1e80a65c14440ffaeedea6508a717bf8 *src/nvector/pthreads/nvector_pthreads.c
8b8207b92ffcb99bdae8a658592a993c *src/nvector/raja/nvector_raja.cpp
3254a5bfb3b30e73f5c13f94be2ca5d6 *src/nvector/serial/fmod/fnvector_serial_mod.c
8e85144e03511dce57b1d732e3f746d6 *src/nvector/serial/fmod/fnvector_serial_mod.f90
57d3d073b9a155ecb8a15cb7e1d96107 *src/nvector/serial/nvector_serial.c
7f9972d7bbd21eaa6b8256b579b332f6 *src/nvector/sycl/nvector_sycl.cpp
8416dbd3d43bb35b64d0e55857ee14ac *src/nvector/trilinos/nvector_trilinos.cpp
f77bda6112ed3c88e9ca7bfc163f82e6 *src/sundials/fmod/fsundials_context_mod.c
720ac792301faa102e332e63b345b25b *src/sundials/fmod/fsundials_context_mod.f90
98b9bc44bd1e7f45379077adc89fe081 *src/sundials/fmod/fsundials_futils_mod.c
c082084f493d1f0d9d0f0592a3794307 *src/sundials/fmod/fsundials_futils_mod.f90
12de6830990fb382ef417e0c47b8fece *src/sundials/fmod/fsundials_linearsolver_mod.c
f0cad80fff3e135747432d302114c71b *src/sundials/fmod/fsundials_linearsolver_mod.f90
69e4a87394daa1cc48193af567f045d2 *src/sundials/fmod/fsundials_matrix_mod.c
97b44200741a15539c8524d4e351424f *src/sundials/fmod/fsundials_matrix_mod.f90
e85ae86b593f4a07395e0e8806733b32 *src/sundials/fmod/fsundials_nonlinearsolver_mod.c
b6a621b020955105f9523d8af927e8dc *src/sundials/fmod/fsundials_nonlinearsolver_mod.f90
28ddfb271ddfaa4a97612d9f66606012 *src/sundials/fmod/fsundials_nvector_mod.c
f07ff3ef50b4ccd26ab2681894223442 *src/sundials/fmod/fsundials_nvector_mod.f90
3742952a7592f12f16c099b1f1829f3a *src/sundials/fmod/fsundials_profiler_mod.c
16f62ea411683f717216e37f2cf40709 *src/sundials/fmod/fsundials_profiler_mod.f90
2e1ce5173f45241c1f491f012ab9a1ae *src/sundials/fmod/fsundials_types_mod.c
f9bb95438baf35d08412437ad8c23497 *src/sundials/fmod/fsundials_types_mod.f90
7ee5944682feba785b744a9d7199f47e *src/sundials/sundials_band.c
4e9ed23f0ccedae6cd78173b504d308e *src/sundials/sundials_context.c
1557ae1c2569280da1e465f968855e88 *src/sundials/sundials_context_impl.h
02767bb525a5ce66af20891df2909ad3 *src/sundials/sundials_cuda.h
1327138be06a747cea3d9d8b8414efb8 *src/sundials/sundials_cuda_kernels.cuh
0ed2e7e5399d03ced1ddea48c37a9d70 *src/sundials/sundials_debug.h
6a9eb99526dfb5ff2f393f19ac1ea9bb *src/sundials/sundials_dense.c
0cb3999aa5aa6d982977a1ed4fc112ed *src/sundials/sundials_direct.c
e9a78c26289ed48fde6dc236056f9c31 *src/sundials/sundials_futils.c
29d51986a5a3cf0331878bba3eab958f *src/sundials/sundials_hashmap.h
d59567e69a2d943b7543c42c92a5459c *src/sundials/sundials_hip.h
7aaa3a77c9bc7728a0d1ecd3b5fea902 *src/sundials/sundials_hip_kernels.hip.hpp
2c45eb15d2e27407e0d4df8b800c13b4 *src/sundials/sundials_iterative.c
fb9d76cbfcd4b88b60e97664edc825e7 *src/sundials/sundials_iterative_impl.h
19e2344cb4438a5958903f597c5cfd8f *src/sundials/sundials_lapack_defs.h
b848b66475b666c18d823687850d89c0 *src/sundials/sundials_linearsolver.c
64849893a3481dbb61d776b57925f394 *src/sundials/sundials_math.c
37a2400de5772c56d1235ec4fb79d721 *src/sundials/sundials_matrix.c
50b3bec7e835d4e06ab3ecbaf2731c4d *src/sundials/sundials_memory.c
253311fe333b253f8c9d1f38e5c43d26 *src/sundials/sundials_nonlinearsolver.c
2fda1a3b9a20b1f95f15532c2a299af8 *src/sundials/sundials_nvector.c
cc6de6f0c51f39f408f70b98df346f4c *src/sundials/sundials_nvector_senswrapper.c
13706853d5b8a7a0ebbf281891e248be *src/sundials/sundials_profiler.c
9b14be818dd299a0b33c479da278524a *src/sundials/sundials_reductions.hpp
aca4915422009ab6aa682fd750a6c154 *src/sundials/sundials_sycl.h
303ed076910605b98f3a0f95f188ba47 *src/sundials/sundials_version.c
4e9cdc1f0ce2bfbe0d3045df0ffececc *src/sunlinsol/band/fmod/fsunlinsol_band_mod.c
4c151eef587e0822c6b14e933828a187 *src/sunlinsol/band/fmod/fsunlinsol_band_mod.f90
e27687d67587387cee1128a5af89960d *src/sunlinsol/band/sunlinsol_band.c
b58cc094d687b9b1a1ff81800beeefbf *src/sunlinsol/cusolversp/sunlinsol_cusolversp_batchqr.cu
f8957b78108f3feb799c8d4840f16ef1 *src/sunlinsol/dense/fmod/fsunlinsol_dense_mod.c
9b0addf3573b9ac2ad8e41e1cb493cdf *src/sunlinsol/dense/fmod/fsunlinsol_dense_mod.f90
3f76860a853aa17994aa14ec4b35c044 *src/sunlinsol/dense/sunlinsol_dense.c
219f419e61755669039e9527344e2407 *src/sunlinsol/klu/fmod/fsunlinsol_klu_mod.c
1b226948f42a9a60adbd8f9e74d91759 *src/sunlinsol/klu/fmod/fsunlinsol_klu_mod.f90
5564da946df64cf98b6b2bb3e43a8c0b *src/sunlinsol/klu/sunlinsol_klu.c
b77ac9814b0c958db7d03f9e45654706 *src/sunlinsol/lapackband/sunlinsol_lapackband.c
51bdff14da61964a732daf461fbc5bad *src/sunlinsol/lapackdense/sunlinsol_lapackdense.c
0c13ad575cadc22207ab1bef1a630b1f *src/sunlinsol/magmadense/sunlinsol_magmadense.cpp
609acdfd5ac2db1727970afea56a495f *src/sunlinsol/onemkldense/sunlinsol_onemkldense.cpp
ca8f59941a8d7a3b16d266c8a47b9635 *src/sunlinsol/pcg/fmod/fsunlinsol_pcg_mod.c
1289eae9ef6a5142f4458037c71d97ce *src/sunlinsol/pcg/fmod/fsunlinsol_pcg_mod.f90
65a0a840e97e0a95686e7e1b7c4b2b29 *src/sunlinsol/pcg/sunlinsol_pcg.c
5b2986d0a56198027625f1382cf51538 *src/sunlinsol/spbcgs/fmod/fsunlinsol_spbcgs_mod.c
d65423c9ff46cca57e53c001223ee3a5 *src/sunlinsol/spbcgs/fmod/fsunlinsol_spbcgs_mod.f90
3bd1ea6e0d85ce95fc6b5d90ec941731 *src/sunlinsol/spbcgs/sunlinsol_spbcgs.c
89ef5bf9455d725a92413a037b60d36b *src/sunlinsol/spfgmr/fmod/fsunlinsol_spfgmr_mod.c
2ff77a11dfb8b67dc1c4fb723a21fbd5 *src/sunlinsol/spfgmr/fmod/fsunlinsol_spfgmr_mod.f90
11f4f940bedb0b5bf0202fbc145d9111 *src/sunlinsol/spfgmr/sunlinsol_spfgmr.c
b155395d9988576448c40c6a43901e95 *src/sunlinsol/spgmr/fmod/fsunlinsol_spgmr_mod.c
f80a1607bde666bd88aacf070d340445 *src/sunlinsol/spgmr/fmod/fsunlinsol_spgmr_mod.f90
071573a060c58d86413268dac61c0589 *src/sunlinsol/spgmr/sunlinsol_spgmr.c
a1672cde829601912777c0e32f09fc2a *src/sunlinsol/sptfqmr/fmod/fsunlinsol_sptfqmr_mod.c
2e21aeefbdcb28d5d339153085aafadb *src/sunlinsol/sptfqmr/fmod/fsunlinsol_sptfqmr_mod.f90
5be6d8aca591f6f5a31904bb5d46c0a4 *src/sunlinsol/sptfqmr/sunlinsol_sptfqmr.c
6952fc5b518611cfcfe3e80aabdf9410 *src/sunlinsol/superludist/sunlinsol_superludist.c
71be185929e045ed92e7dba7a5093c72 *src/sunlinsol/superlumt/sunlinsol_superlumt.c
df23247bbd6c2a113cec36c9ed513e47 *src/sunmatrix/band/fmod/fsunmatrix_band_mod.c
9a343e1db7fe4561c2c139fbeac155a6 *src/sunmatrix/band/fmod/fsunmatrix_band_mod.f90
f42e5a6c40e5ca436536708b3cbbf5f7 *src/sunmatrix/band/sunmatrix_band.c
5a1f2b4bc9bf97d3c7da8bd52302de44 *src/sunmatrix/cusparse/cusparse_kernels.cuh
254ea2d46853af6b8ebfcab1354c6431 *src/sunmatrix/cusparse/sunmatrix_cusparse.cu
f05d5e1fd776efc89d8ca452d2997dfa *src/sunmatrix/dense/fmod/fsunmatrix_dense_mod.c
29d41ea3aac4a5dcbd7d7a6ce97254b7 *src/sunmatrix/dense/fmod/fsunmatrix_dense_mod.f90
d47d459761a3a484a6adb163aee0bea3 *src/sunmatrix/dense/sunmatrix_dense.c
2eda7e4137ee6dc4788c370ad34b2e97 *src/sunmatrix/magmadense/dense_cuda_kernels.cuh
a09f3d34f85690881326e89f69bb3c13 *src/sunmatrix/magmadense/dense_hip_kernels.hip.hpp
73000366e4ccb31e56a90133e3f2d1c0 *src/sunmatrix/magmadense/sunmatrix_magmadense.cpp
7a35bca1fc7b48f7f3cf875535040999 *src/sunmatrix/onemkldense/sunmatrix_onemkldense.cpp
3ee421465653dca03690ebe3ec10d723 *src/sunmatrix/slunrloc/sunmatrix_slunrloc.c
bc23b5d77851c95c4cf714a51486176e *src/sunmatrix/sparse/fmod/fsunmatrix_sparse_mod.c
8aee6f691aaf6c2db41d1314dd7755f2 *src/sunmatrix/sparse/fmod/fsunmatrix_sparse_mod.f90
6dd5af580eeb358224d8a492fca1b090 *src/sunmatrix/sparse/sunmatrix_sparse.c
ff6d3b96ae0aa469de968cf6aa5099e0 *src/sunmemory/cuda/sundials_cuda_memory.cu
cf826bb870e4cd15fd7498f3ca341557 *src/sunmemory/hip/sundials_hip_memory.hip.cpp
312148d9b82d749e1f6e2973b189189e *src/sunmemory/sycl/sundials_sycl_memory.cpp
5df3ce3ea14af7da0f7a1c068a1402d9 *src/sunmemory/system/sundials_system_memory.c
50ebbc55939cb0994077b52debbc86da *src/sunnonlinsol/fixedpoint/fmod/fsunnonlinsol_fixedpoint_mod.c
0e2fe3f0278482ea861f68b764dac163 *src/sunnonlinsol/fixedpoint/fmod/fsunnonlinsol_fixedpoint_mod.f90
926c9acb3a25989577c38c6dfc38a74b *src/sunnonlinsol/fixedpoint/sunnonlinsol_fixedpoint.c
982df71896c77d1de565928f7a5453e8 *src/sunnonlinsol/newton/fmod/fsunnonlinsol_newton_mod.c
5215684c1837d9309726ca2048bb36c1 *src/sunnonlinsol/newton/fmod/fsunnonlinsol_newton_mod.f90
f4cdda8684c52d93a30ac82b560188b5 *src/sunnonlinsol/newton/sunnonlinsol_newton.c
e9a381acb82a4063c81a6409e48dc691 *src/sunnonlinsol/petscsnes/sunnonlinsol_petscsnes.c
54cf10ca5ac7b36b45a9796ab12a1bfb *tests/rstan.R
ddfb7fe84a5f61eaec00c645f5a5c905 *vignettes/sparselm_stan.hpp
33c9e17d63127207e090c353b627fc98 *vignettes/stanmath.Rmd
|