accuracy_tables.qbk 657 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362
  1. [/Cell Content:]
  2. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[] [role blue Max = 59.5[epsilon] (Mean = 26.6[epsilon])]]
  3. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[] [role blue Max = 14[epsilon] (Mean = 2.5[epsilon])]]
  4. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[] [role blue Max = 9.85[epsilon] (Mean = 1.82[epsilon])]]
  5. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[] [role blue Max = 3.76e+03[epsilon] (Mean = 1.19e+03[epsilon])]]
  6. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[] [role blue Max = 3.61[epsilon] (Mean = 1.22[epsilon])]]
  7. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.36[epsilon] (Mean = 0.782[epsilon])]]
  8. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.82[epsilon] (Mean = 0.354[epsilon])]]
  9. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[] [role blue Max = 3.61[epsilon] (Mean = 1.22[epsilon])]]
  10. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[] [role blue Max = 1.36[epsilon] (Mean = 0.782[epsilon])]]
  11. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[] [role blue Max = 0.82[epsilon] (Mean = 0.354[epsilon])]]
  12. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[] [role blue Max = 3.67[epsilon] (Mean = 1.64[epsilon])]]
  13. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[] [role blue Max = 7.46[epsilon] (Mean = 1.71[epsilon])]]
  14. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Random_Data[] [role blue Max = 9.67[epsilon] (Mean = 1.88[epsilon])]]
  15. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[] [role blue Max = 2.97[epsilon] (Mean = 1.24[epsilon])]]
  16. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[] [role blue Max = 3.46[epsilon] (Mean = 1.32[epsilon])]]
  17. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.767[epsilon] (Mean = 0.398[epsilon])]]
  18. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.762[epsilon] (Mean = 0.329[epsilon])]]
  19. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[] [role blue Max = 3.46[epsilon] (Mean = 1.32[epsilon])]]
  20. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[] [role blue Max = 0.767[epsilon] (Mean = 0.398[epsilon])]]
  21. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[] [role blue Max = 0.762[epsilon] (Mean = 0.329[epsilon])]]
  22. [template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Integer_arguments[] [role blue Max = 9[epsilon] (Mean = 3[epsilon])]]
  23. [template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[] [role blue Max = 0.991[epsilon] (Mean = 0.375[epsilon])]]
  24. [template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[] [role blue Max = 0.994[epsilon] (Mean = 0.421[epsilon])]]
  25. [template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_less_than_1[] [role blue Max = 6.84[epsilon] (Mean = 3.12[epsilon])]]
  26. [template Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_greater_than_1[] [role blue Max = 0.836[epsilon] (Mean = 0.093[epsilon])]]
  27. [template Microsoft_Visual_C_version_14_1_Win32_double_trigamma_boost_Mathematica_Data[] [role blue Max = 1[epsilon] (Mean = 0.382[epsilon])]]
  28. [template Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.996[epsilon] (Mean = 0.298[epsilon])]]
  29. [template Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.996[epsilon] (Mean = 0.343[epsilon])]]
  30. [template Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.996[epsilon] (Mean = 0.284[epsilon])]]
  31. [template Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.99[epsilon] (Mean = 0.328[epsilon])]]
  32. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_ratio_boost_tgamma_ratios[] [role blue Max = 3.28[epsilon] (Mean = 1.12[epsilon])]]
  33. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[] [role blue Max = 0.974[epsilon] (Mean = 0.175[epsilon])]]
  34. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[] [role blue Max = 0.968[epsilon] (Mean = 0.386[epsilon])]]
  35. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[] [role blue Max = 2.15[epsilon] (Mean = 0.685[epsilon])]]
  36. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[] [role blue Max = 2.74[epsilon] (Mean = 0.736[epsilon])]]
  37. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[] [role blue Max = 7.43[epsilon] (Mean = 1.42[epsilon])]]
  38. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[] [role blue Max = 7.56[epsilon] (Mean = 1.31[epsilon])]]
  39. [template Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_i_boost_Spherical_Harmonics[] [role blue Max = 2.27e+04[epsilon] (Mean = 725[epsilon])]]
  40. [template Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_r_boost_Spherical_Harmonics[] [role blue Max = 2.27e+04[epsilon] (Mean = 725[epsilon])]]
  41. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[] [role blue Max = 200[epsilon] (Mean = 57.2[epsilon])]]
  42. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_small_arguments[] [role blue Max = 3[epsilon] (Mean = 0.496[epsilon])]]
  43. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_negative_arguments[] [role blue Max = 162[epsilon] (Mean = 101[epsilon])]]
  44. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_negative_arguments[] [role blue Max = 497[epsilon] (Mean = 129[epsilon])]]
  45. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_arguments[] [role blue Max = 150[epsilon] (Mean = 13.9[epsilon])]]
  46. [template Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data[] [role blue Max = 9.32[epsilon] (Mean = 1.95[epsilon])]]
  47. [template Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1__math_h__powm1[] (['<math.h>:] Max = 1.84[epsilon] (Mean = 0.486[epsilon]))]
  48. [template Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1_boost_powm1[] [role blue Max = 1.84[epsilon] (Mean = 0.486[epsilon])]]
  49. [template Microsoft_Visual_C_version_14_1_Win32_double_powm1_boost_powm1[] [role blue Max = 1.84[epsilon] (Mean = 0.486[epsilon])]]
  50. [template Microsoft_Visual_C_version_14_1_Win32_double_sqrt1pm1_boost_sqrt1pm1[] [role blue Max = 1.35[epsilon] (Mean = 0.497[epsilon])]]
  51. [template Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_large_and_diverse_values_[] [role blue Max = 3.78[epsilon] (Mean = 0.621[epsilon])]]
  52. [template Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_medium_small_values_[] [role blue Max = 4.37[epsilon] (Mean = 0.98[epsilon])]]
  53. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[] [role blue Max = 227[epsilon] (Mean = 50.4[epsilon])]]
  54. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[] [role blue Max = 286[epsilon] (Mean = 62.8[epsilon])]]
  55. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 4.6[epsilon] (Mean = 1.63[epsilon])]]
  56. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 6.17[epsilon] (Mean = 1.45[epsilon])]]
  57. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T[] [role blue Max = 154[epsilon] (Mean = 32.1[epsilon])]]
  58. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T[] [role blue Max = 135[epsilon] (Mean = 32.1[epsilon])]]
  59. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 5.43e+03[epsilon] (Mean = 705[epsilon])]]
  60. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 9.79e+03[epsilon] (Mean = 723[epsilon])]]
  61. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 98.6[epsilon] (Mean = 15.8[epsilon])]]
  62. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 48.9[epsilon] (Mean = 10[epsilon])]]
  63. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[] [role blue Max = 1.25e+04[epsilon] (Mean = 1.49e+03[epsilon])]]
  64. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[] [role blue Max = 3.66e+03[epsilon] (Mean = 500[epsilon])]]
  65. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 624[epsilon] (Mean = 62.7[epsilon])]]
  66. [template Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 242[epsilon] (Mean = 31[epsilon])]]
  67. [template Microsoft_Visual_C_version_14_1_Win32_double_expm1__math_h__Random_test_data[] (['<math.h>:] Max = 1.31[epsilon] (Mean = 0.496[epsilon]))]
  68. [template Microsoft_Visual_C_version_14_1_Win32_double_log1p__math_h__Random_test_data[] (['<math.h>:] Max = 0.509[epsilon] (Mean = 0.057[epsilon]))]
  69. [template Microsoft_Visual_C_version_14_1_Win32_double_expm1_boost_Random_test_data[] [role blue Max = 1.31[epsilon] (Mean = 0.496[epsilon])]]
  70. [template Microsoft_Visual_C_version_14_1_Win32_double_log1p_boost_Random_test_data[] [role blue Max = 0.509[epsilon] (Mean = 0.057[epsilon])]]
  71. [template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 121[epsilon] (Mean = 7.14[epsilon])]]
  72. [template Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 4.6e+03[epsilon] (Mean = 366[epsilon])]]
  73. [template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 300[epsilon] (Mean = 33.2[epsilon])]]
  74. [template Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 46.4[epsilon] (Mean = 7.32[epsilon])]]
  75. [template Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 211[epsilon] (Mean = 20.4[epsilon])]]
  76. [template Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[] [role blue Max = 434[epsilon] (Mean = 11.1[epsilon])]]
  77. [template Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_x__boost_Laguerre_Polynomials[] [role blue Max = 3.1e+03[epsilon] (Mean = 185[epsilon])]]
  78. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[] [role blue Max = 2.52[epsilon] (Mean = 0.977[epsilon])]]
  79. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[] [role blue Max = 3.89[epsilon] (Mean = 0.824[epsilon])]]
  80. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.52[epsilon] (Mean = 0.357[epsilon])]]
  81. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 1.67e+04[epsilon] (Mean = 1e+03[epsilon])]]
  82. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 3.27e+04[epsilon] (Mean = 1.93e+03[epsilon])]]
  83. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 4.36e+04[epsilon] (Mean = 2.54e+03[epsilon])]]
  84. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 6.24e+03[epsilon] (Mean = 482[epsilon])]]
  85. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 513[epsilon] (Mean = 126[epsilon])]]
  86. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 23.2[epsilon] (Mean = 1.85[epsilon])]]
  87. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 16.1[epsilon] (Mean = 0.685[epsilon])]]
  88. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 26.2[epsilon] (Mean = 1.17[epsilon])]]
  89. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 2.11[epsilon] (Mean = 0.385[epsilon])]]
  90. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.52[epsilon] (Mean = 0.466[epsilon])]]
  91. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.83[epsilon] (Mean = 0.455[epsilon])]]
  92. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.92[epsilon] (Mean = 0.567[epsilon])]]
  93. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 34.3[epsilon] (Mean = 8.71[epsilon])]]
  94. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 45.8[epsilon] (Mean = 11.4[epsilon])]]
  95. [template Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 481[epsilon] (Mean = 113[epsilon])]]
  96. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 5.05[epsilon] (Mean = 1.08[epsilon])]]
  97. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 4.92[epsilon] (Mean = 1.03[epsilon])]]
  98. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 451[epsilon] (Mean = 64.7[epsilon])]]
  99. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 1.1e+03[epsilon] (Mean = 131[epsilon])]]
  100. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.814[epsilon] (Mean = 0.0856[epsilon])]]
  101. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.924[epsilon] (Mean = 0.108[epsilon])]]
  102. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 2.88[epsilon] (Mean = 0.469[epsilon])]]
  103. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 1.71[epsilon] (Mean = 0.34[epsilon])]]
  104. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 13[epsilon] (Mean = 2.97[epsilon])]]
  105. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 8.72[epsilon] (Mean = 1.48[epsilon])]]
  106. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 2.69[epsilon] (Mean = 0.849[epsilon])]]
  107. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 5.16[epsilon] (Mean = 1.33[epsilon])]]
  108. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_large_values[] [role blue Max = 243[epsilon] (Mean = 20.2[epsilon])]]
  109. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_large_values[] [role blue Max = 469[epsilon] (Mean = 31.5[epsilon])]]
  110. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_small_values[] [role blue Max = 1.54[epsilon] (Mean = 0.439[epsilon])]]
  111. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_small_values[] [role blue Max = 2.26[epsilon] (Mean = 0.74[epsilon])]]
  112. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_small_values[] [role blue Max = 1.57[epsilon] (Mean = 0.525[epsilon])]]
  113. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_small_values[] [role blue Max = 2.53[epsilon] (Mean = 0.66[epsilon])]]
  114. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_medium_values[] [role blue Max = 35.1[epsilon] (Mean = 6.98[epsilon])]]
  115. [template Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_medium_values[] [role blue Max = 23.7[epsilon] (Mean = 4[epsilon])]]
  116. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_medium_values[] [role blue Max = 5.62[epsilon] (Mean = 1.49[epsilon])]]
  117. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[] [role blue Max = 8.14[epsilon] (Mean = 1.76[epsilon])]]
  118. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_invb_boost_Inverse_incomplete_beta[] [role blue Max = 271[epsilon] (Mean = 16.4[epsilon])]]
  119. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_invb_boost_Inverse_incomplete_beta[] [role blue Max = 409[epsilon] (Mean = 19.3[epsilon])]]
  120. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inva_boost_Inverse_incomplete_beta[] [role blue Max = 408[epsilon] (Mean = 26.7[epsilon])]]
  121. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inva_boost_Inverse_incomplete_beta[] [role blue Max = 242[epsilon] (Mean = 22.9[epsilon])]]
  122. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inv_boost_Inverse_incomplete_beta[] [role blue Max = 2.93e+03[epsilon] (Mean = 198[epsilon])]]
  123. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inv_boost_Inverse_incomplete_beta[] [role blue Max = 8.59e+03[epsilon] (Mean = 277[epsilon])]]
  124. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 6.37[epsilon] (Mean = 1.03[epsilon])]]
  125. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 3.85[epsilon] (Mean = 0.791[epsilon])]]
  126. [template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 26.2[epsilon] (Mean = 6.36[epsilon])]]
  127. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 26[epsilon] (Mean = 6.28[epsilon])]]
  128. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.88e+03[epsilon] (Mean = 82.7[epsilon])]]
  129. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.32e+03[epsilon] (Mean = 68.5[epsilon])]]
  130. [template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 3.72e+03[epsilon] (Mean = 113[epsilon])]]
  131. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 633[epsilon] (Mean = 29.7[epsilon])]]
  132. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 56.7[epsilon] (Mean = 14.3[epsilon])]]
  133. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 106[epsilon] (Mean = 16.3[epsilon])]]
  134. [template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 90.6[epsilon] (Mean = 14.8[epsilon])]]
  135. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 90[epsilon] (Mean = 12.7[epsilon])]]
  136. [template Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 6.94[epsilon] (Mean = 1.71[epsilon])]]
  137. [template Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 8.4[epsilon] (Mean = 1.93[epsilon])]]
  138. [template Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 8.94[epsilon] (Mean = 2.06[epsilon])]]
  139. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 9.94[epsilon] (Mean = 2.17[epsilon])]]
  140. [template Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[] [role blue Max = 2.12[epsilon] (Mean = 0.588[epsilon])]]
  141. [template Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.08[epsilon] (Mean = 0.734[epsilon])]]
  142. [template Microsoft_Visual_C_version_14_1_Win32_double_hermite_boost_Hermite_Polynomials[] [role blue Max = 4.46[epsilon] (Mean = 1.41[epsilon])]]
  143. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_55[] (['<math.h>:] Max = 249[epsilon] (Mean = 43.1[epsilon]))]
  144. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_55[] (['<math.h>:] Max = 3.87e+04[epsilon] (Mean = 6.71e+03[epsilon]))]
  145. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_10[] (['<math.h>:] Max = 0.997[epsilon] (Mean = 0.444[epsilon]))]
  146. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_10[] (['<math.h>:] Max = 0.866[epsilon] (Mean = 0.445[epsilon]))]
  147. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_2[] (['<math.h>:] Max = 0.741[epsilon] (Mean = 0.473[epsilon]))]
  148. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_2[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  149. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_1[] (['<math.h>:] Max = 0.906[epsilon] (Mean = 0.565[epsilon]))]
  150. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_1[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.4[epsilon]))]
  151. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_0[] (['<math.h>:] Max = 0.962[epsilon] (Mean = 0.372[epsilon]))]
  152. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_0[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.405[epsilon]))]
  153. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__factorials[] (['<math.h>:] Max = 0.958[epsilon] (Mean = 0.38[epsilon]))]
  154. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__factorials[] (['<math.h>:] Max = 3.17[epsilon] (Mean = 0.928[epsilon]))]
  155. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma1pm1_boost_tgamma1pm1_dz_[] [role blue Max = 3.31[epsilon] (Mean = 0.517[epsilon])]]
  156. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_55[] [role blue Max = 0.821[epsilon] (Mean = 0.419[epsilon])]]
  157. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_55[] [role blue Max = 2.7[epsilon] (Mean = 1.35[epsilon])]]
  158. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_10[] [role blue Max = 4.22[epsilon] (Mean = 1.33[epsilon])]]
  159. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_10[] [role blue Max = 1.86[epsilon] (Mean = 0.881[epsilon])]]
  160. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_2[] [role blue Max = 0.591[epsilon] (Mean = 0.159[epsilon])]]
  161. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_2[] [role blue Max = 2[epsilon] (Mean = 0.733[epsilon])]]
  162. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_1[] [role blue Max = 0.867[epsilon] (Mean = 0.468[epsilon])]]
  163. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_1[] [role blue Max = 1.1[epsilon] (Mean = 0.59[epsilon])]]
  164. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_0[] [role blue Max = 0.964[epsilon] (Mean = 0.462[epsilon])]]
  165. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_0[] [role blue Max = 1.5[epsilon] (Mean = 0.635[epsilon])]]
  166. [template Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_factorials[] [role blue Max = 0.914[epsilon] (Mean = 0.175[epsilon])]]
  167. [template Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_factorials[] [role blue Max = 1.85[epsilon] (Mean = 0.566[epsilon])]]
  168. [template Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[] [role blue Max = 1.7[epsilon] (Mean = 0.66[epsilon])]]
  169. [template Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei[] [role blue Max = 1.43[epsilon] (Mean = 0.54[epsilon])]]
  170. [template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_E1[] [role blue Max = 0.988[epsilon] (Mean = 0.486[epsilon])]]
  171. [template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En_small_z_values[] [role blue Max = 2.62[epsilon] (Mean = 0.531[epsilon])]]
  172. [template Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En[] [role blue Max = 7.16[epsilon] (Mean = 1.85[epsilon])]]
  173. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc_inv_boost_Inverse_Erfc_Function[] [role blue Max = 1[epsilon] (Mean = 0.491[epsilon])]]
  174. [template Microsoft_Visual_C_version_14_1_Win32_double_erf_inv_boost_Inverse_Erf_Function[] [role blue Max = 1.09[epsilon] (Mean = 0.502[epsilon])]]
  175. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Large_Values[] [role blue Max = 1.14[epsilon] (Mean = 0.248[epsilon])]]
  176. [template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Large_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  177. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Medium_Values[] [role blue Max = 1.65[epsilon] (Mean = 0.373[epsilon])]]
  178. [template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Medium_Values[] [role blue Max = 1[epsilon] (Mean = 0.171[epsilon])]]
  179. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Small_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  180. [template Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Small_Values[] [role blue Max = 0.996[epsilon] (Mean = 0.182[epsilon])]]
  181. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 1.84[epsilon] (Mean = 0.331[epsilon]))]
  182. [template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  183. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 2.36[epsilon] (Mean = 0.539[epsilon]))]
  184. [template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 1.19[epsilon] (Mean = 0.244[epsilon]))]
  185. [template Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  186. [template Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 1.57[epsilon] (Mean = 0.317[epsilon]))]
  187. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.355[epsilon])]]
  188. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.637[epsilon] (Mean = 0.368[epsilon])]]
  189. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 2.87[epsilon] (Mean = 0.805[epsilon])]]
  190. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.862[epsilon] (Mean = 0.457[epsilon])]]
  191. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[] [role blue Max = 2.46[epsilon] (Mean = 0.657[epsilon])]]
  192. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 0.971[epsilon] (Mean = 0.464[epsilon])]]
  193. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[] [role blue Max = 2.86[epsilon] (Mean = 0.944[epsilon])]]
  194. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[] [role blue Max = 8.33[epsilon] (Mean = 0.971[epsilon])]]
  195. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 565[epsilon] (Mean = 102[epsilon])]]
  196. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[] [role blue Max = 1[epsilon] (Mean = 0.421[epsilon])]]
  197. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 1.71[epsilon] (Mean = 0.553[epsilon])]]
  198. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.3[epsilon] (Mean = 0.615[epsilon])]]
  199. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 2.23[epsilon] (Mean = 0.639[epsilon])]]
  200. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.31[epsilon] (Mean = 0.727[epsilon])]]
  201. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[] [role blue Max = 0.958[epsilon] (Mean = 0.408[epsilon])]]
  202. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[] [role blue Max = 0.915[epsilon] (Mean = 0.547[epsilon])]]
  203. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[] [role blue Max = 2.26[epsilon] (Mean = 0.631[epsilon])]]
  204. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[] [role blue Max = 0.919[epsilon] (Mean = 0.542[epsilon])]]
  205. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Half_integer_arguments[] [role blue Max = 0.78[epsilon] (Mean = 0.314[epsilon])]]
  206. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Integer_arguments[] [role blue Max = 0.992[epsilon] (Mean = 0.452[epsilon])]]
  207. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Values_near_0[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  208. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Negative_Values[] [role blue Max = 214[epsilon] (Mean = 16.1[epsilon])]]
  209. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_Zero[] [role blue Max = 0.953[epsilon] (Mean = 0.337[epsilon])]]
  210. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[] [role blue Max = 0.997[epsilon] (Mean = 0.527[epsilon])]]
  211. [template Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Large_Values[] [role blue Max = 0.98[epsilon] (Mean = 0.369[epsilon])]]
  212. [template Microsoft_Visual_C_version_14_1_Win32_double_cbrt__math_h__cbrt_Function[] (['<math.h>:] Max = 1.7[epsilon] (Mean = 0.565[epsilon]))]
  213. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_one_value_zero[] [role blue Max = 1.96[epsilon] (Mean = 0.674[epsilon])]]
  214. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_the_same[] [role blue Max = 1.96[epsilon] (Mean = 0.374[epsilon])]]
  215. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_All_values_the_same_or_zero[] [role blue Max = 1.06[epsilon] (Mean = 0.348[epsilon])]]
  216. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_0[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  217. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_Random_Data[] [role blue Max = 3.65[epsilon] (Mean = 0.929[epsilon])]]
  218. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0[] [role blue Max = 2.64[epsilon] (Mean = 0.894[epsilon])]]
  219. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y_z[] [role blue Max = 1.03[epsilon] (Mean = 0.418[epsilon])]]
  220. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0_y_z[] [role blue Max = 1.16[epsilon] (Mean = 0.497[epsilon])]]
  221. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y[] [role blue Max = 3.51[epsilon] (Mean = 0.816[epsilon])]]
  222. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_y_z[] [role blue Max = 16.5[epsilon] (Mean = 0.843[epsilon])]]
  223. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_Random_data[] [role blue Max = 2.16[epsilon] (Mean = 0.803[epsilon])]]
  224. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Equal_z_and_p[] [role blue Max = 16.1[epsilon] (Mean = 1.14[epsilon])]]
  225. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_2_Equal_Values[] [role blue Max = 214[epsilon] (Mean = 5.28[epsilon])]]
  226. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_3_Equal_Values[] [role blue Max = 39.9[epsilon] (Mean = 1.17[epsilon])]]
  227. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_4_Equal_Values[] [role blue Max = 1.03[epsilon] (Mean = 0.418[epsilon])]]
  228. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Random_data[] [role blue Max = 215[epsilon] (Mean = 7.66[epsilon])]]
  229. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rc_boost_RC_Random_data[] [role blue Max = 0.962[epsilon] (Mean = 0.407[epsilon])]]
  230. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_z_0[] [role blue Max = 1.89[epsilon] (Mean = 0.587[epsilon])]]
  231. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_0_y_z[] [role blue Max = 0.999[epsilon] (Mean = 0.407[epsilon])]]
  232. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[] [role blue Max = 1.21[epsilon] (Mean = 0.394[epsilon])]]
  233. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_z[] [role blue Max = 0.999[epsilon] (Mean = 0.34[epsilon])]]
  234. [template Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_Random_data[] [role blue Max = 2.02[epsilon] (Mean = 0.677[epsilon])]]
  235. [template Microsoft_Visual_C_version_14_1_Win32_double_cbrt_boost_cbrt_Function[] [role blue Max = 1.7[epsilon] (Mean = 0.565[epsilon])]]
  236. [template Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_large_arguments[] [role blue Max = 37.2[epsilon] (Mean = 7.4[epsilon])]]
  237. [template Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_small_arguments[] [role blue Max = 1[epsilon] (Mean = 0.369[epsilon])]]
  238. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Divergent_Values[] [role blue Max = 11.4[epsilon] (Mean = 2.19[epsilon])]]
  239. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Medium_Values[] [role blue Max = 96.5[epsilon] (Mean = 22.4[epsilon])]]
  240. [template Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Small_Values[] [role blue Max = 2.23[epsilon] (Mean = 1.14[epsilon])]]
  241. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Yn_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 2.49e+05[epsilon] (Mean = 8.14e+04[epsilon]))]
  242. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y1_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 1.86e+04[epsilon] (Mean = 6.2e+03[epsilon]))]
  243. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y0_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 5.37e+03[epsilon] (Mean = 1.81e+03[epsilon]))]
  244. [template Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_prime_boost_y_Random_Data[] [role blue Max = 296[epsilon] (Mean = 25.6[epsilon])]]
  245. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Random_Data[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.13e+03[epsilon])]]
  246. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Random_Data[] [role blue Max = 621[epsilon] (Mean = 36[epsilon])]]
  247. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[] [role blue Max = 5.95[epsilon] (Mean = 1.36[epsilon])]]
  248. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[] [role blue Max = 0.627[epsilon] (Mean = 0.237[epsilon])]]
  249. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[] [role blue Max = 23.7[epsilon] (Mean = 10.1[epsilon])]]
  250. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[] [role blue Max = 563[epsilon] (Mean = 178[epsilon])]]
  251. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[] [role blue Max = 3.08[epsilon] (Mean = 1.2[epsilon])]]
  252. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[] [role blue Max = 4.75[epsilon] (Mean = 1.75[epsilon])]]
  253. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[] [role blue Max = 563[epsilon] (Mean = 178[epsilon])]]
  254. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[] [role blue Max = 3.08[epsilon] (Mean = 1.2[epsilon])]]
  255. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[] [role blue Max = 4.75[epsilon] (Mean = 1.75[epsilon])]]
  256. [template Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_boost_y_Random_Data[] [role blue Max = 281[epsilon] (Mean = 31.1[epsilon])]]
  257. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Random_Data[] [role blue Max = 1.23e+03[epsilon] (Mean = 69.9[epsilon])]]
  258. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Random_Data[] [role blue Max = 117[epsilon] (Mean = 10.2[epsilon])]]
  259. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[] [role blue Max = 4.17[epsilon] (Mean = 1.24[epsilon])]]
  260. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[] [role blue Max = 0.682[epsilon] (Mean = 0.423[epsilon])]]
  261. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data[] [role blue Max = 7.89[epsilon] (Mean = 3.27[epsilon])]]
  262. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[] [role blue Max = 35[epsilon] (Mean = 11.9[epsilon])]]
  263. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[] [role blue Max = 4.75[epsilon] (Mean = 1.72[epsilon])]]
  264. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[] [role blue Max = 4.61[epsilon] (Mean = 2.29[epsilon])]]
  265. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Mathworld_Data[] [role blue Max = 35[epsilon] (Mean = 11.9[epsilon])]]
  266. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y1_Mathworld_Data[] [role blue Max = 4.75[epsilon] (Mean = 1.72[epsilon])]]
  267. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_Mathworld_Data[] [role blue Max = 4.61[epsilon] (Mean = 2.29[epsilon])]]
  268. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[] [role blue Max = 8.32[epsilon] (Mean = 1.65[epsilon])]]
  269. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[] [role blue Max = 9.67[epsilon] (Mean = 1.73[epsilon])]]
  270. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[] [role blue Max = 18.6[epsilon] (Mean = 11.8[epsilon])]]
  271. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[] [role blue Max = 3.94[epsilon] (Mean = 1.47[epsilon])]]
  272. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[] [role blue Max = 4.17[epsilon] (Mean = 1.75[epsilon])]]
  273. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.761[epsilon] (Mean = 0.444[epsilon])]]
  274. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
  275. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[] [role blue Max = 4.17[epsilon] (Mean = 1.75[epsilon])]]
  276. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[] [role blue Max = 0.761[epsilon] (Mean = 0.444[epsilon])]]
  277. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
  278. [template Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_prime_boost_Bessel_j_Random_Data[] [role blue Max = 307[epsilon] (Mean = 25.2[epsilon])]]
  279. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 379[epsilon] (Mean = 45.4[epsilon])]]
  280. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[] [role blue Max = 176[epsilon] (Mean = 9.75[epsilon])]]
  281. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[] [role blue Max = 6.34[epsilon] (Mean = 0.999[epsilon])]]
  282. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 2.9[epsilon] (Mean = 1.61[epsilon])]]
  283. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[] [role blue Max = 23.7[epsilon] (Mean = 8[epsilon])]]
  284. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 14[epsilon] (Mean = 6.13[epsilon])]]
  285. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 288[epsilon] (Mean = 129[epsilon])]]
  286. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.999[epsilon] (Mean = 0.627[epsilon])]]
  287. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 3.67[epsilon] (Mean = 1.74[epsilon])]]
  288. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.62[epsilon] (Mean = 2.55[epsilon])]]
  289. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 14[epsilon] (Mean = 6.13[epsilon])]]
  290. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 288[epsilon] (Mean = 129[epsilon])]]
  291. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 0.999[epsilon] (Mean = 0.627[epsilon])]]
  292. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 3.67[epsilon] (Mean = 1.74[epsilon])]]
  293. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 6.62[epsilon] (Mean = 2.55[epsilon])]]
  294. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[] [role blue Max = 8.33[epsilon] (Mean = 1.62[epsilon])]]
  295. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[] [role blue Max = 9.34[epsilon] (Mean = 1.7[epsilon])]]
  296. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[] [role blue Max = 59.8[epsilon] (Mean = 26.9[epsilon])]]
  297. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[] [role blue Max = 4.78[epsilon] (Mean = 2.19[epsilon])]]
  298. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[] [role blue Max = 3.63[epsilon] (Mean = 1.46[epsilon])]]
  299. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
  300. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.833[epsilon] (Mean = 0.552[epsilon])]]
  301. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[] [role blue Max = 3.63[epsilon] (Mean = 1.46[epsilon])]]
  302. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.39[epsilon])]]
  303. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[] [role blue Max = 0.833[epsilon] (Mean = 0.552[epsilon])]]
  304. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_[] (['<math.h>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
  305. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] (['<math.h>:] Max = 1.44e+07[epsilon] (Mean = 6.5e+06[epsilon]))]
  306. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 11.4[epsilon] (Mean = 4.15[epsilon]))]
  307. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] (['<math.h>:] [role red Max = 2.54e+08[epsilon] (Mean = 1.04e+08[epsilon]))]]
  308. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Integer_Version_[] (['<math.h>:] Max = 1.89[epsilon] (Mean = 0.988[epsilon]))]
  309. [template Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_boost_Bessel_j_Random_Data[] [role blue Max = 245[epsilon] (Mean = 16.3[epsilon])]]
  310. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 59.2[epsilon] (Mean = 8.67[epsilon])]]
  311. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data[] [role blue Max = 9.24[epsilon] (Mean = 1.17[epsilon])]]
  312. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[] [role blue Max = 17.5[epsilon] (Mean = 1.46[epsilon])]]
  313. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 9.31[epsilon] (Mean = 5.52[epsilon])]]
  314. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[] [role blue Max = 14.9[epsilon] (Mean = 3.89[epsilon])]]
  315. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 14.7[epsilon] (Mean = 5.4[epsilon])]]
  316. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.45e+04[epsilon])]]
  317. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.73[epsilon] (Mean = 0.976[epsilon])]]
  318. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 1e+07[epsilon] (Mean = 4.09e+06[epsilon])]]
  319. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 2.52[epsilon] (Mean = 1.2[epsilon])]]
  320. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 14.7[epsilon] (Mean = 5.4[epsilon])]]
  321. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 3.23e+04[epsilon] (Mean = 1.45e+04[epsilon])]]
  322. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 1.73[epsilon] (Mean = 0.976[epsilon])]]
  323. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 1e+07[epsilon] (Mean = 4.09e+06[epsilon])]]
  324. [template Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 2.52[epsilon] (Mean = 1.2[epsilon])]]
  325. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1_boost_powm1[] [role blue Max = 1.88[epsilon] (Mean = 0.49[epsilon])]]
  326. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_powm1_boost_powm1[] [role blue Max = 1.88[epsilon] (Mean = 0.49[epsilon])]]
  327. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sqrt1pm1_boost_sqrt1pm1[] [role blue Max = 1.54[epsilon] (Mean = 0.563[epsilon])]]
  328. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_i_boost_Spherical_Harmonics[] [role blue Max = 1.03e+04[epsilon] (Mean = 327[epsilon])]]
  329. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_r_boost_Spherical_Harmonics[] [role blue Max = 1.03e+04[epsilon] (Mean = 327[epsilon])]]
  330. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_ratio_boost_tgamma_ratios[] [role blue Max = 174[epsilon] (Mean = 61.2[epsilon])]]
  331. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[] [role blue Max = 0.853[epsilon] (Mean = 0.176[epsilon])]]
  332. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[] [role blue Max = 0.997[epsilon] (Mean = 0.4[epsilon])]]
  333. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[] [role blue Max = 1.62[epsilon] (Mean = 0.451[epsilon])]]
  334. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[] [role blue Max = 1.96[epsilon] (Mean = 0.677[epsilon])]]
  335. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[] [role blue Max = 18.3[epsilon] (Mean = 2.03[epsilon])]]
  336. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[] [role blue Max = 15.4[epsilon] (Mean = 2.09[epsilon])]]
  337. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.976[epsilon] (Mean = 0.28[epsilon])]]
  338. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[] [role blue Max = 0.976[epsilon] (Mean = 0.293[epsilon])]]
  339. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.991[epsilon] (Mean = 0.302[epsilon])]]
  340. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi[] [role blue Max = 0.996[epsilon] (Mean = 0.336[epsilon])]]
  341. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_trigamma_boost_Mathematica_Data[] [role blue Max = 1.28[epsilon] (Mean = 0.449[epsilon])]]
  342. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Integer_arguments[] [role blue Max = 28[epsilon] (Mean = 5.62[epsilon])]]
  343. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[] [role blue Max = 0.998[epsilon] (Mean = 0.508[epsilon])]]
  344. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[] [role blue Max = 0.995[epsilon] (Mean = 0.5[epsilon])]]
  345. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_less_than_1[] [role blue Max = 70.1[epsilon] (Mean = 17.1[epsilon])]]
  346. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_greater_than_1[] [role blue Max = 0.846[epsilon] (Mean = 0.0833[epsilon])]]
  347. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[] [role blue Max = 14.7[epsilon] (Mean = 6.59[epsilon])]]
  348. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[] [role blue Max = 283[epsilon] (Mean = 88.4[epsilon])]]
  349. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data[] [role blue Max = 176[epsilon] (Mean = 39.1[epsilon])]]
  350. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[] [role blue Max = 4.12[epsilon] (Mean = 1.95[epsilon])]]
  351. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[] [role blue Max = 463[epsilon] (Mean = 140[epsilon])]]
  352. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
  353. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[] [role blue Max = 1.95[epsilon] (Mean = 0.661[epsilon])]]
  354. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[] [role blue Max = 463[epsilon] (Mean = 140[epsilon])]]
  355. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[] [role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
  356. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[] [role blue Max = 1.95[epsilon] (Mean = 0.661[epsilon])]]
  357. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[] [role blue Max = 42.6[epsilon] (Mean = 20.2[epsilon])]]
  358. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[] [role blue Max = 336[epsilon] (Mean = 68.5[epsilon])]]
  359. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[] [role blue Max = 195[epsilon] (Mean = 37.1[epsilon])]]
  360. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[] [role blue Max = 2.89e+03[epsilon] (Mean = 914[epsilon])]]
  361. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[] [role blue Max = 701[epsilon] (Mean = 212[epsilon])]]
  362. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
  363. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
  364. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[] [role blue Max = 701[epsilon] (Mean = 212[epsilon])]]
  365. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[] [role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
  366. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[] [role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
  367. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data[] [role blue Max = 167[epsilon] (Mean = 33.2[epsilon])]]
  368. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 474[epsilon] (Mean = 64.5[epsilon])]]
  369. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[] [role blue Max = 279[epsilon] (Mean = 27.2[epsilon])]]
  370. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[] [role blue Max = 79.4[epsilon] (Mean = 16.2[epsilon])]]
  371. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 989[epsilon] (Mean = 495[epsilon])]]
  372. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[] [role blue Max = 42.5[epsilon] (Mean = 9.32[epsilon])]]
  373. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 1.29e+03[epsilon] (Mean = 355[epsilon])]]
  374. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
  375. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
  376. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 7.44[epsilon] (Mean = 3.31[epsilon])]]
  377. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 18.9[epsilon] (Mean = 6.72[epsilon])]]
  378. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 1.29e+03[epsilon] (Mean = 355[epsilon])]]
  379. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
  380. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
  381. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 7.44[epsilon] (Mean = 3.31[epsilon])]]
  382. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 18.9[epsilon] (Mean = 6.72[epsilon])]]
  383. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_boost_Bessel_j_Random_Data[] [role blue Max = 243[epsilon] (Mean = 33.7[epsilon])]]
  384. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[] [role blue Max = 785[epsilon] (Mean = 97.4[epsilon])]]
  385. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data[] [role blue Max = 260[epsilon] (Mean = 34[epsilon])]]
  386. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[] [role blue Max = 99.6[epsilon] (Mean = 22[epsilon])]]
  387. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[] [role blue Max = 607[epsilon] (Mean = 305[epsilon])]]
  388. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[] [role blue Max = 14.7[epsilon] (Mean = 4.22[epsilon])]]
  389. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[] [role blue Max = 463[epsilon] (Mean = 112[epsilon])]]
  390. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[] [role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
  391. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[] [role blue Max = 1.44[epsilon] (Mean = 0.637[epsilon])]]
  392. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[] [role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
  393. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
  394. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[] [role blue Max = 463[epsilon] (Mean = 112[epsilon])]]
  395. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[] [role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
  396. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[] [role blue Max = 1.44[epsilon] (Mean = 0.637[epsilon])]]
  397. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[] [role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
  398. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[] [role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
  399. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[] [role blue Max = 7.88[epsilon] (Mean = 1.47[epsilon])]]
  400. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[] [role blue Max = 4.55[epsilon] (Mean = 1.12[epsilon])]]
  401. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[] [role blue Max = 42.3[epsilon] (Mean = 21[epsilon])]]
  402. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[] [role blue Max = 5.21[epsilon] (Mean = 2.53[epsilon])]]
  403. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[] [role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
  404. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  405. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
  406. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[] [role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
  407. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  408. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[] [role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
  409. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[] [role blue Max = 7.95[epsilon] (Mean = 1.52[epsilon])]]
  410. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[] [role blue Max = 4.45[epsilon] (Mean = 1.19[epsilon])]]
  411. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[] [role blue Max = 58.7[epsilon] (Mean = 42.6[epsilon])]]
  412. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[] [role blue Max = 3.94[epsilon] (Mean = 2.34[epsilon])]]
  413. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[] [role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
  414. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[] [role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
  415. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  416. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[] [role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
  417. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[] [role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
  418. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[] [role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  419. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_boost_y_Random_Data[] [role blue Max = 234[epsilon] (Mean = 19.8[epsilon])]]
  420. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Random_Data[] [role blue Max = 2.08e+03[epsilon] (Mean = 149[epsilon])]]
  421. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Random_Data[] [role blue Max = 338[epsilon] (Mean = 27.5[epsilon])]]
  422. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[] [role blue Max = 10.8[epsilon] (Mean = 3.04[epsilon])]]
  423. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[] [role blue Max = 1.7[epsilon] (Mean = 1.33[epsilon])]]
  424. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data[] [role blue Max = 10.7[epsilon] (Mean = 5.1[epsilon])]]
  425. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[] [role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
  426. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[] [role blue Max = 6.33[epsilon] (Mean = 2.29[epsilon])]]
  427. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[] [role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
  428. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Mathworld_Data[] [role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
  429. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y1_Mathworld_Data[] [role blue Max = 6.33[epsilon] (Mean = 2.29[epsilon])]]
  430. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_Mathworld_Data[] [role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
  431. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_prime_boost_y_Random_Data[] [role blue Max = 158[epsilon] (Mean = 20.2[epsilon])]]
  432. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Random_Data[] [role blue Max = 1.16e+05[epsilon] (Mean = 5.28e+03[epsilon])]]
  433. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Random_Data[] [role blue Max = 2.35e+03[epsilon] (Mean = 136[epsilon])]]
  434. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[] [role blue Max = 23.8[epsilon] (Mean = 3.69[epsilon])]]
  435. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[] [role blue Max = 1.57[epsilon] (Mean = 1.24[epsilon])]]
  436. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[] [role blue Max = 42.5[epsilon] (Mean = 13.6[epsilon])]]
  437. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[] [role blue Max = 56[epsilon] (Mean = 21.3[epsilon])]]
  438. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[] [role blue Max = 34[epsilon] (Mean = 11.8[epsilon])]]
  439. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[] [role blue Max = 6.33[epsilon] (Mean = 3.14[epsilon])]]
  440. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[] [role blue Max = 56[epsilon] (Mean = 21.3[epsilon])]]
  441. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[] [role blue Max = 34[epsilon] (Mean = 11.8[epsilon])]]
  442. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[] [role blue Max = 6.33[epsilon] (Mean = 3.14[epsilon])]]
  443. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Divergent_Values[] [role blue Max = 18.8[epsilon] (Mean = 2.71[epsilon])]]
  444. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Medium_Values[] [role blue Max = 107[epsilon] (Mean = 24.5[epsilon])]]
  445. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Small_Values[] [role blue Max = 2.86[epsilon] (Mean = 1.22[epsilon])]]
  446. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_large_arguments[] [role blue Max = 53.2[epsilon] (Mean = 10.8[epsilon])]]
  447. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_small_arguments[] [role blue Max = 1.5[epsilon] (Mean = 0.339[epsilon])]]
  448. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt_boost_cbrt_Function[] [role blue Max = 1.34[epsilon] (Mean = 0.471[epsilon])]]
  449. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt__math_h__cbrt_Function[] (['<math.h>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
  450. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Half_integer_arguments[] [role blue Max = 0.906[epsilon] (Mean = 0.409[epsilon])]]
  451. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Integer_arguments[] [role blue Max = 0.888[epsilon] (Mean = 0.403[epsilon])]]
  452. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Values_near_0[] [role blue Max = 1[epsilon] (Mean = 0.592[epsilon])]]
  453. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Negative_Values[] [role blue Max = 180[epsilon] (Mean = 13[epsilon])]]
  454. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_Zero[] [role blue Max = 0.984[epsilon] (Mean = 0.361[epsilon])]]
  455. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[] [role blue Max = 1.31[epsilon] (Mean = 0.471[epsilon])]]
  456. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Large_Values[] [role blue Max = 1.39[epsilon] (Mean = 0.413[epsilon])]]
  457. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.473[epsilon])]]
  458. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[] [role blue Max = 0.887[epsilon] (Mean = 0.296[epsilon])]]
  459. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[] [role blue Max = 1.57[epsilon] (Mean = 0.561[epsilon])]]
  460. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[] [role blue Max = 0.94[epsilon] (Mean = 0.509[epsilon])]]
  461. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[] [role blue Max = 1[epsilon] (Mean = 0.283[epsilon])]]
  462. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 1.97[epsilon] (Mean = 0.629[epsilon])]]
  463. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.836[epsilon] (Mean = 0.469[epsilon])]]
  464. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[] [role blue Max = 2.05[epsilon] (Mean = 0.632[epsilon])]]
  465. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 0.656[epsilon] (Mean = 0.317[epsilon])]]
  466. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[] [role blue Max = 2.4[epsilon] (Mean = 0.677[epsilon])]]
  467. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 1.4[epsilon] (Mean = 0.575[epsilon])]]
  468. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[] [role blue Max = 3.7[epsilon] (Mean = 0.892[epsilon])]]
  469. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[] [role blue Max = 4.49[epsilon] (Mean = 0.885[epsilon])]]
  470. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[] [role blue Max = 475[epsilon] (Mean = 86.3[epsilon])]]
  471. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.334[epsilon])]]
  472. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.27[epsilon] (Mean = 0.735[epsilon])]]
  473. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[] [role blue Max = 2.51[epsilon] (Mean = 0.883[epsilon])]]
  474. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[] [role blue Max = 1.3[epsilon] (Mean = 0.813[epsilon])]]
  475. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values[] [role blue Max = 1.62[epsilon] (Mean = 0.383[epsilon])]]
  476. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function[] [role blue Max = 1.08[epsilon] (Mean = 0.403[epsilon])]]
  477. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_inv_boost_Inverse_Erf_Function[] [role blue Max = 1.08[epsilon] (Mean = 0.395[epsilon])]]
  478. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Large_Values[] [role blue Max = 1.57[epsilon] (Mean = 0.564[epsilon])]]
  479. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Large_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  480. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Medium_Values[] [role blue Max = 1.76[epsilon] (Mean = 0.38[epsilon])]]
  481. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Medium_Values[] [role blue Max = 1.5[epsilon] (Mean = 0.197[epsilon])]]
  482. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Small_Values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  483. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Small_Values[] [role blue Max = 0.925[epsilon] (Mean = 0.193[epsilon])]]
  484. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 4.91[epsilon] (Mean = 1.54[epsilon]))]
  485. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Large_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  486. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 2.81[epsilon] (Mean = 0.739[epsilon]))]
  487. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Medium_Values[] (['<math.h>:] Max = 0.921[epsilon] (Mean = 0.071[epsilon]))]
  488. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  489. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Small_Values[] (['<math.h>:] Max = 0.944[epsilon] (Mean = 0.194[epsilon]))]
  490. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range[] [role blue Max = 1.98[epsilon] (Mean = 0.575[epsilon])]]
  491. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[] [role blue Max = 1.72[epsilon] (Mean = 0.607[epsilon])]]
  492. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei[] [role blue Max = 5.05[epsilon] (Mean = 0.835[epsilon])]]
  493. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_E1[] [role blue Max = 0.965[epsilon] (Mean = 0.408[epsilon])]]
  494. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En_small_z_values[] [role blue Max = 1.99[epsilon] (Mean = 0.559[epsilon])]]
  495. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En[] [role blue Max = 9.97[epsilon] (Mean = 2.13[epsilon])]]
  496. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_55[] (['<math.h>:] Max = 0.821[epsilon] (Mean = 0.674[epsilon]))]
  497. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_55[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  498. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_10[] (['<math.h>:] Max = 3.04[epsilon] (Mean = 1.01[epsilon]))]
  499. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_10[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  500. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_2[] (['<math.h>:] Max = 0.598[epsilon] (Mean = 0.235[epsilon]))]
  501. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_2[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  502. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_1[] (['<math.h>:] Max = 1.71[epsilon] (Mean = 0.581[epsilon]))]
  503. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_1[] (['<math.h>:] Max = 1[epsilon] (Mean = 0.175[epsilon]))]
  504. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_0[] (['<math.h>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
  505. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_0[] (['<math.h>:] Max = 0.5[epsilon] (Mean = 0.0791[epsilon]))]
  506. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__factorials[] (['<math.h>:] Max = 1.36[epsilon] (Mean = 0.476[epsilon]))]
  507. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__factorials[] (['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  508. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma1pm1_boost_tgamma1pm1_dz_[] [role blue Max = 6.61[epsilon] (Mean = 0.84[epsilon])]]
  509. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_55[] [role blue Max = 1.59[epsilon] (Mean = 0.587[epsilon])]]
  510. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_55[] [role blue Max = 98.5[epsilon] (Mean = 53.4[epsilon])]]
  511. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_10[] [role blue Max = 3.81[epsilon] (Mean = 1.01[epsilon])]]
  512. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_10[] [role blue Max = 1.75[epsilon] (Mean = 0.819[epsilon])]]
  513. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_2[] [role blue Max = 0.878[epsilon] (Mean = 0.242[epsilon])]]
  514. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_2[] [role blue Max = 5.01[epsilon] (Mean = 1.89[epsilon])]]
  515. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_1[] [role blue Max = 0.948[epsilon] (Mean = 0.36[epsilon])]]
  516. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_1[] [role blue Max = 3.01[epsilon] (Mean = 1.06[epsilon])]]
  517. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_0[] [role blue Max = 1.42[epsilon] (Mean = 0.566[epsilon])]]
  518. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_0[] [role blue Max = 2[epsilon] (Mean = 0.647[epsilon])]]
  519. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_factorials[] [role blue Max = 0.991[epsilon] (Mean = 0.383[epsilon])]]
  520. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_factorials[] [role blue Max = 172[epsilon] (Mean = 41[epsilon])]]
  521. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_hermite_boost_Hermite_Polynomials[] [role blue Max = 6.24[epsilon] (Mean = 2.07[epsilon])]]
  522. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[] [role blue Max = 3.82[epsilon] (Mean = 0.608[epsilon])]]
  523. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.89[epsilon] (Mean = 0.887[epsilon])]]
  524. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 107[epsilon] (Mean = 17.1[epsilon])]]
  525. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 44.5[epsilon] (Mean = 10.1[epsilon])]]
  526. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 103[epsilon] (Mean = 17.4[epsilon])]]
  527. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[] [role blue Max = 51.8[epsilon] (Mean = 11[epsilon])]]
  528. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 6.31e+04[epsilon] (Mean = 2.04e+03[epsilon])]]
  529. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 4.98e+04[epsilon] (Mean = 2.07e+03[epsilon])]]
  530. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 1.04e+05[epsilon] (Mean = 5.46e+03[epsilon])]]
  531. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[] [role blue Max = 6.86e+04[epsilon] (Mean = 2.79e+03[epsilon])]]
  532. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 132[epsilon] (Mean = 19.8[epsilon])]]
  533. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 124[epsilon] (Mean = 18.4[epsilon])]]
  534. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 97.6[epsilon] (Mean = 24.3[epsilon])]]
  535. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[] [role blue Max = 174[epsilon] (Mean = 25[epsilon])]]
  536. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 13.8[epsilon] (Mean = 2.68[epsilon])]]
  537. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 21.3[epsilon] (Mean = 2.75[epsilon])]]
  538. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 11.2[epsilon] (Mean = 2.94[epsilon])]]
  539. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[] [role blue Max = 18.7[epsilon] (Mean = 3.19[epsilon])]]
  540. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inv_boost_Inverse_incomplete_beta[] [role blue Max = 5.05e+04[epsilon] (Mean = 3.33e+03[epsilon])]]
  541. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inv_boost_Inverse_incomplete_beta[] [role blue Max = 4.07e+04[epsilon] (Mean = 2.86e+03[epsilon])]]
  542. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_invb_boost_Inverse_incomplete_beta[] [role blue Max = 369[epsilon] (Mean = 22.6[epsilon])]]
  543. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_invb_boost_Inverse_incomplete_beta[] [role blue Max = 407[epsilon] (Mean = 24.4[epsilon])]]
  544. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inva_boost_Inverse_incomplete_beta[] [role blue Max = 315[epsilon] (Mean = 23.7[epsilon])]]
  545. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inva_boost_Inverse_incomplete_beta[] [role blue Max = 438[epsilon] (Mean = 31.3[epsilon])]]
  546. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 71.6[epsilon] (Mean = 9.47[epsilon])]]
  547. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 54.7[epsilon] (Mean = 6.16[epsilon])]]
  548. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 84.7[epsilon] (Mean = 17.5[epsilon])]]
  549. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[] [role blue Max = 79.6[epsilon] (Mean = 20.9[epsilon])]]
  550. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_large_values[] [role blue Max = 3.02e+04[epsilon] (Mean = 1.91e+03[epsilon])]]
  551. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_large_values[] [role blue Max = 1.15e+04[epsilon] (Mean = 733[epsilon])]]
  552. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_small_values[] [role blue Max = 2[epsilon] (Mean = 0.461[epsilon])]]
  553. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_small_values[] [role blue Max = 2.45[epsilon] (Mean = 0.819[epsilon])]]
  554. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_small_values[] [role blue Max = 1.97[epsilon] (Mean = 0.558[epsilon])]]
  555. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values[] [role blue Max = 2.13[epsilon] (Mean = 0.717[epsilon])]]
  556. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_medium_values[] [role blue Max = 239[epsilon] (Mean = 30.2[epsilon])]]
  557. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_medium_values[] [role blue Max = 199[epsilon] (Mean = 26.6[epsilon])]]
  558. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_medium_values[] [role blue Max = 363[epsilon] (Mean = 63.8[epsilon])]]
  559. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[] [role blue Max = 412[epsilon] (Mean = 95.5[epsilon])]]
  560. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 8.98e+03[epsilon] (Mean = 877[epsilon])]]
  561. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[] [role blue Max = 1.09e+04[epsilon] (Mean = 1.3e+03[epsilon])]]
  562. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  563. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[] [role blue Max = 0.509[epsilon] (Mean = 0.0447[epsilon])]]
  564. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 6.2[epsilon] (Mean = 0.683[epsilon])]]
  565. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[] [role blue Max = 1.89[epsilon] (Mean = 0.466[epsilon])]]
  566. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 7.86[epsilon] (Mean = 1.24[epsilon])]]
  567. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[] [role blue Max = 4.08[epsilon] (Mean = 1.12[epsilon])]]
  568. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.82e+04[epsilon] (Mean = 1.79e+03[epsilon])]]
  569. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.97e+04[epsilon] (Mean = 1.9e+03[epsilon])]]
  570. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[] [role blue Max = 2.45e+04[epsilon] (Mean = 1.51e+03[epsilon])]]
  571. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 3.75e+03[epsilon] (Mean = 293[epsilon])]]
  572. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 675[epsilon] (Mean = 86.8[epsilon])]]
  573. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[] [role blue Max = 109[epsilon] (Mean = 7.38[epsilon])]]
  574. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 22.4[epsilon] (Mean = 0.763[epsilon])]]
  575. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 10.4[epsilon] (Mean = 0.602[epsilon])]]
  576. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[] [role blue Max = 1.99[epsilon] (Mean = 0.347[epsilon])]]
  577. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.53[epsilon] (Mean = 0.481[epsilon])]]
  578. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 1.68[epsilon] (Mean = 0.454[epsilon])]]
  579. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[] [role blue Max = 2.01[epsilon] (Mean = 0.593[epsilon])]]
  580. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 49[epsilon] (Mean = 14[epsilon])]]
  581. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 71.6[epsilon] (Mean = 19.4[epsilon])]]
  582. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[] [role blue Max = 341[epsilon] (Mean = 80.7[epsilon])]]
  583. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[] [role blue Max = 3.05[epsilon] (Mean = 1.13[epsilon])]]
  584. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[] [role blue Max = 3.96[epsilon] (Mean = 1.06[epsilon])]]
  585. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[] [role blue Max = 1.66[epsilon] (Mean = 0.48[epsilon])]]
  586. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[] [role blue Max = 167[epsilon] (Mean = 6.38[epsilon])]]
  587. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_x__boost_Laguerre_Polynomials[] [role blue Max = 1.39e+04[epsilon] (Mean = 828[epsilon])]]
  588. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 77.7[epsilon] (Mean = 5.59[epsilon])]]
  589. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 5.98e+03[epsilon] (Mean = 478[epsilon])]]
  590. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 699[epsilon] (Mean = 59.6[epsilon])]]
  591. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 50.9[epsilon] (Mean = 8.98[epsilon])]]
  592. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 69.2[epsilon] (Mean = 9.58[epsilon])]]
  593. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1__math_h__Random_test_data[] (['<math.h>:] Max = 0.996[epsilon] (Mean = 0.426[epsilon]))]
  594. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p__math_h__Random_test_data[] (['<math.h>:] Max = 0.818[epsilon] (Mean = 0.249[epsilon]))]
  595. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1_boost_Random_test_data[] [role blue Max = 1.31[epsilon] (Mean = 0.428[epsilon])]]
  596. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p_boost_Random_test_data[] [role blue Max = 2.3[epsilon] (Mean = 0.66[epsilon])]]
  597. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[] [role blue Max = 3.56e+03[epsilon] (Mean = 707[epsilon])]]
  598. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[] [role blue Max = 2.57e+04[epsilon] (Mean = 4.45e+03[epsilon])]]
  599. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 554[epsilon] (Mean = 57.2[epsilon])]]
  600. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[] [role blue Max = 832[epsilon] (Mean = 38.1[epsilon])]]
  601. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 5.1e+03[epsilon] (Mean = 577[epsilon])]]
  602. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[] [role blue Max = 6.17e+03[epsilon] (Mean = 677[epsilon])]]
  603. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 171[epsilon] (Mean = 22.8[epsilon])]]
  604. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[] [role blue Max = 115[epsilon] (Mean = 13.9[epsilon])]]
  605. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[] [role blue Max = 9.79e+05[epsilon] (Mean = 1.97e+05[epsilon])]]
  606. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[] [role blue Max = 5.24e+05[epsilon] (Mean = 1.47e+05[epsilon])]]
  607. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 10.5[epsilon] (Mean = 2.39[epsilon])]]
  608. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[] [role blue Max = 9.15[epsilon] (Mean = 2.13[epsilon])]]
  609. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T[] [role blue Max = 340[epsilon] (Mean = 43.2[epsilon])]]
  610. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T[] [role blue Max = 145[epsilon] (Mean = 30.9[epsilon])]]
  611. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_large_and_diverse_values_[] [role blue Max = 24.5[epsilon] (Mean = 1.39[epsilon])]]
  612. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_medium_small_values_[] [role blue Max = 3.34[epsilon] (Mean = 0.911[epsilon])]]
  613. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[] [role blue Max = 145[epsilon] (Mean = 55.9[epsilon])]]
  614. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_small_arguments[] [role blue Max = 3.33[epsilon] (Mean = 0.75[epsilon])]]
  615. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments[] [role blue Max = 155[epsilon] (Mean = 96.4[epsilon])]]
  616. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_negative_arguments[] [role blue Max = 269[epsilon] (Mean = 88.4[epsilon])]]
  617. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_arguments[] [role blue Max = 11.1[epsilon] (Mean = 0.848[epsilon])]]
  618. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data[] [role blue Max = 34.3[epsilon] (Mean = 7.65[epsilon])]]
  619. [template Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1__math_h__powm1[] (['<math.h>:] Max = 1.88[epsilon] (Mean = 0.49[epsilon]))]
  620. [template GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 121[epsilon] (Mean = 6.75[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values And other failures.])]
  621. [template GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Large_Values[] (['GSL 2.1:] Max = 4.6e+03[epsilon] (Mean = 366[epsilon]))]
  622. [template GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Large_Values[] (['GSL 2.1:] Max = 300[epsilon] (Mean = 33.2[epsilon]))]
  623. [template GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 46.4[epsilon] (Mean = 7.46[epsilon]))]
  624. [template GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Small_Values[] (['GSL 2.1:] Max = 211[epsilon] (Mean = 20.4[epsilon]))]
  625. [template GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values[] (['<cmath>:] Max = 175[epsilon] (Mean = 9.36[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values And other failures.])]
  626. [template GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Large_Values[] (['<cmath>:] Max = 343[epsilon] (Mean = 32.1[epsilon]))]
  627. [template GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Small_Values[] (['<cmath>:] Max = 124[epsilon] (Mean = 13.2[epsilon]))]
  628. [template GNU_C_version_7_1_0_linux_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 175[epsilon] (Mean = 9.88[epsilon])]]
  629. [template GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 5.98e+03[epsilon] (Mean = 478[epsilon])]]
  630. [template GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 699[epsilon] (Mean = 59.6[epsilon])]]
  631. [template GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 50.9[epsilon] (Mean = 9[epsilon])]]
  632. [template GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 69.2[epsilon] (Mean = 9.58[epsilon])]]
  633. [template GNU_C_version_7_1_0_linux_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values[] [role blue Max = 0.999[epsilon] (Mean = 0.05[epsilon])]]
  634. [template GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 2.49[epsilon] (Mean = 0.202[epsilon])]]
  635. [template GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Large_Values[] [role blue Max = 0.632[epsilon] (Mean = 0.0693[epsilon])]]
  636. [template GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 0.612[epsilon] (Mean = 0.0517[epsilon])]]
  637. [template GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Small_Values[] [role blue Max = 0.732[epsilon] (Mean = 0.0619[epsilon])]]
  638. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] [role red Max = 3.77e+168[epsilon] (Mean = 2.39e+168[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]]
  639. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Random_Data[](['Rmath 3.2.3:] [role red Max = 4.28e+08[epsilon] (Mean = 2.85e+07[epsilon]))]]
  640. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Random_Data[](['Rmath 3.2.3:] Max = 7.37[epsilon] (Mean = 2.4[epsilon]))]
  641. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data[](['Rmath 3.2.3:] Max = 3.53[epsilon] (Mean = 1.39[epsilon]))]
  642. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.73[epsilon] (Mean = 0.601[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
  643. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.53[epsilon] (Mean = 0.483[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_ And other failures.])]
  644. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.52[epsilon] (Mean = 0.622[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_ And other failures.])]
  645. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.73[epsilon] (Mean = 0.601[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data And other failures.])]
  646. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.53[epsilon] (Mean = 0.483[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data And other failures.])]
  647. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.52[epsilon] (Mean = 0.622[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data And other failures.])]
  648. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data_Tricky_large_values_[](['Rmath 3.2.3:] Max = 71.6[epsilon] (Mean = 11.7[epsilon]))]
  649. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data[](['Rmath 3.2.3:] Max = 6.74[epsilon] (Mean = 1.3[epsilon]))]
  650. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Random_Data[](['Rmath 3.2.3:] Max = 3.93[epsilon] (Mean = 1.22[epsilon]))]
  651. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 5.9[epsilon] (Mean = 3.76[epsilon]))]
  652. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data And other failures.])]]
  653. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
  654. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['Rmath 3.2.3:] Max = 2.93e+06[epsilon] (Mean = 1.7e+06[epsilon]))]
  655. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.946[epsilon] (Mean = 0.39[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_ And other failures.])]
  656. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['Rmath 3.2.3:] Max = 1.04e+07[epsilon] (Mean = 4.29e+06[epsilon]))]
  657. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_ And other failures.])]
  658. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data And other failures.])]]
  659. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_[](['Rmath 3.2.3:] Max = 2.93e+06[epsilon] (Mean = 1.7e+06[epsilon]))]
  660. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.946[epsilon] (Mean = 0.39[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data And other failures.])]
  661. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_[](['Rmath 3.2.3:] Max = 1.04e+07[epsilon] (Mean = 4.29e+06[epsilon]))]
  662. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data And other failures.])]
  663. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Random_Data[](['Rmath 3.2.3:] Max = 7.37[epsilon] (Mean = 1.49[epsilon]))]
  664. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Random_Data[](['Rmath 3.2.3:] Max = 7.47[epsilon] (Mean = 1.34[epsilon]))]
  665. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 84.6[epsilon] (Mean = 37.8[epsilon]))]
  666. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data[](['Rmath 3.2.3:] Max = 3.15[epsilon] (Mean = 1.35[epsilon]))]
  667. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_Kn_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 8.48[epsilon] (Mean = 2.98[epsilon]))]
  668. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.516[epsilon]))]
  669. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 0.833[epsilon] (Mean = 0.601[epsilon]))]
  670. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Mathworld_Data[](['Rmath 3.2.3:] Max = 8.48[epsilon] (Mean = 2.98[epsilon]))]
  671. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K1_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.516[epsilon]))]
  672. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K0_Mathworld_Data[](['Rmath 3.2.3:] Max = 0.833[epsilon] (Mean = 0.601[epsilon]))]
  673. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Random_Data[](['Rmath 3.2.3:] Max = 1.79e+05[epsilon] (Mean = 9.64e+03[epsilon]))]
  674. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Random_Data[](['Rmath 3.2.3:] Max = 691[epsilon] (Mean = 67.9[epsilon]))]
  675. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_and_Y1_Random_Data[](['Rmath 3.2.3:] Max = 83[epsilon] (Mean = 14.2[epsilon]))]
  676. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data_large_values_[](['Rmath 3.2.3:] Max = 0.682[epsilon] (Mean = 0.335[epsilon]))]
  677. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data[](['Rmath 3.2.3:] Max = 243[epsilon] (Mean = 73.9[epsilon]))]
  678. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Yn_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 1.24e+04[epsilon] (Mean = 4e+03[epsilon]))]
  679. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y1_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 193[epsilon] (Mean = 64.4[epsilon]))]
  680. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y0_Mathworld_Data_Integer_Version_[](['Rmath 3.2.3:] Max = 167[epsilon] (Mean = 56.5[epsilon]))]
  681. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Mathworld_Data[](['Rmath 3.2.3:] Max = 1.24e+04[epsilon] (Mean = 4e+03[epsilon]))]
  682. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y1_Mathworld_Data[](['Rmath 3.2.3:] Max = 193[epsilon] (Mean = 64.4[epsilon]))]
  683. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_Mathworld_Data[](['Rmath 3.2.3:] Max = 167[epsilon] (Mean = 56.5[epsilon]))]
  684. [template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Divergent_Values[](['Rmath 3.2.3:] Max = 176[epsilon] (Mean = 28[epsilon]))]
  685. [template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 1.09e+03[epsilon] (Mean = 265[epsilon]))]
  686. [template GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 1.14[epsilon] (Mean = 0.574[epsilon]))]
  687. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Half_integer_arguments[](['Rmath 3.2.3:] Max = 46.2[epsilon] (Mean = 7.24[epsilon]))]
  688. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Integer_arguments[](['Rmath 3.2.3:] Max = 4.33[epsilon] (Mean = 0.982[epsilon]))]
  689. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Values_near_0[](['Rmath 3.2.3:] Max = 3.58e+05[epsilon] (Mean = 1.6e+05[epsilon]))]
  690. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Negative_Values[](['Rmath 3.2.3:] Max = 4.6e+04[epsilon] (Mean = 3.94e+03[epsilon]))]
  691. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_Zero[](['Rmath 3.2.3:] Max = 1.17[epsilon] (Mean = 0.564[epsilon]))]
  692. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_the_Positive_Root[](['Rmath 3.2.3:] Max = 2.02e+03[epsilon] (Mean = 256[epsilon]))]
  693. [template GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Large_Values[](['Rmath 3.2.3:] Max = 1.18[epsilon] (Mean = 0.331[epsilon]))]
  694. [template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values[](['Rmath 3.2.3:] Max = 84.6[epsilon] (Mean = 18[epsilon]))]
  695. [template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values[](['Rmath 3.2.3:] Max = 62.2[epsilon] (Mean = 8.95[epsilon]))]
  696. [template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values[](['Rmath 3.2.3:] Max = 889[epsilon] (Mean = 68.4[epsilon]))]
  697. [template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values[](['Rmath 3.2.3:] Max = 574[epsilon] (Mean = 49.4[epsilon]))]
  698. [template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 204[epsilon] (Mean = 25.8[epsilon]))]
  699. [template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values[](['Rmath 3.2.3:] Max = 232[epsilon] (Mean = 27.9[epsilon]))]
  700. [template GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 22.4[epsilon] (Mean = 3.67[epsilon]))]
  701. [template GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values[](['Rmath 3.2.3:] Max = 22.9[epsilon] (Mean = 3.35[epsilon]))]
  702. [template GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta[](['Rmath 3.2.3:] [role red Max = 3.01e+132[epsilon] (Mean = 8.65e+130[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta And other failures.])]]
  703. [template GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta[](['Rmath 3.2.3:] [role red Max = 1.14e+121[epsilon] (Mean = 3.28e+119[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta And other failures.])]]
  704. [template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values[](['Rmath 3.2.3:] Max = 66.2[epsilon] (Mean = 12.2[epsilon]))]
  705. [template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values[](['Rmath 3.2.3:] Max = 138[epsilon] (Mean = 16.9[epsilon]))]
  706. [template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_large_values[](['Rmath 3.2.3:] Max = 1.11e+03[epsilon] (Mean = 67.5[epsilon]))]
  707. [template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_large_values[](['Rmath 3.2.3:] Max = 1.02e+03[epsilon] (Mean = 62.7[epsilon]))]
  708. [template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_small_values[](['Rmath 3.2.3:] Max = 1.01[epsilon] (Mean = 0.306[epsilon]))]
  709. [template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_small_values[](['Rmath 3.2.3:] Max = 65.6[epsilon] (Mean = 11[epsilon]))]
  710. [template GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_medium_values[](['Rmath 3.2.3:] Max = 389[epsilon] (Mean = 44[epsilon]))]
  711. [template GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_medium_values[](['Rmath 3.2.3:] Max = 131[epsilon] (Mean = 12.7[epsilon]))]
  712. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values[](['Rmath 3.2.3:] Max = 415[epsilon] (Mean = 48.7[epsilon]))]
  713. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values[](['Rmath 3.2.3:] Max = 547[epsilon] (Mean = 61.6[epsilon]))]
  714. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values[](['Rmath 3.2.3:] Max = 0.894[epsilon] (Mean = 0.106[epsilon]))]
  715. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values[](['Rmath 3.2.3:] Max = 0.816[epsilon] (Mean = 0.0874[epsilon]))]
  716. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values[](['Rmath 3.2.3:] Max = 4.66[epsilon] (Mean = 0.792[epsilon]))]
  717. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values[](['Rmath 3.2.3:] Max = 4.88[epsilon] (Mean = 0.868[epsilon]))]
  718. [template GNU_C_version_7_1_0_linux_double_expm1_Rmath_3_2_3_Random_test_data[](['Rmath 3.2.3:] Max = 0.793[epsilon] (Mean = 0.126[epsilon]))]
  719. [template GNU_C_version_7_1_0_linux_double_log1p_Rmath_3_2_3_Random_test_data[](['Rmath 3.2.3:] Max = 0.846[epsilon] (Mean = 0.153[epsilon]))]
  720. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters And other failures.])]]
  721. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters[](['Rmath 3.2.3:] [role red Max = 1.01e+36[epsilon] (Mean = 1.19e+35[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters And other failures.])]]
  722. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters[](['Rmath 3.2.3:] [role red Max = 7.5e+97[epsilon] (Mean = 1.37e+96[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters And other failures.])]]
  723. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters[](['Rmath 3.2.3:] [role red Max = 1.46e+26[epsilon] (Mean = 3.5e+24[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters And other failures.])]]
  724. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters And other failures.])]]
  725. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[](['Rmath 3.2.3:] [role red Max = 3.27e+08[epsilon] (Mean = 2.23e+07[epsilon]))]]
  726. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters And other failures.])]]
  727. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[](['Rmath 3.2.3:] Max = 727[epsilon] (Mean = 121[epsilon]))]
  728. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_large_parameters_[](['Rmath 3.2.3:] Max = 2.24[epsilon] (Mean = 0.945[epsilon]))]
  729. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_large_parameters_[](['Rmath 3.2.3:] Max = 2.46[epsilon] (Mean = 0.657[epsilon]))]
  730. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_small_non_centrality_[](['Rmath 3.2.3:] Max = 1.87e+03[epsilon] (Mean = 263[epsilon]))]
  731. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_small_non_centrality_[](['Rmath 3.2.3:] Max = 2.09e+03[epsilon] (Mean = 244[epsilon]))]
  732. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T[](['Rmath 3.2.3:] [role red Max = 6.19e+15[epsilon] (Mean = 6.72e+14[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T And other failures.])]]
  733. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T[](['Rmath 3.2.3:] [role red Max = 5.28e+15[epsilon] (Mean = 8.49e+14[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T And other failures.])]]
  734. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases[](['Rmath 3.2.3:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases And other failures.])]]
  735. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_small_arguments[](['Rmath 3.2.3:] Max = 106[epsilon] (Mean = 20[epsilon]))]
  736. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments And other failures.])]
  737. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments And other failures.])]
  738. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments[](['Rmath 3.2.3:] [role red Max = 1.71e+56[epsilon] (Mean = 1.01e+55[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments And other failures.])]]
  739. [template GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data[](['Rmath 3.2.3:] Max = 108[epsilon] (Mean = 15.2[epsilon]))]
  740. [template GNU_C_version_7_1_0_linux_double_boost_math_powm1_Rmath_3_2_3_powm1[](['Rmath 3.2.3:] Max = 1.06[epsilon] (Mean = 0.425[epsilon]))]
  741. [template GNU_C_version_7_1_0_linux_double_trigamma_Rmath_3_2_3_Mathematica_Data[](['Rmath 3.2.3:] Max = 1.34e+04[epsilon] (Mean = 1.51e+03[epsilon]))]
  742. [template GNU_C_version_7_1_0_linux_double_trigamma_GSL_2_1_Mathematica_Data[](['GSL 2.1:] Max = 1.34e+04[epsilon] (Mean = 1.49e+03[epsilon]))]
  743. [template GNU_C_version_7_1_0_linux_long_double_trigamma_boost_Mathematica_Data[][role blue Max = 1.28[epsilon] (Mean = 0.449[epsilon])]]
  744. [template GNU_C_version_7_1_0_linux_double_trigamma_boost_Mathematica_Data[][role blue Max = 0.998[epsilon] (Mean = 0.105[epsilon])]]
  745. [template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Integer_arguments[](['GSL 2.1:] Max = 3.75[epsilon] (Mean = 1.1[epsilon]))]
  746. [template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_less_than_1[](['GSL 2.1:] Max = 0.991[epsilon] (Mean = 0.28[epsilon]))]
  747. [template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_greater_than_1[](['GSL 2.1:] Max = 7.73[epsilon] (Mean = 4.07[epsilon]))]
  748. [template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_less_than_1[](['GSL 2.1:] Max = 137[epsilon] (Mean = 13.8[epsilon]))]
  749. [template GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_greater_than_1[](['GSL 2.1:] Max = 8.69[epsilon] (Mean = 1.03[epsilon]))]
  750. [template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Integer_arguments[][role blue Max = 9[epsilon] (Mean = 3.06[epsilon])]]
  751. [template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[][role blue Max = 0.998[epsilon] (Mean = 0.508[epsilon])]]
  752. [template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[][role blue Max = 0.995[epsilon] (Mean = 0.5[epsilon])]]
  753. [template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_less_than_1[][role blue Max = 7.03[epsilon] (Mean = 2.93[epsilon])]]
  754. [template GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_greater_than_1[][role blue Max = 0.846[epsilon] (Mean = 0.0833[epsilon])]]
  755. [template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Integer_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  756. [template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_less_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  757. [template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  758. [template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_less_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  759. [template GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_greater_than_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  760. [template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Integer_arguments[](['<cmath>:] Max = 70.3[epsilon] (Mean = 17.4[epsilon]))]
  761. [template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_less_than_1[](['<cmath>:] Max = 8.53e+06[epsilon] (Mean = 1.87e+06[epsilon]))]
  762. [template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_greater_than_1[](['<cmath>:] Max = 1.9e+06[epsilon] (Mean = 5.11e+05[epsilon]))]
  763. [template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_less_than_1[](['<cmath>:] Max = 538[epsilon] (Mean = 59.3[epsilon]))]
  764. [template GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_greater_than_1[](['<cmath>:] Max = 5.45[epsilon] (Mean = 1[epsilon]))]
  765. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 37[epsilon] (Mean = 18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]
  766. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data[](['GSL 2.1:] Max = 6.18e+03[epsilon] (Mean = 1.55e+03[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data And other failures.])]
  767. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data[](['GSL 2.1:] Max = 261[epsilon] (Mean = 53.2[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data And other failures.])]
  768. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data[](['GSL 2.1:] Max = 5.95[epsilon] (Mean = 2.08[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data And other failures.])]
  769. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 5.15[epsilon] (Mean = 2.13[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
  770. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.82[epsilon] (Mean = 0.456[epsilon]))]
  771. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.79[epsilon] (Mean = 0.482[epsilon]))]
  772. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data[](['GSL 2.1:] Max = 2.31[epsilon] (Mean = 0.838[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data And other failures.])]
  773. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data[](['GSL 2.1:] Max = 128[epsilon] (Mean = 41[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data And other failures.])]
  774. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data[](['GSL 2.1:] Max = 270[epsilon] (Mean = 91.6[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data And other failures.])]
  775. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_[](['<cmath>:] Max = 118[epsilon] (Mean = 57.2[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_ And other failures.])]
  776. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data[](['<cmath>:] Max = 1.05e+03[epsilon] (Mean = 224[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data And other failures.])]
  777. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Random_Data[](['<cmath>:] Max = 645[epsilon] (Mean = 132[epsilon]))]
  778. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data[](['<cmath>:] Max = 616[epsilon] (Mean = 221[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data And other failures.])]
  779. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 430[epsilon] (Mean = 163[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_ And other failures.])]
  780. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 5[epsilon] (Mean = 2.15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_ And other failures.])]
  781. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 8.49[epsilon] (Mean = 3.46[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_ And other failures.])]
  782. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data[](['<cmath>:] Max = 430[epsilon] (Mean = 163[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data And other failures.])]
  783. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data[](['<cmath>:] Max = 5[epsilon] (Mean = 2.15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data And other failures.])]
  784. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data[](['<cmath>:] Max = 8.49[epsilon] (Mean = 3.46[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data And other failures.])]
  785. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[][role blue Max = 14.7[epsilon] (Mean = 6.66[epsilon])]]
  786. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[][role blue Max = 8.35[epsilon] (Mean = 1.62[epsilon])]]
  787. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data[][role blue Max = 4.62[epsilon] (Mean = 1.06[epsilon])]]
  788. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[][role blue Max = 4.12[epsilon] (Mean = 1.85[epsilon])]]
  789. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[][role blue Max = 1.8[epsilon] (Mean = 1.33[epsilon])]]
  790. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[][role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
  791. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[][role blue Max = 1.95[epsilon] (Mean = 0.738[epsilon])]]
  792. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[][role blue Max = 1.8[epsilon] (Mean = 1.33[epsilon])]]
  793. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[][role blue Max = 0.64[epsilon] (Mean = 0.202[epsilon])]]
  794. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[][role blue Max = 1.95[epsilon] (Mean = 0.738[epsilon])]]
  795. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  796. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data[][role blue Max = 0.661[epsilon] (Mean = 0.0441[epsilon])]]
  797. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  798. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  799. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  800. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  801. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  802. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  803. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  804. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  805. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[][role blue Max = 42.6[epsilon] (Mean = 20.2[epsilon])]]
  806. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[][role blue Max = 14.1[epsilon] (Mean = 2.93[epsilon])]]
  807. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[][role blue Max = 3.95[epsilon] (Mean = 1.06[epsilon])]]
  808. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[][role blue Max = 2.89e+03[epsilon] (Mean = 914[epsilon])]]
  809. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.31[epsilon] (Mean = 1.41[epsilon])]]
  810. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[][role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
  811. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[][role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
  812. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[][role blue Max = 2.31[epsilon] (Mean = 1.41[epsilon])]]
  813. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[][role blue Max = 1.97[epsilon] (Mean = 0.757[epsilon])]]
  814. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[][role blue Max = 0.82[epsilon] (Mean = 0.259[epsilon])]]
  815. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  816. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  817. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  818. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data[][role blue Max = 1.62[epsilon] (Mean = 0.512[epsilon])]]
  819. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  820. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  821. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  822. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  823. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  824. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  825. [template GNU_C_version_7_1_0_linux_double_sph_bessel_GSL_2_1_Bessel_j_Random_Data[](['GSL 2.1:] Max = 1.79e+03[epsilon] (Mean = 107[epsilon]))]
  826. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data_Tricky_large_values_[](['GSL 2.1:] Max = 2.48e+05[epsilon] (Mean = 5.11e+04[epsilon]))]
  827. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data[](['GSL 2.1:] Max = 15.5[epsilon] (Mean = 3.33[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data And other failures.])]
  828. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Random_Data[](['GSL 2.1:] Max = 75.7[epsilon] (Mean = 5.36[epsilon]))]
  829. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 4.91e+03[epsilon] (Mean = 2.46e+03[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_ And other failures.])]
  830. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data[](['GSL 2.1:] Max = 2.39e+05[epsilon] (Mean = 5.37e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data And other failures.])]
  831. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 6.9e+05[epsilon] (Mean = 2.53e+05[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]
  832. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['GSL 2.1:] Max = 1.26e+06[epsilon] (Mean = 6.28e+05[epsilon]))]
  833. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.89[epsilon] (Mean = 0.721[epsilon]))]
  834. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['GSL 2.1:] Max = 1e+07[epsilon] (Mean = 4.11e+06[epsilon]))]
  835. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.12[epsilon] (Mean = 0.488[epsilon]))]
  836. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data[](['GSL 2.1:] Max = 6.9e+05[epsilon] (Mean = 2.15e+05[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data And other failures.])]
  837. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_[](['GSL 2.1:] Max = 8.75e+05[epsilon] (Mean = 5.32e+05[epsilon]))]
  838. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data[](['GSL 2.1:] Max = 6.62[epsilon] (Mean = 2.35[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data And other failures.])]
  839. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_[](['GSL 2.1:] Max = 6.5e+07[epsilon] (Mean = 2.66e+07[epsilon]))]
  840. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data[](['GSL 2.1:] Max = 0.629[epsilon] (Mean = 0.223[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data And other failures.])]
  841. [template GNU_C_version_7_1_0_linux_long_double_sph_bessel_boost_Bessel_j_Random_Data[][role blue Max = 243[epsilon] (Mean = 13.3[epsilon])]]
  842. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 785[epsilon] (Mean = 94.2[epsilon])]]
  843. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data[][role blue Max = 11.4[epsilon] (Mean = 1.68[epsilon])]]
  844. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[][role blue Max = 50.8[epsilon] (Mean = 3.69[epsilon])]]
  845. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 607[epsilon] (Mean = 305[epsilon])]]
  846. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[][role blue Max = 14.7[epsilon] (Mean = 4.11[epsilon])]]
  847. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 6.85[epsilon] (Mean = 3.35[epsilon])]]
  848. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
  849. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 3.59[epsilon] (Mean = 1.33[epsilon])]]
  850. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
  851. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
  852. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[][role blue Max = 6.85[epsilon] (Mean = 3.35[epsilon])]]
  853. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 2.18e+05[epsilon] (Mean = 9.76e+04[epsilon])]]
  854. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[][role blue Max = 3.59[epsilon] (Mean = 1.33[epsilon])]]
  855. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 1.64e+08[epsilon] (Mean = 6.69e+07[epsilon])]]
  856. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[][role blue Max = 6.55[epsilon] (Mean = 2.86[epsilon])]]
  857. [template GNU_C_version_7_1_0_linux_double_sph_bessel_boost_Bessel_j_Random_Data[][role blue Max = 0.978[epsilon] (Mean = 0.0445[epsilon])]]
  858. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  859. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  860. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  861. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 0.536[epsilon] (Mean = 0.268[epsilon])]]
  862. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data[][role blue Max = 10[epsilon] (Mean = 2.24[epsilon])]]
  863. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  864. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 106[epsilon] (Mean = 47.5[epsilon])]]
  865. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  866. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 8e+04[epsilon] (Mean = 3.27e+04[epsilon])]]
  867. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  868. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  869. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 106[epsilon] (Mean = 47.5[epsilon])]]
  870. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  871. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 8e+04[epsilon] (Mean = 3.27e+04[epsilon])]]
  872. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  873. [template GNU_C_version_7_1_0_linux_long_double_sph_bessel__cmath__Bessel_j_Random_Data[](['<cmath>:] Max = 1.91e+06[epsilon] (Mean = 1.09e+05[epsilon]))]
  874. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data_Tricky_large_values_[](['<cmath>:] [role red Max = 5.01e+17[epsilon] (Mean = 6.23e+16[epsilon]))]]
  875. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data[](['<cmath>:] Max = 501[epsilon] (Mean = 52.3[epsilon]))]
  876. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Random_Data[](['<cmath>:] Max = 1.12e+03[epsilon] (Mean = 88.7[epsilon]))]
  877. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_[](['<cmath>:] Max = 34.9[epsilon] (Mean = 17.4[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_ And other failures.])]
  878. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data[](['<cmath>:] Max = 3.49e+05[epsilon] (Mean = 8.09e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data And other failures.])]
  879. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_[](['<cmath>:] [role red Max = 2.13e+19[epsilon] (Mean = 5.16e+18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_ And other failures.])]]
  880. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[](['<cmath>:] Max = 2.15e+06[epsilon] (Mean = 1.58e+06[epsilon]))]
  881. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 6.1[epsilon] (Mean = 2.95[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_ And other failures.])]
  882. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[](['<cmath>:] Max = 4.79e+08[epsilon] (Mean = 1.96e+08[epsilon]))]
  883. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 5.04[epsilon] (Mean = 1.78[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_ And other failures.])]
  884. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data[](['<cmath>:] [role red Max = 2.13e+19[epsilon] (Mean = 5.16e+18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data And other failures.])]]
  885. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data_tricky_cases_[](['<cmath>:] Max = 2.15e+06[epsilon] (Mean = 1.58e+06[epsilon]))]
  886. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data[](['<cmath>:] Max = 6.1[epsilon] (Mean = 2.95[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data And other failures.])]
  887. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data_Tricky_cases_[](['<cmath>:] Max = 4.79e+08[epsilon] (Mean = 1.96e+08[epsilon]))]
  888. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data[](['<cmath>:] Max = 5.04[epsilon] (Mean = 1.78[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data And other failures.])]
  889. [template GNU_C_version_7_1_0_linux_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data[][role blue Max = 167[epsilon] (Mean = 12[epsilon])]]
  890. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 474[epsilon] (Mean = 62.2[epsilon])]]
  891. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[][role blue Max = 139[epsilon] (Mean = 6.47[epsilon])]]
  892. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[][role blue Max = 11.3[epsilon] (Mean = 1.85[epsilon])]]
  893. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 989[epsilon] (Mean = 495[epsilon])]]
  894. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[][role blue Max = 42.5[epsilon] (Mean = 9.31[epsilon])]]
  895. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 1.29e+03[epsilon] (Mean = 312[epsilon])]]
  896. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
  897. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
  898. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 7.44[epsilon] (Mean = 3.34[epsilon])]]
  899. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 18.9[epsilon] (Mean = 6.82[epsilon])]]
  900. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[][role blue Max = 1.29e+03[epsilon] (Mean = 312[epsilon])]]
  901. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 5.88e+05[epsilon] (Mean = 2.63e+05[epsilon])]]
  902. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[][role blue Max = 7.9[epsilon] (Mean = 3.37[epsilon])]]
  903. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 7.44[epsilon] (Mean = 3.34[epsilon])]]
  904. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[][role blue Max = 18.9[epsilon] (Mean = 6.82[epsilon])]]
  905. [template GNU_C_version_7_1_0_linux_double_sph_bessel_prime_boost_Bessel_j_Random_Data[][role blue Max = 0.753[epsilon] (Mean = 0.0343[epsilon])]]
  906. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  907. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data[][role blue Max = 0.885[epsilon] (Mean = 0.033[epsilon])]]
  908. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data[][role blue Max = 0.593[epsilon] (Mean = 0.0396[epsilon])]]
  909. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  910. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data[][role blue Max = 21.5[epsilon] (Mean = 4.7[epsilon])]]
  911. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_[][role blue Max = 0.527[epsilon] (Mean = 0.128[epsilon])]]
  912. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_[][role blue Max = 287[epsilon] (Mean = 129[epsilon])]]
  913. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  914. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  915. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  916. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data[][role blue Max = 0.527[epsilon] (Mean = 0.128[epsilon])]]
  917. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_[][role blue Max = 287[epsilon] (Mean = 129[epsilon])]]
  918. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  919. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  920. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  921. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data[](['GSL 2.1:] Max = 9.71[epsilon] (Mean = 1.47[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data And other failures.])]
  922. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data[](['GSL 2.1:] Max = 8.71[epsilon] (Mean = 1.76[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data And other failures.])]
  923. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 308[epsilon] (Mean = 142[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_ And other failures.])]
  924. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data[](['GSL 2.1:] Max = 5.47[epsilon] (Mean = 2.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data And other failures.])]
  925. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_Kn_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 168[epsilon] (Mean = 59.5[epsilon]))]
  926. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 0.626[epsilon] (Mean = 0.333[epsilon]))]
  927. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.2[epsilon] (Mean = 0.733[epsilon]))]
  928. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data[](['GSL 2.1:] Max = 3.36[epsilon] (Mean = 1.43[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data And other failures.])]
  929. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K1_Mathworld_Data[](['GSL 2.1:] Max = 6.26[epsilon] (Mean = 2.21[epsilon]))]
  930. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K0_Mathworld_Data[](['GSL 2.1:] Max = 6.04[epsilon] (Mean = 2.16[epsilon]))]
  931. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[][role blue Max = 7.88[epsilon] (Mean = 1.48[epsilon])]]
  932. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[][role blue Max = 4.55[epsilon] (Mean = 1.12[epsilon])]]
  933. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[][role blue Max = 42.3[epsilon] (Mean = 21[epsilon])]]
  934. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[][role blue Max = 3.58[epsilon] (Mean = 2.39[epsilon])]]
  935. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[][role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
  936. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  937. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[][role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
  938. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[][role blue Max = 2.6[epsilon] (Mean = 1.21[epsilon])]]
  939. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  940. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[][role blue Max = 0.833[epsilon] (Mean = 0.436[epsilon])]]
  941. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data[][role blue Max = 0.507[epsilon] (Mean = 0.0313[epsilon])]]
  942. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data[][role blue Max = 0.764[epsilon] (Mean = 0.0348[epsilon])]]
  943. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  944. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  945. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  946. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  947. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  948. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  949. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  950. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  951. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data[](['<cmath>:] Max = 13.6[epsilon] (Mean = 2.68[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data And other failures.])]
  952. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Random_Data[](['<cmath>:] Max = 13.9[epsilon] (Mean = 2.91[epsilon]))]
  953. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_[](['<cmath>:] Max = 42.3[epsilon] (Mean = 19.8[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_ And other failures.])]
  954. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data[](['<cmath>:] Max = 13[epsilon] (Mean = 4.81[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data And other failures.])]
  955. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 12.9[epsilon] (Mean = 4.91[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_ And other failures.])]
  956. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 8.94[epsilon] (Mean = 3.19[epsilon]))]
  957. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 9.33[epsilon] (Mean = 3.25[epsilon]))]
  958. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data[](['<cmath>:] Max = 12.9[epsilon] (Mean = 4.91[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data And other failures.])]
  959. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K1_Mathworld_Data[](['<cmath>:] Max = 8.94[epsilon] (Mean = 3.19[epsilon]))]
  960. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K0_Mathworld_Data[](['<cmath>:] Max = 9.33[epsilon] (Mean = 3.25[epsilon]))]
  961. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[][role blue Max = 7.95[epsilon] (Mean = 1.53[epsilon])]]
  962. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[][role blue Max = 4.45[epsilon] (Mean = 1.19[epsilon])]]
  963. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[][role blue Max = 59.2[epsilon] (Mean = 42.9[epsilon])]]
  964. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[][role blue Max = 3.94[epsilon] (Mean = 2.44[epsilon])]]
  965. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
  966. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[][role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
  967. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  968. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[][role blue Max = 2.16[epsilon] (Mean = 1.08[epsilon])]]
  969. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[][role blue Max = 0.736[epsilon] (Mean = 0.389[epsilon])]]
  970. [template GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[][role blue Max = 0.786[epsilon] (Mean = 0.329[epsilon])]]
  971. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  972. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  973. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  974. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  975. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  976. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  977. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  978. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  979. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  980. [template GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  981. [template GNU_C_version_7_1_0_linux_double_sph_neumann_GSL_2_1_y_Random_Data[](['GSL 2.1:] Max = 8.5e+04[epsilon] (Mean = 5.33e+03[epsilon]))]
  982. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Random_Data[](['GSL 2.1:] Max = 1.41e+06[epsilon] (Mean = 7.67e+04[epsilon]))]
  983. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Random_Data[](['GSL 2.1:] Max = 500[epsilon] (Mean = 47.8[epsilon]))]
  984. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_and_Y1_Random_Data[](['GSL 2.1:] Max = 34.4[epsilon] (Mean = 8.9[epsilon]))]
  985. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_[](['GSL 2.1:] Max = 60.8[epsilon] (Mean = 23[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_ And other failures.])]
  986. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data[](['GSL 2.1:] Max = 1.07e+05[epsilon] (Mean = 3.22e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data And other failures.])]
  987. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Yn_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 2.41e+05[epsilon] (Mean = 7.62e+04[epsilon]))]
  988. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y1_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 1.51[epsilon] (Mean = 0.839[epsilon]))]
  989. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y0_Mathworld_Data_Integer_Version_[](['GSL 2.1:] Max = 6.46[epsilon] (Mean = 2.38[epsilon]))]
  990. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data[](['GSL 2.1:] Max = 2.41e+05[epsilon] (Mean = 7.62e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data And other failures.])]
  991. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y1_Mathworld_Data[](['GSL 2.1:] Max = 23.4[epsilon] (Mean = 8.1[epsilon]))]
  992. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_Mathworld_Data[](['GSL 2.1:] Max = 60.9[epsilon] (Mean = 20.4[epsilon]))]
  993. [template GNU_C_version_7_1_0_linux_long_double_sph_neumann_boost_y_Random_Data[][role blue Max = 234[epsilon] (Mean = 19.5[epsilon])]]
  994. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Random_Data[][role blue Max = 2.08e+03[epsilon] (Mean = 149[epsilon])]]
  995. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Random_Data[][role blue Max = 338[epsilon] (Mean = 27.5[epsilon])]]
  996. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[][role blue Max = 10.8[epsilon] (Mean = 3.04[epsilon])]]
  997. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[][role blue Max = 1.7[epsilon] (Mean = 1.33[epsilon])]]
  998. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data[][role blue Max = 10.7[epsilon] (Mean = 4.93[epsilon])]]
  999. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[][role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
  1000. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[][role blue Max = 6.33[epsilon] (Mean = 2.25[epsilon])]]
  1001. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[][role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
  1002. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Mathworld_Data[][role blue Max = 55.2[epsilon] (Mean = 17.8[epsilon])]]
  1003. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y1_Mathworld_Data[][role blue Max = 6.33[epsilon] (Mean = 2.25[epsilon])]]
  1004. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_Mathworld_Data[][role blue Max = 5.53[epsilon] (Mean = 2.4[epsilon])]]
  1005. [template GNU_C_version_7_1_0_linux_double_sph_neumann_boost_y_Random_Data[][role blue Max = 0.995[epsilon] (Mean = 0.0665[epsilon])]]
  1006. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.102[epsilon])]]
  1007. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1008. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_and_Y1_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1009. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1010. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data[][role blue Max = 10[epsilon] (Mean = 3.02[epsilon])]]
  1011. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_[][role blue Max = 0.993[epsilon] (Mean = 0.314[epsilon])]]
  1012. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1013. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1014. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Mathworld_Data[][role blue Max = 0.993[epsilon] (Mean = 0.314[epsilon])]]
  1015. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y1_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1016. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1017. [template GNU_C_version_7_1_0_linux_long_double_sph_neumann__cmath__y_Random_Data[](['<cmath>:] Max = 1.6e+06[epsilon] (Mean = 1.4e+05[epsilon]))]
  1018. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data And other failures.])]]
  1019. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Random_Data[](['<cmath>:] Max = 4.01e+03[epsilon] (Mean = 348[epsilon]))]
  1020. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_and_Y1_Random_Data[](['<cmath>:] Max = 2.59e+03[epsilon] (Mean = 500[epsilon]))]
  1021. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_[](['<cmath>:] Max = 43.2[epsilon] (Mean = 16.3[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_ And other failures.])]
  1022. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data[](['<cmath>:] [role red Max = 3.49e+15[epsilon] (Mean = 1.05e+15[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data And other failures.])]]
  1023. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_[](['<cmath>:] [role red Max = 2.2e+20[epsilon] (Mean = 6.97e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_ And other failures.])]]
  1024. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y1_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 9.71e+03[epsilon] (Mean = 4.08e+03[epsilon]))]
  1025. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y0_Mathworld_Data_Integer_Version_[](['<cmath>:] Max = 2.05e+05[epsilon] (Mean = 6.87e+04[epsilon]))]
  1026. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data[](['<cmath>:] [role red Max = 2.2e+20[epsilon] (Mean = 6.97e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data And other failures.])]]
  1027. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y1_Mathworld_Data[](['<cmath>:] Max = 9.71e+03[epsilon] (Mean = 4.08e+03[epsilon]))]
  1028. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_Mathworld_Data[](['<cmath>:] Max = 2.05e+05[epsilon] (Mean = 6.87e+04[epsilon]))]
  1029. [template GNU_C_version_7_1_0_linux_long_double_sph_neumann_prime_boost_y_Random_Data[][role blue Max = 158[epsilon] (Mean = 18.8[epsilon])]]
  1030. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Random_Data[][role blue Max = 1.16e+05[epsilon] (Mean = 5.28e+03[epsilon])]]
  1031. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Random_Data[][role blue Max = 2.35e+03[epsilon] (Mean = 136[epsilon])]]
  1032. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[][role blue Max = 23.8[epsilon] (Mean = 3.69[epsilon])]]
  1033. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[][role blue Max = 1.57[epsilon] (Mean = 1.24[epsilon])]]
  1034. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[][role blue Max = 42.5[epsilon] (Mean = 13.4[epsilon])]]
  1035. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[][role blue Max = 56[epsilon] (Mean = 18.2[epsilon])]]
  1036. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[][role blue Max = 37.1[epsilon] (Mean = 12.8[epsilon])]]
  1037. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[][role blue Max = 6.33[epsilon] (Mean = 3.12[epsilon])]]
  1038. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[][role blue Max = 56[epsilon] (Mean = 18.2[epsilon])]]
  1039. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[][role blue Max = 37.1[epsilon] (Mean = 12.8[epsilon])]]
  1040. [template GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[][role blue Max = 6.33[epsilon] (Mean = 3.12[epsilon])]]
  1041. [template GNU_C_version_7_1_0_linux_double_sph_neumann_prime_boost_y_Random_Data[][role blue Max = 0.988[epsilon] (Mean = 0.0869[epsilon])]]
  1042. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Random_Data[][role blue Max = 56.8[epsilon] (Mean = 2.59[epsilon])]]
  1043. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.0885[epsilon])]]
  1044. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1045. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1046. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data[][role blue Max = 21.5[epsilon] (Mean = 6.49[epsilon])]]
  1047. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_[][role blue Max = 2.05[epsilon] (Mean = 0.677[epsilon])]]
  1048. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_[][role blue Max = 0.58[epsilon] (Mean = 0.193[epsilon])]]
  1049. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1050. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data[][role blue Max = 2.05[epsilon] (Mean = 0.677[epsilon])]]
  1051. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data[][role blue Max = 0.58[epsilon] (Mean = 0.193[epsilon])]]
  1052. [template GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1053. [template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Divergent_Values[](['GSL 2.1:] Max = 12.1[epsilon] (Mean = 1.99[epsilon]))]
  1054. [template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Medium_Values[](['GSL 2.1:] Max = 1.18e+03[epsilon] (Mean = 238[epsilon]))]
  1055. [template GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values[](['GSL 2.1:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values And other failures.])]]
  1056. [template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Divergent_Values[](['<cmath>:] Max = 128[epsilon] (Mean = 23.8[epsilon]))]
  1057. [template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Medium_Values[](['<cmath>:] Max = 1.07e+03[epsilon] (Mean = 264[epsilon]))]
  1058. [template GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Small_Values[](['<cmath>:] Max = 364[epsilon] (Mean = 76.2[epsilon]))]
  1059. [template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Divergent_Values[][role blue Max = 8.99[epsilon] (Mean = 2.44[epsilon])]]
  1060. [template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Medium_Values[][role blue Max = 61.4[epsilon] (Mean = 19.4[epsilon])]]
  1061. [template GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Small_Values[][role blue Max = 2.86[epsilon] (Mean = 1.22[epsilon])]]
  1062. [template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Divergent_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1063. [template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Medium_Values[][role blue Max = 0.978[epsilon] (Mean = 0.0595[epsilon])]]
  1064. [template GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1065. [template GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_large_arguments[][role blue Max = 26.6[epsilon] (Mean = 6.13[epsilon])]]
  1066. [template GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_small_arguments[][role blue Max = 1.5[epsilon] (Mean = 0.339[epsilon])]]
  1067. [template GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_large_arguments[][role blue Max = 0.939[epsilon] (Mean = 0.314[epsilon])]]
  1068. [template GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_small_arguments[][role blue Max = 1[epsilon] (Mean = 0.369[epsilon])]]
  1069. [template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_one_value_zero[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1070. [template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_the_same[](['GSL 2.1:] Max = 0.594[epsilon] (Mean = 0.0103[epsilon]))]
  1071. [template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_All_values_the_same_or_zero[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1072. [template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_0[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1073. [template GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_Random_Data[](['GSL 2.1:] Max = 0.983[epsilon] (Mean = 0.0172[epsilon]))]
  1074. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0[](['GSL 2.1:] Max = 2.85[epsilon] (Mean = 0.781[epsilon]))]
  1075. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y_z[](['GSL 2.1:] Max = 1.03[epsilon] (Mean = 0.418[epsilon]))]
  1076. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0_y_z[](['GSL 2.1:] Max = 2[epsilon] (Mean = 0.656[epsilon]))]
  1077. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y[](['GSL 2.1:] Max = 3.74[epsilon] (Mean = 0.84[epsilon]))]
  1078. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_y_z[](['GSL 2.1:] Max = 2.88[epsilon] (Mean = 0.839[epsilon]))]
  1079. [template GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_Random_data[](['GSL 2.1:] Max = 2.59[epsilon] (Mean = 0.878[epsilon]))]
  1080. [template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Equal_z_and_p[](['GSL 2.1:] Max = 2.62[epsilon] (Mean = 0.699[epsilon]))]
  1081. [template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_2_Equal_Values[](['GSL 2.1:] Max = 2.57[epsilon] (Mean = 0.754[epsilon]))]
  1082. [template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_3_Equal_Values[](['GSL 2.1:] Max = 3.96[epsilon] (Mean = 1.06[epsilon]))]
  1083. [template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_4_Equal_Values[](['GSL 2.1:] Max = 1.03[epsilon] (Mean = 0.418[epsilon]))]
  1084. [template GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data[](['GSL 2.1:] Max = 3.57[epsilon] (Mean = 0.704[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data And other failures.])]
  1085. [template GNU_C_version_7_1_0_linux_double_ellint_rc_GSL_2_1_RC_Random_data[](['GSL 2.1:] Max = 2.4[epsilon] (Mean = 0.624[epsilon]))]
  1086. [template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_z_0[](['GSL 2.1:] Max = 2.54[epsilon] (Mean = 0.781[epsilon]))]
  1087. [template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_0_y_z[](['GSL 2.1:] Max = 1.29[epsilon] (Mean = 0.527[epsilon]))]
  1088. [template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_or_y_z_or_x_z[](['GSL 2.1:] Max = 2.89[epsilon] (Mean = 0.749[epsilon]))]
  1089. [template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_z[](['GSL 2.1:] Max = 0.999[epsilon] (Mean = 0.34[epsilon]))]
  1090. [template GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_Random_data[](['GSL 2.1:] Max = 2.73[epsilon] (Mean = 0.804[epsilon]))]
  1091. [template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_one_value_zero[][role blue Max = 2.14[epsilon] (Mean = 0.722[epsilon])]]
  1092. [template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_the_same[][role blue Max = 1.51[epsilon] (Mean = 0.404[epsilon])]]
  1093. [template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_All_values_the_same_or_zero[][role blue Max = 0.992[epsilon] (Mean = 0.288[epsilon])]]
  1094. [template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1095. [template GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_Random_Data[][role blue Max = 3.95[epsilon] (Mean = 0.951[epsilon])]]
  1096. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0[][role blue Max = 2.79[epsilon] (Mean = 0.883[epsilon])]]
  1097. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y_z[][role blue Max = 0.998[epsilon] (Mean = 0.387[epsilon])]]
  1098. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0_y_z[][role blue Max = 1.19[epsilon] (Mean = 0.522[epsilon])]]
  1099. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y[][role blue Max = 2.85[epsilon] (Mean = 0.865[epsilon])]]
  1100. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_y_z[][role blue Max = 2.65[epsilon] (Mean = 0.82[epsilon])]]
  1101. [template GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_Random_data[][role blue Max = 2.73[epsilon] (Mean = 0.831[epsilon])]]
  1102. [template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Equal_z_and_p[][role blue Max = 17.2[epsilon] (Mean = 1.16[epsilon])]]
  1103. [template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_2_Equal_Values[][role blue Max = 220[epsilon] (Mean = 6.64[epsilon])]]
  1104. [template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_3_Equal_Values[][role blue Max = 20.8[epsilon] (Mean = 0.986[epsilon])]]
  1105. [template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_4_Equal_Values[][role blue Max = 0.998[epsilon] (Mean = 0.387[epsilon])]]
  1106. [template GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Random_data[][role blue Max = 186[epsilon] (Mean = 6.67[epsilon])]]
  1107. [template GNU_C_version_7_1_0_linux_long_double_ellint_rc_boost_RC_Random_data[][role blue Max = 0.995[epsilon] (Mean = 0.433[epsilon])]]
  1108. [template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_z_0[][role blue Max = 1.7[epsilon] (Mean = 0.539[epsilon])]]
  1109. [template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_0_y_z[][role blue Max = 0.894[epsilon] (Mean = 0.338[epsilon])]]
  1110. [template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[][role blue Max = 1.95[epsilon] (Mean = 0.418[epsilon])]]
  1111. [template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_z[][role blue Max = 0.991[epsilon] (Mean = 0.345[epsilon])]]
  1112. [template GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_Random_data[][role blue Max = 2.54[epsilon] (Mean = 0.674[epsilon])]]
  1113. [template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_one_value_zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1114. [template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_the_same[][role blue Max = 0.594[epsilon] (Mean = 0.0103[epsilon])]]
  1115. [template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_All_values_the_same_or_zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1116. [template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1117. [template GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_Random_Data[][role blue Max = 0.983[epsilon] (Mean = 0.0172[epsilon])]]
  1118. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1119. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1120. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1121. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y[][role blue Max = 0.824[epsilon] (Mean = 0.0272[epsilon])]]
  1122. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_y_z[][role blue Max = 0.896[epsilon] (Mean = 0.022[epsilon])]]
  1123. [template GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1124. [template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Equal_z_and_p[][role blue Max = 0.742[epsilon] (Mean = 0.0166[epsilon])]]
  1125. [template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_2_Equal_Values[][role blue Max = 0.6[epsilon] (Mean = 0.0228[epsilon])]]
  1126. [template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_3_Equal_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1127. [template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_4_Equal_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1128. [template GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Random_data[][role blue Max = 0.52[epsilon] (Mean = 0.0184[epsilon])]]
  1129. [template GNU_C_version_7_1_0_linux_double_ellint_rc_boost_RC_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1130. [template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_z_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1131. [template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_0_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1132. [template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z[][role blue Max = 0.536[epsilon] (Mean = 0.00658[epsilon])]]
  1133. [template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_z[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1134. [template GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_Random_data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1135. [template GNU_C_version_7_1_0_linux_long_double_cbrt__math_h__cbrt_Function[](['<math.h>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
  1136. [template GNU_C_version_7_1_0_linux_long_double_cbrt__cmath__cbrt_Function[](['<cmath>:] Max = 1.34[epsilon] (Mean = 0.471[epsilon]))]
  1137. [template GNU_C_version_7_1_0_linux_long_double_cbrt_boost_cbrt_Function[][role blue Max = 1.34[epsilon] (Mean = 0.471[epsilon])]]
  1138. [template GNU_C_version_7_1_0_linux_double_cbrt_boost_cbrt_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1139. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Half_integer_arguments[](['GSL 2.1:] Max = 1.09[epsilon] (Mean = 0.531[epsilon]))]
  1140. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Integer_arguments[](['GSL 2.1:] Max = 1.18[epsilon] (Mean = 0.607[epsilon]))]
  1141. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Values_near_0[](['GSL 2.1:] Max = 0.866[epsilon] (Mean = 0.387[epsilon]))]
  1142. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Negative_Values[](['GSL 2.1:] Max = 4.56e+04[epsilon] (Mean = 3.91e+03[epsilon]))]
  1143. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_Zero[](['GSL 2.1:] Max = 0.953[epsilon] (Mean = 0.348[epsilon]))]
  1144. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_the_Positive_Root[](['GSL 2.1:] Max = 135[epsilon] (Mean = 11.9[epsilon]))]
  1145. [template GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Large_Values[](['GSL 2.1:] Max = 1.84[epsilon] (Mean = 0.71[epsilon]))]
  1146. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Half_integer_arguments[][role blue Max = 0.906[epsilon] (Mean = 0.409[epsilon])]]
  1147. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Integer_arguments[][role blue Max = 0.888[epsilon] (Mean = 0.403[epsilon])]]
  1148. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Values_near_0[][role blue Max = 1[epsilon] (Mean = 0.592[epsilon])]]
  1149. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Negative_Values[][role blue Max = 180[epsilon] (Mean = 13[epsilon])]]
  1150. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_Zero[][role blue Max = 0.984[epsilon] (Mean = 0.361[epsilon])]]
  1151. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[][role blue Max = 1.37[epsilon] (Mean = 0.477[epsilon])]]
  1152. [template GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Large_Values[][role blue Max = 1.39[epsilon] (Mean = 0.413[epsilon])]]
  1153. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Half_integer_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1154. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Integer_arguments[][role blue Max = 0.992[epsilon] (Mean = 0.215[epsilon])]]
  1155. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Values_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1156. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Negative_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1157. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_Zero[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1158. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_the_Positive_Root[][role blue Max = 0.891[epsilon] (Mean = 0.0995[epsilon])]]
  1159. [template GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1160. [template GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Random_Data[](['GSL 2.1:] Max = 2.32[epsilon] (Mean = 0.688[epsilon]))]
  1161. [template GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Mathworld_Data[](['GSL 2.1:] Max = 0.623[epsilon] (Mean = 0.393[epsilon]))]
  1162. [template GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Random_Data[](['GSL 2.1:] Max = 2.99[epsilon] (Mean = 0.797[epsilon]))]
  1163. [template GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Mathworld_Data[](['GSL 2.1:] Max = 0.919[epsilon] (Mean = 0.544[epsilon]))]
  1164. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[][role blue Max = 1.27[epsilon] (Mean = 0.473[epsilon])]]
  1165. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[][role blue Max = 0.887[epsilon] (Mean = 0.296[epsilon])]]
  1166. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[][role blue Max = 1.57[epsilon] (Mean = 0.56[epsilon])]]
  1167. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[][role blue Max = 0.94[epsilon] (Mean = 0.509[epsilon])]]
  1168. [template GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data[][role blue Max = 0.851[epsilon] (Mean = 0.0851[epsilon])]]
  1169. [template GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1170. [template GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1171. [template GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1172. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Random_Data[](['<cmath>:] Max = 2.19[epsilon] (Mean = 0.694[epsilon]))]
  1173. [template GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Mathworld_Data[](['<cmath>:] Max = 1.19[epsilon] (Mean = 0.765[epsilon]))]
  1174. [template GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Random_Data[](['<cmath>:] Max = 2.56[epsilon] (Mean = 0.816[epsilon]))]
  1175. [template GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data And other failures.])]]
  1176. [template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Small_Angles[](['GSL 2.1:] Max = 0.5[epsilon] (Mean = 0.118[epsilon]))]
  1177. [template GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Random_Data[](['GSL 2.1:] Max = 4.34[epsilon] (Mean = 1.18[epsilon]))]
  1178. [template GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 3.09[epsilon] (Mean = 1.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data And other failures.])]
  1179. [template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Random_Data[](['GSL 2.1:] Max = 4.4[epsilon] (Mean = 1.16[epsilon]))]
  1180. [template GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 0.63[epsilon] (Mean = 0.325[epsilon]))]
  1181. [template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Small_Angles[](['<cmath>:] Max = 2[epsilon] (Mean = 0.333[epsilon]))]
  1182. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Random_Data[](['<cmath>:] Max = 2.49e+04[epsilon] (Mean = 3.39e+03[epsilon]))]
  1183. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Mathworld_Data[](['<cmath>:] Max = 170[epsilon] (Mean = 55.1[epsilon]))]
  1184. [template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Random_Data[](['<cmath>:] Max = 3.08e+04[epsilon] (Mean = 3.84e+03[epsilon]))]
  1185. [template GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data And other failures.])]]
  1186. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[][role blue Max = 1[epsilon] (Mean = 0.283[epsilon])]]
  1187. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[][role blue Max = 1.97[epsilon] (Mean = 0.629[epsilon])]]
  1188. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.836[epsilon] (Mean = 0.469[epsilon])]]
  1189. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[][role blue Max = 2.05[epsilon] (Mean = 0.632[epsilon])]]
  1190. [template GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.656[epsilon] (Mean = 0.317[epsilon])]]
  1191. [template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1192. [template GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1193. [template GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1194. [template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1195. [template GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1196. [template GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Random_Data[](['GSL 2.1:] Max = 24[epsilon] (Mean = 2.99[epsilon]))]
  1197. [template GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data[](['GSL 2.1:] Max = 6.33e+04[epsilon] (Mean = 1.54e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data And other failures.])]
  1198. [template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Large_Random_Data[](['GSL 2.1:] Max = 40.1[epsilon] (Mean = 7.77[epsilon]))]
  1199. [template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Random_Data[](['GSL 2.1:] Max = 633[epsilon] (Mean = 50.1[epsilon]))]
  1200. [template GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data[](['GSL 2.1:] Max = 1.48e+05[epsilon] (Mean = 2.54e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data And other failures.])]
  1201. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[][role blue Max = 2.45[epsilon] (Mean = 0.696[epsilon])]]
  1202. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 1.4[epsilon] (Mean = 0.575[epsilon])]]
  1203. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[][role blue Max = 3.7[epsilon] (Mean = 0.893[epsilon])]]
  1204. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[][role blue Max = 4.54[epsilon] (Mean = 0.895[epsilon])]]
  1205. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 475[epsilon] (Mean = 86.3[epsilon])]]
  1206. [template GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1207. [template GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1208. [template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data[][role blue Max = 0.557[epsilon] (Mean = 0.0389[epsilon])]]
  1209. [template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1210. [template GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1211. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data[](['<cmath>:] [role red Max = 8.78e+20[epsilon] (Mean = 1.02e+20[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data And other failures.])]]
  1212. [template GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data[](['<cmath>:] [role red Max = 6.31e+20[epsilon] (Mean = 1.53e+20[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data And other failures.])]]
  1213. [template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data[](['<cmath>:] [role red Max = 2.52e+18[epsilon] (Mean = 4.83e+17[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data And other failures.])]]
  1214. [template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data[](['<cmath>:] [role red Max = 3.37e+20[epsilon] (Mean = 3.47e+19[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data And other failures.])]]
  1215. [template GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data[](['<cmath>:] [role red Max = +INF[epsilon] (Mean = +INF[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data And other failures.])]]
  1216. [template GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_D_Random_Data[](['GSL 2.1:] Max = 3.01[epsilon] (Mean = 0.928[epsilon]))]
  1217. [template GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_E_Mathworld_Data[](['GSL 2.1:] Max = 0.862[epsilon] (Mean = 0.568[epsilon]))]
  1218. [template GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[][role blue Max = 1.27[epsilon] (Mean = 0.334[epsilon])]]
  1219. [template GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 1.27[epsilon] (Mean = 0.735[epsilon])]]
  1220. [template GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[][role blue Max = 2.51[epsilon] (Mean = 0.883[epsilon])]]
  1221. [template GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 1.3[epsilon] (Mean = 0.813[epsilon])]]
  1222. [template GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1223. [template GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0.637[epsilon] (Mean = 0.368[epsilon])]]
  1224. [template GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_D_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1225. [template GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1226. [template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Large_Values[](['GSL 2.1:] Max = 3.9[epsilon] (Mean = 0.472[epsilon]))]
  1227. [template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Large_Values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1228. [template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Medium_Values[](['GSL 2.1:] Max = 2.64[epsilon] (Mean = 0.662[epsilon]))]
  1229. [template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Medium_Values[](['GSL 2.1:] Max = 2.31[epsilon] (Mean = 0.368[epsilon]))]
  1230. [template GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Small_Values[](['GSL 2.1:] Max = 1.01[epsilon] (Mean = 0.485[epsilon]))]
  1231. [template GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Small_Values[](['GSL 2.1:] Max = 2.06[epsilon] (Mean = 0.319[epsilon]))]
  1232. [template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Large_Values[](['<math.h>:] Max = 1.26[epsilon] (Mean = 0.441[epsilon]))]
  1233. [template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Large_Values[](['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1234. [template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Medium_Values[](['<math.h>:] Max = 1.35[epsilon] (Mean = 0.307[epsilon]))]
  1235. [template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Medium_Values[](['<math.h>:] Max = 0.921[epsilon] (Mean = 0.0723[epsilon]))]
  1236. [template GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Small_Values[](['<math.h>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1237. [template GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Small_Values[](['<math.h>:] Max = 0.944[epsilon] (Mean = 0.191[epsilon]))]
  1238. [template GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values[][role blue Max = 1.62[epsilon] (Mean = 0.383[epsilon])]]
  1239. [template GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function[][role blue Max = 0.996[epsilon] (Mean = 0.397[epsilon])]]
  1240. [template GNU_C_version_7_1_0_linux_long_double_erf_inv_boost_Inverse_Erf_Function[][role blue Max = 0.996[epsilon] (Mean = 0.389[epsilon])]]
  1241. [template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Large_Values[][role blue Max = 1.57[epsilon] (Mean = 0.542[epsilon])]]
  1242. [template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1243. [template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Medium_Values[][role blue Max = 1.76[epsilon] (Mean = 0.365[epsilon])]]
  1244. [template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Medium_Values[][role blue Max = 1.5[epsilon] (Mean = 0.193[epsilon])]]
  1245. [template GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1246. [template GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Small_Values[][role blue Max = 0.925[epsilon] (Mean = 0.193[epsilon])]]
  1247. [template GNU_C_version_7_1_0_linux_double_erfc_inv_boost_Inverse_Erfc_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1248. [template GNU_C_version_7_1_0_linux_double_erf_inv_boost_Inverse_Erf_Function[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1249. [template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Large_Values[][role blue Max = 0.868[epsilon] (Mean = 0.147[epsilon])]]
  1250. [template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Large_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1251. [template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Medium_Values[][role blue Max = 0.983[epsilon] (Mean = 0.213[epsilon])]]
  1252. [template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Medium_Values[][role blue Max = 1[epsilon] (Mean = 0.119[epsilon])]]
  1253. [template GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Small_Values[][role blue Max = 0.658[epsilon] (Mean = 0.0537[epsilon])]]
  1254. [template GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Small_Values[][role blue Max = 0.841[epsilon] (Mean = 0.0687[epsilon])]]
  1255. [template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Large_Values[](['<cmath>:] Max = 1.26[epsilon] (Mean = 0.441[epsilon]))]
  1256. [template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Large_Values[](['<cmath>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1257. [template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Medium_Values[](['<cmath>:] Max = 1.35[epsilon] (Mean = 0.307[epsilon]))]
  1258. [template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Medium_Values[](['<cmath>:] Max = 0.921[epsilon] (Mean = 0.0723[epsilon]))]
  1259. [template GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Small_Values[](['<cmath>:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1260. [template GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Small_Values[](['<cmath>:] Max = 0.944[epsilon] (Mean = 0.191[epsilon]))]
  1261. [template GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei_double_exponent_range[](['GSL 2.1:] Max = 1.5[epsilon] (Mean = 0.612[epsilon]))]
  1262. [template GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei[](['GSL 2.1:] Max = 8.96[epsilon] (Mean = 0.703[epsilon]))]
  1263. [template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_E1[](['GSL 2.1:] Max = 0.988[epsilon] (Mean = 0.469[epsilon]))]
  1264. [template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En_small_z_values[](['GSL 2.1:] Max = 115[epsilon] (Mean = 23.6[epsilon]))]
  1265. [template GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En[](['GSL 2.1:] Max = 58.5[epsilon] (Mean = 17.1[epsilon]))]
  1266. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range[][role blue Max = 1.98[epsilon] (Mean = 0.595[epsilon])]]
  1267. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[][role blue Max = 1.72[epsilon] (Mean = 0.593[epsilon])]]
  1268. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei[][role blue Max = 5.05[epsilon] (Mean = 0.821[epsilon])]]
  1269. [template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_E1[][role blue Max = 0.965[epsilon] (Mean = 0.414[epsilon])]]
  1270. [template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En_small_z_values[][role blue Max = 1.99[epsilon] (Mean = 0.559[epsilon])]]
  1271. [template GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En[][role blue Max = 9.97[epsilon] (Mean = 2.13[epsilon])]]
  1272. [template GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range[][role blue Max = 0.998[epsilon] (Mean = 0.156[epsilon])]]
  1273. [template GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei[][role blue Max = 0.994[epsilon] (Mean = 0.142[epsilon])]]
  1274. [template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_E1[][role blue Max = 0.556[epsilon] (Mean = 0.0625[epsilon])]]
  1275. [template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En_small_z_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1276. [template GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En[][role blue Max = 0.589[epsilon] (Mean = 0.0331[epsilon])]]
  1277. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_long_exponent_range[](['<cmath>:] Max = 1.93[epsilon] (Mean = 0.855[epsilon]))]
  1278. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_double_exponent_range[](['<cmath>:] Max = 3.11[epsilon] (Mean = 1.13[epsilon]))]
  1279. [template GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei[](['<cmath>:] Max = 14.1[epsilon] (Mean = 2.43[epsilon]) [link errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei And other failures.])]
  1280. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_55[](['Rmath 3.2.3:] Max = 250[epsilon] (Mean = 60.9[epsilon]))]
  1281. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_55[](['Rmath 3.2.3:] Max = 3.89e+04[epsilon] (Mean = 9.52e+03[epsilon]))]
  1282. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_10[](['Rmath 3.2.3:] Max = 4.22[epsilon] (Mean = 1.26[epsilon]))]
  1283. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_10[](['Rmath 3.2.3:] Max = 34.9[epsilon] (Mean = 9.2[epsilon]))]
  1284. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_2[](['Rmath 3.2.3:] Max = 2.63e+05[epsilon] (Mean = 5.84e+04[epsilon]))]
  1285. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_2[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.191[epsilon]))]
  1286. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_1[](['Rmath 3.2.3:] Max = 7.99e+04[epsilon] (Mean = 1.68e+04[epsilon]))]
  1287. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_1[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.32[epsilon]))]
  1288. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_0[](['Rmath 3.2.3:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1289. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_0[](['Rmath 3.2.3:] Max = 1[epsilon] (Mean = 0.335[epsilon]))]
  1290. [template GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_factorials[](['Rmath 3.2.3:] Max = 1.55[epsilon] (Mean = 0.592[epsilon]))]
  1291. [template GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_factorials[](['Rmath 3.2.3:] Max = 314[epsilon] (Mean = 93.4[epsilon]))]
  1292. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_55[](['GSL 2.1:] Max = 7.02[epsilon] (Mean = 1.47[epsilon]))]
  1293. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_55[](['GSL 2.1:] Max = 1.8[epsilon] (Mean = 0.782[epsilon]))]
  1294. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_10[](['GSL 2.1:] Max = 24.9[epsilon] (Mean = 4.6[epsilon]))]
  1295. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_10[](['GSL 2.1:] Max = 2.6[epsilon] (Mean = 1.05[epsilon]))]
  1296. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_2[](['GSL 2.1:] Max = 1.17e+03[epsilon] (Mean = 274[epsilon]))]
  1297. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_2[](['GSL 2.1:] Max = 7.95[epsilon] (Mean = 3.12[epsilon]))]
  1298. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_1[](['GSL 2.1:] Max = 442[epsilon] (Mean = 88.8[epsilon]))]
  1299. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_1[](['GSL 2.1:] Max = 4.41[epsilon] (Mean = 1.81[epsilon]))]
  1300. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_0[](['GSL 2.1:] Max = 5.21[epsilon] (Mean = 1.57[epsilon]))]
  1301. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_0[](['GSL 2.1:] Max = 4.51[epsilon] (Mean = 1.92[epsilon]))]
  1302. [template GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_factorials[](['GSL 2.1:] Max = 33.6[epsilon] (Mean = 2.78[epsilon]))]
  1303. [template GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_factorials[](['GSL 2.1:] Max = 3.95[epsilon] (Mean = 0.783[epsilon]))]
  1304. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_55[](['<math.h>:] Max = 1.58[epsilon] (Mean = 0.672[epsilon]))]
  1305. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_55[](['<math.h>:] Max = 1.79[epsilon] (Mean = 0.75[epsilon]))]
  1306. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_10[](['<math.h>:] Max = 0.997[epsilon] (Mean = 0.412[epsilon]))]
  1307. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_10[](['<math.h>:] Max = 2.26[epsilon] (Mean = 1.08[epsilon]))]
  1308. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_2[](['<math.h>:] Max = 0.741[epsilon] (Mean = 0.263[epsilon]))]
  1309. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_2[](['<math.h>:] Max = 0.558[epsilon] (Mean = 0.298[epsilon]))]
  1310. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_1[](['<math.h>:] Max = 0.615[epsilon] (Mean = 0.096[epsilon]))]
  1311. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_1[](['<math.h>:] Max = 0.918[epsilon] (Mean = 0.203[epsilon]))]
  1312. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_0[](['<math.h>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
  1313. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_0[](['<math.h>:] Max = 1[epsilon] (Mean = 0.376[epsilon]))]
  1314. [template GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__factorials[](['<math.h>:] Max = 1.67[epsilon] (Mean = 0.487[epsilon]))]
  1315. [template GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__factorials[](['<math.h>:] Max = 1.66[epsilon] (Mean = 0.584[epsilon]))]
  1316. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_55[](['<cmath>:] Max = 1.58[epsilon] (Mean = 0.672[epsilon]))]
  1317. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_55[](['<cmath>:] Max = 1.79[epsilon] (Mean = 0.75[epsilon]))]
  1318. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_10[](['<cmath>:] Max = 0.997[epsilon] (Mean = 0.412[epsilon]))]
  1319. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_10[](['<cmath>:] Max = 2.26[epsilon] (Mean = 1.08[epsilon]))]
  1320. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_2[](['<cmath>:] Max = 0.741[epsilon] (Mean = 0.263[epsilon]))]
  1321. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_2[](['<cmath>:] Max = 0.558[epsilon] (Mean = 0.298[epsilon]))]
  1322. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_1[](['<cmath>:] Max = 0.615[epsilon] (Mean = 0.096[epsilon]))]
  1323. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_1[](['<cmath>:] Max = 0.918[epsilon] (Mean = 0.203[epsilon]))]
  1324. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_0[](['<cmath>:] Max = 0.964[epsilon] (Mean = 0.543[epsilon]))]
  1325. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_0[](['<cmath>:] Max = 1[epsilon] (Mean = 0.376[epsilon]))]
  1326. [template GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__factorials[](['<cmath>:] Max = 1.67[epsilon] (Mean = 0.487[epsilon]))]
  1327. [template GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__factorials[](['<cmath>:] Max = 1.66[epsilon] (Mean = 0.584[epsilon]))]
  1328. [template GNU_C_version_7_1_0_linux_long_double_tgamma1pm1_boost_tgamma1pm1_dz_[][role blue Max = 1.12[epsilon] (Mean = 0.49[epsilon])]]
  1329. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_55[][role blue Max = 0.821[epsilon] (Mean = 0.513[epsilon])]]
  1330. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_55[][role blue Max = 2.69[epsilon] (Mean = 1.09[epsilon])]]
  1331. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_10[][role blue Max = 3.81[epsilon] (Mean = 1.01[epsilon])]]
  1332. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_10[][role blue Max = 1.75[epsilon] (Mean = 0.895[epsilon])]]
  1333. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_2[][role blue Max = 0.878[epsilon] (Mean = 0.242[epsilon])]]
  1334. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_2[][role blue Max = 4.1[epsilon] (Mean = 1.55[epsilon])]]
  1335. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_1[][role blue Max = 0.948[epsilon] (Mean = 0.36[epsilon])]]
  1336. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_1[][role blue Max = 2.51[epsilon] (Mean = 1.02[epsilon])]]
  1337. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_0[][role blue Max = 1.42[epsilon] (Mean = 0.566[epsilon])]]
  1338. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_0[][role blue Max = 2[epsilon] (Mean = 0.608[epsilon])]]
  1339. [template GNU_C_version_7_1_0_linux_long_double_lgamma_boost_factorials[][role blue Max = 0.991[epsilon] (Mean = 0.308[epsilon])]]
  1340. [template GNU_C_version_7_1_0_linux_long_double_tgamma_boost_factorials[][role blue Max = 2.67[epsilon] (Mean = 0.617[epsilon])]]
  1341. [template GNU_C_version_7_1_0_linux_double_tgamma1pm1_boost_tgamma1pm1_dz_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1342. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_55[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1343. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_55[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1344. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_10[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1345. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_10[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1346. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_2[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1347. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_2[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1348. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1349. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1350. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1351. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_near_0[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1352. [template GNU_C_version_7_1_0_linux_double_lgamma_boost_factorials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1353. [template GNU_C_version_7_1_0_linux_double_tgamma_boost_factorials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1354. [template GNU_C_version_7_1_0_linux_long_double_hermite_boost_Hermite_Polynomials[][role blue Max = 6.24[epsilon] (Mean = 2.07[epsilon])]]
  1355. [template GNU_C_version_7_1_0_linux_double_hermite_boost_Hermite_Polynomials[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1356. [template GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[][role blue Max = 3.82[epsilon] (Mean = 0.609[epsilon])]]
  1357. [template GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 1.89[epsilon] (Mean = 0.887[epsilon])]]
  1358. [template GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1359. [template GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1360. [template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Integer_Values[](['GSL 2.1:] Max = 254[epsilon] (Mean = 50.9[epsilon]))]
  1361. [template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values[](['GSL 2.1:] Max = 3.9e+05[epsilon] (Mean = 1.82e+04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values And other failures.])]
  1362. [template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Medium_Values[](['GSL 2.1:] Max = 690[epsilon] (Mean = 151[epsilon]))]
  1363. [template GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Values[](['GSL 2.1:] Max = 682[epsilon] (Mean = 32.6[epsilon]))]
  1364. [template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 5.34[epsilon] (Mean = 1.11[epsilon])]]
  1365. [template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 4.45[epsilon] (Mean = 0.814[epsilon])]]
  1366. [template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 11.1[epsilon] (Mean = 3.65[epsilon])]]
  1367. [template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 11.6[epsilon] (Mean = 3.6[epsilon])]]
  1368. [template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 3.45e+04[epsilon] (Mean = 1.32e+03[epsilon])]]
  1369. [template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.96e+04[epsilon] (Mean = 997[epsilon])]]
  1370. [template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.05e+05[epsilon] (Mean = 5.45e+03[epsilon])]]
  1371. [template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 6.84e+04[epsilon] (Mean = 2.76e+03[epsilon])]]
  1372. [template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 73.9[epsilon] (Mean = 11.2[epsilon])]]
  1373. [template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 50[epsilon] (Mean = 12.1[epsilon])]]
  1374. [template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 63.5[epsilon] (Mean = 13.5[epsilon])]]
  1375. [template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 69.2[epsilon] (Mean = 13.4[epsilon])]]
  1376. [template GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 10.6[epsilon] (Mean = 2.22[epsilon])]]
  1377. [template GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 8.97[epsilon] (Mean = 2.09[epsilon])]]
  1378. [template GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 9.92[epsilon] (Mean = 2.3[epsilon])]]
  1379. [template GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 11.1[epsilon] (Mean = 2.32[epsilon])]]
  1380. [template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1381. [template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1382. [template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0.586[epsilon] (Mean = 0.0314[epsilon])]]
  1383. [template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values[][role blue Max = 0.786[epsilon] (Mean = 0.0323[epsilon])]]
  1384. [template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 0.981[epsilon] (Mean = 0.0573[epsilon])]]
  1385. [template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.26[epsilon] (Mean = 0.063[epsilon])]]
  1386. [template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 1.12[epsilon] (Mean = 0.0458[epsilon])]]
  1387. [template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values[][role blue Max = 0.999[epsilon] (Mean = 0.0325[epsilon])]]
  1388. [template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1389. [template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1390. [template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0.949[epsilon] (Mean = 0.098[epsilon])]]
  1391. [template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values[][role blue Max = 0.568[epsilon] (Mean = 0.0254[epsilon])]]
  1392. [template GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1393. [template GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1394. [template GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0.676[epsilon] (Mean = 0.0302[epsilon])]]
  1395. [template GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1396. [template GNU_C_version_7_1_0_linux_long_double_ibetac_inv_boost_Inverse_incomplete_beta[][role blue Max = 4.88e+04[epsilon] (Mean = 3.16e+03[epsilon])]]
  1397. [template GNU_C_version_7_1_0_linux_long_double_ibeta_inv_boost_Inverse_incomplete_beta[][role blue Max = 3.8e+04[epsilon] (Mean = 2.66e+03[epsilon])]]
  1398. [template GNU_C_version_7_1_0_linux_double_ibetac_inv_boost_Inverse_incomplete_beta[][role blue Max = 0.977[epsilon] (Mean = 0.0976[epsilon])]]
  1399. [template GNU_C_version_7_1_0_linux_double_ibeta_inv_boost_Inverse_incomplete_beta[][role blue Max = 11[epsilon] (Mean = 0.345[epsilon])]]
  1400. [template GNU_C_version_7_1_0_linux_long_double_ibetac_invb_boost_Inverse_incomplete_beta[][role blue Max = 317[epsilon] (Mean = 19.8[epsilon])]]
  1401. [template GNU_C_version_7_1_0_linux_long_double_ibeta_invb_boost_Inverse_incomplete_beta[][role blue Max = 407[epsilon] (Mean = 27.2[epsilon])]]
  1402. [template GNU_C_version_7_1_0_linux_long_double_ibetac_inva_boost_Inverse_incomplete_beta[][role blue Max = 382[epsilon] (Mean = 22.2[epsilon])]]
  1403. [template GNU_C_version_7_1_0_linux_long_double_ibeta_inva_boost_Inverse_incomplete_beta[][role blue Max = 377[epsilon] (Mean = 24.4[epsilon])]]
  1404. [template GNU_C_version_7_1_0_linux_double_ibetac_invb_boost_Inverse_incomplete_beta[][role blue Max = 0.724[epsilon] (Mean = 0.0303[epsilon])]]
  1405. [template GNU_C_version_7_1_0_linux_double_ibeta_invb_boost_Inverse_incomplete_beta[][role blue Max = 0.765[epsilon] (Mean = 0.0422[epsilon])]]
  1406. [template GNU_C_version_7_1_0_linux_double_ibetac_inva_boost_Inverse_incomplete_beta[][role blue Max = 0.683[epsilon] (Mean = 0.0314[epsilon])]]
  1407. [template GNU_C_version_7_1_0_linux_double_ibeta_inva_boost_Inverse_incomplete_beta[][role blue Max = 0.602[epsilon] (Mean = 0.0239[epsilon])]]
  1408. [template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 128[epsilon] (Mean = 22.6[epsilon]))]
  1409. [template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 118[epsilon] (Mean = 12.5[epsilon]))]
  1410. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1411. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_integer_and_half_integer_values[](['GSL 2.1:] Max = 117[epsilon] (Mean = 12.5[epsilon]))]
  1412. [template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_large_values[](['GSL 2.1:] Max = 1.02e+03[epsilon] (Mean = 105[epsilon]))]
  1413. [template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_large_values[](['GSL 2.1:] Max = 2.71e+04[epsilon] (Mean = 2.16e+03[epsilon]))]
  1414. [template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] Max = 4.82[epsilon] (Mean = 0.758[epsilon]))]
  1415. [template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] [role red Max = 1.38e+10[epsilon] (Mean = 1.05e+09[epsilon]))]]
  1416. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]))]
  1417. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_small_values[](['GSL 2.1:] [role red Max = 1.38e+10[epsilon] (Mean = 1.05e+09[epsilon]))]]
  1418. [template GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 342[epsilon] (Mean = 45.8[epsilon]))]
  1419. [template GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 201[epsilon] (Mean = 13.5[epsilon]))]
  1420. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 0.833[epsilon] (Mean = 0.0315[epsilon]))]
  1421. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_medium_values[](['GSL 2.1:] Max = 200[epsilon] (Mean = 13.3[epsilon]))]
  1422. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 11.8[epsilon] (Mean = 2.66[epsilon])]]
  1423. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 11.1[epsilon] (Mean = 2.07[epsilon])]]
  1424. [template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 4.83[epsilon] (Mean = 1.15[epsilon])]]
  1425. [template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 5.52[epsilon] (Mean = 1.48[epsilon])]]
  1426. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_large_values[][role blue Max = 3.08e+04[epsilon] (Mean = 1.86e+03[epsilon])]]
  1427. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_large_values[][role blue Max = 6.82e+03[epsilon] (Mean = 414[epsilon])]]
  1428. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_small_values[][role blue Max = 2[epsilon] (Mean = 0.464[epsilon])]]
  1429. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_small_values[][role blue Max = 2.45[epsilon] (Mean = 0.885[epsilon])]]
  1430. [template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_small_values[][role blue Max = 1.97[epsilon] (Mean = 0.555[epsilon])]]
  1431. [template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values[][role blue Max = 2.31[epsilon] (Mean = 0.775[epsilon])]]
  1432. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_medium_values[][role blue Max = 41.6[epsilon] (Mean = 8.09[epsilon])]]
  1433. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_medium_values[][role blue Max = 32.3[epsilon] (Mean = 6.61[epsilon])]]
  1434. [template GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_medium_values[][role blue Max = 6.79[epsilon] (Mean = 1.46[epsilon])]]
  1435. [template GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[][role blue Max = 8.47[epsilon] (Mean = 1.9[epsilon])]]
  1436. [template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1437. [template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1438. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1439. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1440. [template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1441. [template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1442. [template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1443. [template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1444. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_small_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1445. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_small_values[][role blue Max = 0.753[epsilon] (Mean = 0.0474[epsilon])]]
  1446. [template GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_medium_values[][role blue Max = 0.955[epsilon] (Mean = 0.05[epsilon])]]
  1447. [template GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_medium_values[][role blue Max = 0.927[epsilon] (Mean = 0.035[epsilon])]]
  1448. [template GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_medium_values[][role blue Max = 0.833[epsilon] (Mean = 0.0315[epsilon])]]
  1449. [template GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_medium_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1450. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 8.28e+03[epsilon] (Mean = 1.09e+03[epsilon])]]
  1451. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 9.17e+03[epsilon] (Mean = 1.45e+03[epsilon])]]
  1452. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1453. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0.509[epsilon] (Mean = 0.0447[epsilon])]]
  1454. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 6.2[epsilon] (Mean = 0.627[epsilon])]]
  1455. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 1.8[epsilon] (Mean = 0.406[epsilon])]]
  1456. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 292[epsilon] (Mean = 36.4[epsilon])]]
  1457. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values[][role blue Max = 441[epsilon] (Mean = 53.9[epsilon])]]
  1458. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0.894[epsilon] (Mean = 0.0915[epsilon])]]
  1459. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1460. [template GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 0.912[epsilon] (Mean = 0.154[epsilon])]]
  1461. [template GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values[][role blue Max = 0.993[epsilon] (Mean = 0.15[epsilon])]]
  1462. [template GNU_C_version_7_1_0_linux_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 8.42[epsilon] (Mean = 1.3[epsilon])]]
  1463. [template GNU_C_version_7_1_0_linux_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 7.87[epsilon] (Mean = 1.15[epsilon])]]
  1464. [template GNU_C_version_7_1_0_linux_double_gamma_q_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1465. [template GNU_C_version_7_1_0_linux_double_gamma_p_inva_boost_Incomplete_gamma_inverses_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1466. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 121[epsilon] (Mean = 22[epsilon]))]
  1467. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 5.92e+03[epsilon] (Mean = 477[epsilon]))]
  1468. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Large_Phi[](['GSL 2.1:] Max = 4.54e+04[epsilon] (Mean = 2.63e+03[epsilon]))]
  1469. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
  1470. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
  1471. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[](['GSL 2.1:] Max = 0[epsilon] (Mean = 0[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1 And other failures.])]
  1472. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 1.5[epsilon] (Mean = 0.391[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
  1473. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 55.2[epsilon] (Mean = 1.64[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
  1474. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[](['GSL 2.1:] Max = 11.7[epsilon] (Mean = 1.65[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values And other failures.])]
  1475. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 3[epsilon] (Mean = 0.61[epsilon]))]
  1476. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 2.43[epsilon] (Mean = 0.803[epsilon]))]
  1477. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Data[](['GSL 2.1:] Max = 4.02[epsilon] (Mean = 1.07[epsilon]))]
  1478. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 2.82[epsilon] (Mean = 1.18[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
  1479. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 17.3[epsilon] (Mean = 4.29[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
  1480. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[](['GSL 2.1:] Max = 588[epsilon] (Mean = 146[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data And other failures.])]
  1481. [template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.82e+04[epsilon] (Mean = 1.79e+03[epsilon])]]
  1482. [template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.97e+04[epsilon] (Mean = 1.9e+03[epsilon])]]
  1483. [template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 2.45e+04[epsilon] (Mean = 1.51e+03[epsilon])]]
  1484. [template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 3.75e+03[epsilon] (Mean = 293[epsilon])]]
  1485. [template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 675[epsilon] (Mean = 87.1[epsilon])]]
  1486. [template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 109[epsilon] (Mean = 7.35[epsilon])]]
  1487. [template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 22.4[epsilon] (Mean = 0.777[epsilon])]]
  1488. [template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 10.4[epsilon] (Mean = 0.594[epsilon])]]
  1489. [template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 1.99[epsilon] (Mean = 0.347[epsilon])]]
  1490. [template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 1.53[epsilon] (Mean = 0.473[epsilon])]]
  1491. [template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 1.68[epsilon] (Mean = 0.443[epsilon])]]
  1492. [template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 2.01[epsilon] (Mean = 0.584[epsilon])]]
  1493. [template GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 49[epsilon] (Mean = 14[epsilon])]]
  1494. [template GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 71.6[epsilon] (Mean = 19.3[epsilon])]]
  1495. [template GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 341[epsilon] (Mean = 80.7[epsilon])]]
  1496. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 14.1[epsilon] (Mean = 0.897[epsilon])]]
  1497. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 14.2[epsilon] (Mean = 0.927[epsilon])]]
  1498. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi[][role blue Max = 12[epsilon] (Mean = 0.771[epsilon])]]
  1499. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 2.28[epsilon] (Mean = 0.194[epsilon])]]
  1500. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 0.919[epsilon] (Mean = 0.127[epsilon])]]
  1501. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1502. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0.5[epsilon] (Mean = 0.0122[epsilon])]]
  1503. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1504. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1505. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1506. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0.816[epsilon] (Mean = 0.0563[epsilon])]]
  1507. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1508. [template GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1509. [template GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1510. [template GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1511. [template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[][role blue Max = 2.92[epsilon] (Mean = 0.951[epsilon])]]
  1512. [template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[][role blue Max = 2.99[epsilon] (Mean = 0.824[epsilon])]]
  1513. [template GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 1.66[epsilon] (Mean = 0.48[epsilon])]]
  1514. [template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1515. [template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1516. [template GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1517. [template GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__GSL_2_1_Associated_Laguerre_Polynomials[](['GSL 2.1:] Max = 434[epsilon] (Mean = 10.7[epsilon]))]
  1518. [template GNU_C_version_7_1_0_linux_double_laguerre_n_x__GSL_2_1_Laguerre_Polynomials[](['GSL 2.1:] Max = 3.1e+03[epsilon] (Mean = 185[epsilon]))]
  1519. [template GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x___cmath__Associated_Laguerre_Polynomials[](['<cmath>:] Max = 206[epsilon] (Mean = 6.86[epsilon]))]
  1520. [template GNU_C_version_7_1_0_linux_long_double_laguerre_n_x___cmath__Laguerre_Polynomials[](['<cmath>:] Max = 4.2e+03[epsilon] (Mean = 251[epsilon]))]
  1521. [template GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[][role blue Max = 167[epsilon] (Mean = 6.38[epsilon])]]
  1522. [template GNU_C_version_7_1_0_linux_long_double_laguerre_n_x__boost_Laguerre_Polynomials[][role blue Max = 1.39e+04[epsilon] (Mean = 828[epsilon])]]
  1523. [template GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials[][role blue Max = 0.84[epsilon] (Mean = 0.0358[epsilon])]]
  1524. [template GNU_C_version_7_1_0_linux_double_laguerre_n_x__boost_Laguerre_Polynomials[][role blue Max = 6.82[epsilon] (Mean = 0.408[epsilon])]]
  1525. [template GNU_C_version_7_1_0_linux_long_double_expm1__math_h__Random_test_data[](['<math.h>:] Max = 0.992[epsilon] (Mean = 0.402[epsilon]))]
  1526. [template GNU_C_version_7_1_0_linux_long_double_log1p__math_h__Random_test_data[](['<math.h>:] Max = 0.818[epsilon] (Mean = 0.227[epsilon]))]
  1527. [template GNU_C_version_7_1_0_linux_long_double_expm1_boost_Random_test_data[][role blue Max = 0.992[epsilon] (Mean = 0.402[epsilon])]]
  1528. [template GNU_C_version_7_1_0_linux_long_double_log1p_boost_Random_test_data[][role blue Max = 0.818[epsilon] (Mean = 0.227[epsilon])]]
  1529. [template GNU_C_version_7_1_0_linux_double_expm1_boost_Random_test_data[][role blue Max = 0.793[epsilon] (Mean = 0.126[epsilon])]]
  1530. [template GNU_C_version_7_1_0_linux_double_log1p_boost_Random_test_data[][role blue Max = 0.846[epsilon] (Mean = 0.153[epsilon])]]
  1531. [template GNU_C_version_7_1_0_linux_long_double_expm1__cmath__Random_test_data[](['<cmath>:] Max = 0.992[epsilon] (Mean = 0.402[epsilon]))]
  1532. [template GNU_C_version_7_1_0_linux_long_double_log1p__cmath__Random_test_data[](['<cmath>:] Max = 0.818[epsilon] (Mean = 0.227[epsilon]))]
  1533. [template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[][role blue Max = 6.83e+03[epsilon] (Mean = 993[epsilon])]]
  1534. [template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[][role blue Max = 2.5e+04[epsilon] (Mean = 3.78e+03[epsilon])]]
  1535. [template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[][role blue Max = 396[epsilon] (Mean = 50.7[epsilon])]]
  1536. [template GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[][role blue Max = 824[epsilon] (Mean = 27.4[epsilon])]]
  1537. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters[][role blue Max = 0.986[epsilon] (Mean = 0.188[epsilon])]]
  1538. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters[][role blue Max = 1.18[epsilon] (Mean = 0.175[epsilon])]]
  1539. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters[][role blue Max = 0.998[epsilon] (Mean = 0.0936[epsilon])]]
  1540. [template GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters[][role blue Max = 0.998[epsilon] (Mean = 0.0649[epsilon])]]
  1541. [template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 5.02e+03[epsilon] (Mean = 630[epsilon])]]
  1542. [template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 3.07e+03[epsilon] (Mean = 336[epsilon])]]
  1543. [template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 107[epsilon] (Mean = 17.2[epsilon])]]
  1544. [template GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 46.5[epsilon] (Mean = 10.3[epsilon])]]
  1545. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 2.11[epsilon] (Mean = 0.278[epsilon])]]
  1546. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters[][role blue Max = 1.07[epsilon] (Mean = 0.102[epsilon])]]
  1547. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 0.96[epsilon] (Mean = 0.0635[epsilon])]]
  1548. [template GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters[][role blue Max = 0.99[epsilon] (Mean = 0.0544[epsilon])]]
  1549. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[][role blue Max = 9.79e+05[epsilon] (Mean = 1.97e+05[epsilon])]]
  1550. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[][role blue Max = 5.26e+05[epsilon] (Mean = 1.48e+05[epsilon])]]
  1551. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[][role blue Max = 10.5[epsilon] (Mean = 2.13[epsilon])]]
  1552. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[][role blue Max = 3.86[epsilon] (Mean = 1.4[epsilon])]]
  1553. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T[][role blue Max = 201[epsilon] (Mean = 31.7[epsilon])]]
  1554. [template GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T[][role blue Max = 139[epsilon] (Mean = 31[epsilon])]]
  1555. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_[][role blue Max = 478[epsilon] (Mean = 96.3[epsilon])]]
  1556. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_[][role blue Max = 257[epsilon] (Mean = 72.1[epsilon])]]
  1557. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1558. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1559. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T[][role blue Max = 0.707[epsilon] (Mean = 0.0497[epsilon])]]
  1560. [template GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T[][role blue Max = 0.796[epsilon] (Mean = 0.0691[epsilon])]]
  1561. [template GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_large_and_diverse_values_[][role blue Max = 49[epsilon] (Mean = 2.16[epsilon])]]
  1562. [template GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_medium_small_values_[][role blue Max = 3.34[epsilon] (Mean = 0.944[epsilon])]]
  1563. [template GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_large_and_diverse_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1564. [template GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_medium_small_values_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1565. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases[](['GSL 2.1:] Max = 151[epsilon] (Mean = 39.3[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases And other failures.])]
  1566. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_small_arguments[](['GSL 2.1:] Max = 15.2[epsilon] (Mean = 5.03[epsilon]))]
  1567. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments[](['GSL 2.1:] Max = 1.79[epsilon] (Mean = 0.197[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments And other failures.])]
  1568. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments[](['GSL 2.1:] Max = 36.6[epsilon] (Mean = 3.04[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments And other failures.])]
  1569. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments[](['GSL 2.1:] Max = 244[epsilon] (Mean = 32.8[epsilon]) [link errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments And other failures.])]
  1570. [template GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data[](['GSL 2.1:] Max = 62.9[epsilon] (Mean = 12.8[epsilon]))]
  1571. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[][role blue Max = 54.5[epsilon] (Mean = 13.3[epsilon])]]
  1572. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_small_arguments[][role blue Max = 3.33[epsilon] (Mean = 0.75[epsilon])]]
  1573. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments[][role blue Max = 155[epsilon] (Mean = 96.4[epsilon])]]
  1574. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_negative_arguments[][role blue Max = 269[epsilon] (Mean = 87.7[epsilon])]]
  1575. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_arguments[][role blue Max = 2.23[epsilon] (Mean = 0.323[epsilon])]]
  1576. [template GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data[][role blue Max = 7.38[epsilon] (Mean = 1.84[epsilon])]]
  1577. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1578. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_small_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1579. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_negative_arguments[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1580. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_negative_arguments[][role blue Max = 0.516[epsilon] (Mean = 0.022[epsilon])]]
  1581. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_arguments[][role blue Max = 0.998[epsilon] (Mean = 0.0592[epsilon])]]
  1582. [template GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data[][role blue Max = 0.824[epsilon] (Mean = 0.0574[epsilon])]]
  1583. [template GNU_C_version_7_1_0_linux_double_boost_math_powm1_GSL_2_1_powm1[](['GSL 2.1:] Max = 1.06[epsilon] (Mean = 0.425[epsilon]))]
  1584. [template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__math_h__powm1[](['<math.h>:] Max = 2.04[epsilon] (Mean = 0.493[epsilon]))]
  1585. [template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1_boost_powm1[][role blue Max = 2.04[epsilon] (Mean = 0.493[epsilon])]]
  1586. [template GNU_C_version_7_1_0_linux_long_double_powm1_boost_powm1[][role blue Max = 2.04[epsilon] (Mean = 0.493[epsilon])]]
  1587. [template GNU_C_version_7_1_0_linux_long_double_sqrt1pm1_boost_sqrt1pm1[][role blue Max = 1.33[epsilon] (Mean = 0.404[epsilon])]]
  1588. [template GNU_C_version_7_1_0_linux_double_boost_math_powm1_boost_powm1[][role blue Max = 1.06[epsilon] (Mean = 0.425[epsilon])]]
  1589. [template GNU_C_version_7_1_0_linux_double_powm1_boost_powm1[][role blue Max = 1.06[epsilon] (Mean = 0.425[epsilon])]]
  1590. [template GNU_C_version_7_1_0_linux_double_sqrt1pm1_boost_sqrt1pm1[][role blue Max = 1.3[epsilon] (Mean = 0.404[epsilon])]]
  1591. [template GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__cmath__powm1[](['<cmath>:] Max = 2.04[epsilon] (Mean = 0.493[epsilon]))]
  1592. [template GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_i_boost_Spherical_Harmonics[][role blue Max = 2.89e+03[epsilon] (Mean = 108[epsilon])]]
  1593. [template GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_r_boost_Spherical_Harmonics[][role blue Max = 2.89e+03[epsilon] (Mean = 108[epsilon])]]
  1594. [template GNU_C_version_7_1_0_linux_double_spherical_harmonic_i_boost_Spherical_Harmonics[][role blue Max = 1.36[epsilon] (Mean = 0.0765[epsilon])]]
  1595. [template GNU_C_version_7_1_0_linux_double_spherical_harmonic_r_boost_Spherical_Harmonics[][role blue Max = 1.58[epsilon] (Mean = 0.0707[epsilon])]]
  1596. [template GNU_C_version_7_1_0_linux_long_double_tgamma_ratio_boost_tgamma_ratios[][role blue Max = 2.99[epsilon] (Mean = 1.15[epsilon])]]
  1597. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[][role blue Max = 0.853[epsilon] (Mean = 0.176[epsilon])]]
  1598. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[][role blue Max = 0.997[epsilon] (Mean = 0.4[epsilon])]]
  1599. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[][role blue Max = 1.62[epsilon] (Mean = 0.451[epsilon])]]
  1600. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[][role blue Max = 1.96[epsilon] (Mean = 0.677[epsilon])]]
  1601. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[][role blue Max = 7.94[epsilon] (Mean = 1.4[epsilon])]]
  1602. [template GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[][role blue Max = 5.83[epsilon] (Mean = 1.3[epsilon])]]
  1603. [template GNU_C_version_7_1_0_linux_double_tgamma_ratio_boost_tgamma_ratios[][role blue Max = 0.694[epsilon] (Mean = 0.0347[epsilon])]]
  1604. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1605. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1606. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1607. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1608. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1609. [template GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1610. [template GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0.976[epsilon] (Mean = 0.28[epsilon])]]
  1611. [template GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0.976[epsilon] (Mean = 0.293[epsilon])]]
  1612. [template GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0.991[epsilon] (Mean = 0.302[epsilon])]]
  1613. [template GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0.996[epsilon] (Mean = 0.335[epsilon])]]
  1614. [template GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1615. [template GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1616. [template GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1617. [template GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi[][role blue Max = 0[epsilon] (Mean = 0[epsilon])]]
  1618. [/tables:]
  1619. [template table_legendre_p_associated_[]
  1620. [table:table_legendre_p_associated_ Error rates for legendre_p (associated)
  1621. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1622. [[Associated Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_associated__boost_Associated_Legendre_Polynomials_Small_Values]]]
  1623. ]
  1624. ]
  1625. [template table_legendre_q[]
  1626. [table:table_legendre_q Error rates for legendre_q
  1627. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1628. [[Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Small_Values]]]
  1629. [[Legendre Polynomials: Large Values][[GNU_C_version_7_1_0_linux_double_legendre_q_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_q_GSL_2_1_Legendre_Polynomials_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_q_boost_Legendre_Polynomials_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_q_boost_Legendre_Polynomials_Large_Values]]]
  1630. ]
  1631. ]
  1632. [template table_legendre_p[]
  1633. [table:table_legendre_p Error rates for legendre_p
  1634. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1635. [[Legendre Polynomials: Small Values][[GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Small_Values]]]
  1636. [[Legendre Polynomials: Large Values][[GNU_C_version_7_1_0_linux_double_legendre_p_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_legendre_p_GSL_2_1_Legendre_Polynomials_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_legendre_p__cmath__Legendre_Polynomials_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_legendre_p_boost_Legendre_Polynomials_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_legendre_p_boost_Legendre_Polynomials_Large_Values]]]
  1637. ]
  1638. ]
  1639. [template table_trigamma[]
  1640. [table:table_trigamma Error rates for trigamma
  1641. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1642. [[Mathematica Data][[GNU_C_version_7_1_0_linux_double_trigamma_boost_Mathematica_Data][br][br][GNU_C_version_7_1_0_linux_double_trigamma_GSL_2_1_Mathematica_Data][br][GNU_C_version_7_1_0_linux_double_trigamma_Rmath_3_2_3_Mathematica_Data]][[GNU_C_version_7_1_0_linux_long_double_trigamma_boost_Mathematica_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_trigamma_boost_Mathematica_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_trigamma_boost_Mathematica_Data]]]
  1643. ]
  1644. ]
  1645. [template table_zeta[]
  1646. [table:table_zeta Error rates for zeta
  1647. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1648. [[Zeta: Random values greater than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_greater_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_greater_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_greater_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_greater_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_greater_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_greater_than_1]]]
  1649. [[Zeta: Random values less than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Random_values_less_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Random_values_less_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Random_values_less_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Random_values_less_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Random_values_less_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Random_values_less_than_1]]]
  1650. [[Zeta: Values close to and greater than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_greater_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_greater_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_greater_than_1]]]
  1651. [[Zeta: Values close to and less than 1][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Values_close_to_and_less_than_1]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Values_close_to_and_less_than_1][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Values_close_to_and_less_than_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Values_close_to_and_less_than_1]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Values_close_to_and_less_than_1]]]
  1652. [[Zeta: Integer arguments][[GNU_C_version_7_1_0_linux_long_double_zeta_boost_Zeta_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_long_double_zeta__cmath__Zeta_Integer_arguments]][[GNU_C_version_7_1_0_linux_double_zeta_boost_Zeta_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_zeta_GSL_2_1_Zeta_Integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_zeta_boost_Zeta_Integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_zeta_boost_Zeta_Integer_arguments]]]
  1653. ]
  1654. ]
  1655. [template table_cyl_bessel_i_integer_orders_[]
  1656. [table:table_cyl_bessel_i_integer_orders_ Error rates for cyl_bessel_i (integer orders)
  1657. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1658. [[Bessel I0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I0_Mathworld_Data_Integer_Version_]]]
  1659. [[Bessel I1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_I1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_I1_Mathworld_Data_Integer_Version_]]]
  1660. [[Bessel In: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_integer_orders__boost_Bessel_In_Mathworld_Data_Integer_Version_]]]
  1661. ]
  1662. ]
  1663. [template table_cyl_bessel_i[]
  1664. [table:table_cyl_bessel_i Error rates for cyl_bessel_i
  1665. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1666. [[Bessel I0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I0_Mathworld_Data]]]
  1667. [[Bessel I1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_I1_Mathworld_Data]]]
  1668. [[Bessel In: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Mathworld_Data]]]
  1669. [[Bessel Iv: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data]]]
  1670. [[Bessel In: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_In_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_In_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_In_Random_Data]]]
  1671. [[Bessel Iv: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Random_Data]]]
  1672. [[Bessel Iv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_boost_Bessel_Iv_Mathworld_Data_large_values_]]]
  1673. ]
  1674. ]
  1675. [template table_cyl_bessel_i_prime_integer_orders_[]
  1676. [table:table_cyl_bessel_i_prime_integer_orders_ Error rates for cyl_bessel_i_prime (integer orders)
  1677. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1678. [[Bessel I'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_0_Mathworld_Data_Integer_Version_]]]
  1679. [[Bessel I'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_1_Mathworld_Data_Integer_Version_]]]
  1680. [[Bessel I'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_integer_orders__boost_Bessel_I_n_Mathworld_Data_Integer_Version_]]]
  1681. ]
  1682. ]
  1683. [template table_cyl_bessel_i_prime[]
  1684. [table:table_cyl_bessel_i_prime Error rates for cyl_bessel_i_prime
  1685. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1686. [[Bessel I'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_0_Mathworld_Data]]]
  1687. [[Bessel I'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_1_Mathworld_Data]]]
  1688. [[Bessel I'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Mathworld_Data]]]
  1689. [[Bessel I'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data]]]
  1690. [[Bessel I'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_n_Random_Data]]]
  1691. [[Bessel I'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Random_Data]]]
  1692. [[Bessel I'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_i_prime_boost_Bessel_I_v_Mathworld_Data_large_values_]]]
  1693. ]
  1694. ]
  1695. [template table_sph_bessel[]
  1696. [table:table_sph_bessel Error rates for sph_bessel
  1697. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1698. [[Bessel j: Random Data][[GNU_C_version_7_1_0_linux_long_double_sph_bessel_boost_Bessel_j_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_sph_bessel__cmath__Bessel_j_Random_Data]][[GNU_C_version_7_1_0_linux_double_sph_bessel_boost_Bessel_j_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_sph_bessel_GSL_2_1_Bessel_j_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_boost_Bessel_j_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_boost_Bessel_j_Random_Data]]]
  1699. ]
  1700. ]
  1701. [template table_cyl_bessel_j_integer_orders_[]
  1702. [table:table_cyl_bessel_j_integer_orders_ Error rates for cyl_bessel_j (integer orders)
  1703. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1704. [[Bessel J0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Integer_Version_]]]
  1705. [[Bessel J0: Mathworld Data (Tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]]]
  1706. [[Bessel J1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_Integer_Version_]]]
  1707. [[Bessel J1: Mathworld Data (tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]]]
  1708. [[Bessel JN: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]]]
  1709. ]
  1710. ]
  1711. [template table_cyl_bessel_j[]
  1712. [table:table_cyl_bessel_j Error rates for cyl_bessel_j
  1713. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1714. [[Bessel J0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data]]]
  1715. [[Bessel J0: Mathworld Data (Tricky cases)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data_Tricky_cases_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data_Tricky_cases_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]]]
  1716. [[Bessel J1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data]]]
  1717. [[Bessel J1: Mathworld Data (tricky cases)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data_tricky_cases_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data_tricky_cases_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data_tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J1_Mathworld_Data_tricky_cases_]]]
  1718. [[Bessel JN: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Mathworld_Data]]]
  1719. [[Bessel J: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data]]]
  1720. [[Bessel J: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Mathworld_Data_large_values_]]]
  1721. [[Bessel JN: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_JN_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_JN_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_JN_Random_Data]]]
  1722. [[Bessel J: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data]]]
  1723. [[Bessel J: Random Data (Tricky large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Random_Data_Tricky_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data_Tricky_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Random_Data_Tricky_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_boost_Bessel_J_Random_Data_Tricky_large_values_]]]
  1724. ]
  1725. ]
  1726. [template table_sph_bessel_prime[]
  1727. [table:table_sph_bessel_prime Error rates for sph_bessel_prime
  1728. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1729. [[Bessel j': Random Data][[GNU_C_version_7_1_0_linux_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_bessel_prime_boost_Bessel_j_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_bessel_prime_boost_Bessel_j_Random_Data]]]
  1730. ]
  1731. ]
  1732. [template table_cyl_bessel_j_prime_integer_orders_[]
  1733. [table:table_cyl_bessel_j_prime_integer_orders_ Error rates for cyl_bessel_j_prime (integer orders)
  1734. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1735. [[Bessel J0': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Integer_Version_]]]
  1736. [[Bessel J0': Mathworld Data (Tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J0_Mathworld_Data_Tricky_cases_Integer_Version_]]]
  1737. [[Bessel J1': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_Integer_Version_]]]
  1738. [[Bessel J1': Mathworld Data (tricky cases) (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_J1_Mathworld_Data_tricky_cases_Integer_Version_]]]
  1739. [[Bessel JN': Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_integer_orders__boost_Bessel_JN_Mathworld_Data_Integer_Version_]]]
  1740. ]
  1741. ]
  1742. [template table_cyl_bessel_j_prime[]
  1743. [table:table_cyl_bessel_j_prime Error rates for cyl_bessel_j_prime
  1744. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1745. [[Bessel J0': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data]]]
  1746. [[Bessel J0': Mathworld Data (Tricky cases)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J0_Mathworld_Data_Tricky_cases_]]]
  1747. [[Bessel J1': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data]]]
  1748. [[Bessel J1': Mathworld Data (tricky cases)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J1_Mathworld_Data_tricky_cases_]]]
  1749. [[Bessel JN': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Mathworld_Data]]]
  1750. [[Bessel J': Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data]]]
  1751. [[Bessel J': Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Mathworld_Data_large_values_]]]
  1752. [[Bessel JN': Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_JN_Random_Data]]]
  1753. [[Bessel J': Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data]]]
  1754. [[Bessel J': Random Data (Tricky large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_prime_boost_Bessel_J_Random_Data_Tricky_large_values_]]]
  1755. ]
  1756. ]
  1757. [template table_cyl_bessel_k_integer_orders_[]
  1758. [table:table_cyl_bessel_k_integer_orders_ Error rates for cyl_bessel_k (integer orders)
  1759. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1760. [[Bessel K0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K0_Mathworld_Data_Integer_Version_]]]
  1761. [[Bessel K1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_K1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_K1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_K1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_K1_Mathworld_Data_Integer_Version_]]]
  1762. [[Bessel Kn: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__GSL_2_1_Bessel_Kn_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_integer_orders__Rmath_3_2_3_Bessel_Kn_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_integer_orders__boost_Bessel_Kn_Mathworld_Data_Integer_Version_]]]
  1763. ]
  1764. ]
  1765. [template table_cyl_bessel_k[]
  1766. [table:table_cyl_bessel_k Error rates for cyl_bessel_k
  1767. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1768. [[Bessel K0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K0_Mathworld_Data]]]
  1769. [[Bessel K1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_K1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_K1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_K1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_K1_Mathworld_Data]]]
  1770. [[Bessel Kn: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Mathworld_Data]]]
  1771. [[Bessel Kv: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data]]]
  1772. [[Bessel Kv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Mathworld_Data_large_values_]]]
  1773. [[Bessel Kn: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kn_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kn_Random_Data]]]
  1774. [[Bessel Kv: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_bessel_k_Rmath_3_2_3_Bessel_Kv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_boost_Bessel_Kv_Random_Data]]]
  1775. ]
  1776. ]
  1777. [template table_cyl_bessel_k_prime_integer_orders_[]
  1778. [table:table_cyl_bessel_k_prime_integer_orders_ Error rates for cyl_bessel_k_prime (integer orders)
  1779. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1780. [[Bessel K'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_0_Mathworld_Data_Integer_Version_]]]
  1781. [[Bessel K'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_1_Mathworld_Data_Integer_Version_]]]
  1782. [[Bessel K'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_integer_orders__boost_Bessel_K_n_Mathworld_Data_Integer_Version_]]]
  1783. ]
  1784. ]
  1785. [template table_cyl_bessel_k_prime[]
  1786. [table:table_cyl_bessel_k_prime Error rates for cyl_bessel_k_prime
  1787. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1788. [[Bessel K'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_0_Mathworld_Data]]]
  1789. [[Bessel K'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_1_Mathworld_Data]]]
  1790. [[Bessel K'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Mathworld_Data]]]
  1791. [[Bessel K'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data]]]
  1792. [[Bessel K'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Mathworld_Data_large_values_]]]
  1793. [[Bessel K'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_n_Random_Data]]]
  1794. [[Bessel K'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_k_prime_boost_Bessel_K_v_Random_Data]]]
  1795. ]
  1796. ]
  1797. [template table_sph_neumann[]
  1798. [table:table_sph_neumann Error rates for sph_neumann
  1799. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1800. [[y: Random Data][[GNU_C_version_7_1_0_linux_long_double_sph_neumann_boost_y_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_sph_neumann__cmath__y_Random_Data]][[GNU_C_version_7_1_0_linux_double_sph_neumann_boost_y_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_sph_neumann_GSL_2_1_y_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_boost_y_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_boost_y_Random_Data]]]
  1801. ]
  1802. ]
  1803. [template table_cyl_neumann_integer_orders_[]
  1804. [table:table_cyl_neumann_integer_orders_ Error rates for cyl_neumann (integer orders)
  1805. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1806. [[Y0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y0_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y0_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y0_Mathworld_Data_Integer_Version_]]]
  1807. [[Y1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Y1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Y1_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Y1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Y1_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Y1_Mathworld_Data_Integer_Version_]]]
  1808. [[Yn: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__GSL_2_1_Yn_Mathworld_Data_Integer_Version_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_integer_orders__Rmath_3_2_3_Yn_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders__boost_Yn_Mathworld_Data_Integer_Version_][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_integer_orders___math_h__Yn_Mathworld_Data_Integer_Version_]]]
  1809. ]
  1810. ]
  1811. [template table_cyl_neumann[]
  1812. [table:table_cyl_neumann Error rates for cyl_neumann
  1813. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1814. [[Y0: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_Mathworld_Data]]]
  1815. [[Y1: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y1_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y1_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y1_Mathworld_Data]]]
  1816. [[Yn: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Mathworld_Data]]]
  1817. [[Yv: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data]]]
  1818. [[Yv: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Mathworld_Data_large_values_]]]
  1819. [[Y0 and Y1: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Y0_and_Y1_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Y0_and_Y1_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Y0_and_Y1_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Y0_and_Y1_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Y0_and_Y1_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Y0_and_Y1_Random_Data]]]
  1820. [[Yn: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yn_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yn_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yn_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yn_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yn_Random_Data]]]
  1821. [[Yv: Random Data][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_boost_Yv_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]][[GNU_C_version_7_1_0_linux_double_cyl_neumann_boost_Yv_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Random_Data][br][GNU_C_version_7_1_0_linux_double_cyl_neumann_Rmath_3_2_3_Yv_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_boost_Yv_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_boost_Yv_Random_Data]]]
  1822. ]
  1823. ]
  1824. [template table_sph_neumann_prime[]
  1825. [table:table_sph_neumann_prime Error rates for sph_neumann_prime
  1826. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1827. [[y': Random Data][[GNU_C_version_7_1_0_linux_double_sph_neumann_prime_boost_y_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_sph_neumann_prime_boost_y_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sph_neumann_prime_boost_y_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_sph_neumann_prime_boost_y_Random_Data]]]
  1828. ]
  1829. ]
  1830. [template table_cyl_neumann_prime_integer_orders_[]
  1831. [table:table_cyl_neumann_prime_integer_orders_ Error rates for cyl_neumann_prime (integer orders)
  1832. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1833. [[Y'0: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_0_Mathworld_Data_Integer_Version_]]]
  1834. [[Y'1: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_1_Mathworld_Data_Integer_Version_]]]
  1835. [[Y'n: Mathworld Data (Integer Version)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_integer_orders__boost_Y_n_Mathworld_Data_Integer_Version_]]]
  1836. ]
  1837. ]
  1838. [template table_cyl_neumann_prime[]
  1839. [table:table_cyl_neumann_prime Error rates for cyl_neumann_prime
  1840. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1841. [[Y'0: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_Mathworld_Data]]]
  1842. [[Y'1: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_1_Mathworld_Data]]]
  1843. [[Y'n: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Mathworld_Data]]]
  1844. [[Y'v: Mathworld Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data]]]
  1845. [[Y'v: Mathworld Data (large values)][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Mathworld_Data_large_values_]]]
  1846. [[Y'0 and Y'1: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_0_and_Y_1_Random_Data]]]
  1847. [[Y'n: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_n_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_n_Random_Data]]]
  1848. [[Y'v: Random Data][[GNU_C_version_7_1_0_linux_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cyl_neumann_prime_boost_Y_v_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_cyl_neumann_prime_boost_Y_v_Random_Data]]]
  1849. ]
  1850. ]
  1851. [template table_beta[]
  1852. [table:table_beta Error rates for beta
  1853. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1854. [[Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Small_Values]]]
  1855. [[Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Medium_Values]]]
  1856. [[Beta Function: Divergent Values][[GNU_C_version_7_1_0_linux_double_beta_boost_Beta_Function_Divergent_Values][br][br][GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Divergent_Values][br][GNU_C_version_7_1_0_linux_double_beta_Rmath_3_2_3_Beta_Function_Divergent_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_boost_Beta_Function_Divergent_Values][br][br][GNU_C_version_7_1_0_linux_long_double_beta__cmath__Beta_Function_Divergent_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_boost_Beta_Function_Divergent_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_boost_Beta_Function_Divergent_Values]]]
  1857. ]
  1858. ]
  1859. [template table_binomial_coefficient[]
  1860. [table:table_binomial_coefficient Error rates for binomial_coefficient
  1861. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1862. [[Binomials: small arguments][[GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_small_arguments]][[GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_small_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_small_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_small_arguments]]]
  1863. [[Binomials: large arguments][[GNU_C_version_7_1_0_linux_double_binomial_coefficient_boost_Binomials_large_arguments]][[GNU_C_version_7_1_0_linux_long_double_binomial_coefficient_boost_Binomials_large_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_binomial_coefficient_boost_Binomials_large_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_binomial_coefficient_boost_Binomials_large_arguments]]]
  1864. ]
  1865. ]
  1866. [template table_ellint_rg[]
  1867. [table:table_ellint_rg Error rates for ellint_rg
  1868. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1869. [[RG: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_Random_Data]]]
  1870. [[RG: two values 0][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_0]]]
  1871. [[RG: All values the same or zero][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_All_values_the_same_or_zero][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_All_values_the_same_or_zero]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_All_values_the_same_or_zero]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_All_values_the_same_or_zero]]]
  1872. [[RG: two values the same][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_two_values_the_same][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_two_values_the_same]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_two_values_the_same]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_two_values_the_same]]]
  1873. [[RG: one value zero][[GNU_C_version_7_1_0_linux_double_ellint_rg_boost_RG_one_value_zero][br][br][GNU_C_version_7_1_0_linux_double_ellint_rg_GSL_2_1_RG_one_value_zero]][[GNU_C_version_7_1_0_linux_long_double_ellint_rg_boost_RG_one_value_zero]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rg_boost_RG_one_value_zero]]]
  1874. ]
  1875. ]
  1876. [template table_ellint_rd[]
  1877. [table:table_ellint_rd Error rates for ellint_rd
  1878. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1879. [[RD: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_Random_data]]]
  1880. [[RD: y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_y_z]]]
  1881. [[RD: x = y][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y]]]
  1882. [[RD: x = 0, y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0_y_z]]]
  1883. [[RD: x = y = z][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_y_z]]]
  1884. [[RD: x = 0][[GNU_C_version_7_1_0_linux_double_ellint_rd_boost_RD_x_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rd_GSL_2_1_RD_x_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rd_boost_RD_x_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rd_boost_RD_x_0]]]
  1885. ]
  1886. ]
  1887. [template table_ellint_rj[]
  1888. [table:table_ellint_rj Error rates for ellint_rj
  1889. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1890. [[RJ: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Random_data]]]
  1891. [[RJ: 4 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_4_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_4_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_4_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_4_Equal_Values]]]
  1892. [[RJ: 3 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_3_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_3_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_3_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_3_Equal_Values]]]
  1893. [[RJ: 2 Equal Values][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_2_Equal_Values][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_2_Equal_Values]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_2_Equal_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_2_Equal_Values]]]
  1894. [[RJ: Equal z and p][[GNU_C_version_7_1_0_linux_double_ellint_rj_boost_RJ_Equal_z_and_p][br][br][GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Equal_z_and_p]][[GNU_C_version_7_1_0_linux_long_double_ellint_rj_boost_RJ_Equal_z_and_p]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rj_boost_RJ_Equal_z_and_p]]]
  1895. ]
  1896. ]
  1897. [template table_ellint_rc[]
  1898. [table:table_ellint_rc Error rates for ellint_rc
  1899. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1900. [[RC: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rc_boost_RC_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rc_GSL_2_1_RC_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rc_boost_RC_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rc_boost_RC_Random_data]]]
  1901. ]
  1902. ]
  1903. [template table_ellint_rf[]
  1904. [table:table_ellint_rf Error rates for ellint_rf
  1905. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1906. [[RF: Random data][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_Random_data][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_Random_data]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_Random_data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_Random_data]]]
  1907. [[RF: x = y = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_z]]]
  1908. [[RF: x = y or y = z or x = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_y_or_y_z_or_x_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_y_or_y_z_or_x_z]]]
  1909. [[RF: x = 0, y = z][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_x_0_y_z][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_x_0_y_z]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_x_0_y_z]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_x_0_y_z]]]
  1910. [[RF: z = 0][[GNU_C_version_7_1_0_linux_double_ellint_rf_boost_RF_z_0][br][br][GNU_C_version_7_1_0_linux_double_ellint_rf_GSL_2_1_RF_z_0]][[GNU_C_version_7_1_0_linux_long_double_ellint_rf_boost_RF_z_0]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_rf_boost_RF_z_0]]]
  1911. ]
  1912. ]
  1913. [template table_cbrt[]
  1914. [table:table_cbrt Error rates for cbrt
  1915. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1916. [[cbrt Function][[GNU_C_version_7_1_0_linux_double_cbrt_boost_cbrt_Function]][[GNU_C_version_7_1_0_linux_long_double_cbrt_boost_cbrt_Function][br][br][GNU_C_version_7_1_0_linux_long_double_cbrt__cmath__cbrt_Function][br][GNU_C_version_7_1_0_linux_long_double_cbrt__math_h__cbrt_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt_boost_cbrt_Function][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_cbrt__math_h__cbrt_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_cbrt_boost_cbrt_Function][br][br][Microsoft_Visual_C_version_14_1_Win32_double_cbrt__math_h__cbrt_Function]]]
  1917. ]
  1918. ]
  1919. [template table_digamma[]
  1920. [table:table_digamma Error rates for digamma
  1921. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1922. [[Digamma Function: Large Values][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Large_Values][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Large_Values]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Large_Values]]]
  1923. [[Digamma Function: Near the Positive Root][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_the_Positive_Root][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_the_Positive_Root][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_the_Positive_Root]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_the_Positive_Root]]]
  1924. [[Digamma Function: Near Zero][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Near_Zero][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Near_Zero][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Near_Zero]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Near_Zero]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Near_Zero]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Near_Zero]]]
  1925. [[Digamma Function: Negative Values][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Negative_Values][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Negative_Values][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Negative_Values]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Negative_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Negative_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Negative_Values]]]
  1926. [[Digamma Function: Values near 0][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Values_near_0][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Values_near_0][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Values_near_0]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Values_near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Values_near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Values_near_0]]]
  1927. [[Digamma Function: Integer arguments][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Integer_arguments][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Integer_arguments]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Integer_arguments]]]
  1928. [[Digamma Function: Half integer arguments][[GNU_C_version_7_1_0_linux_double_digamma_boost_Digamma_Function_Half_integer_arguments][br][br][GNU_C_version_7_1_0_linux_double_digamma_GSL_2_1_Digamma_Function_Half_integer_arguments][br][GNU_C_version_7_1_0_linux_double_digamma_Rmath_3_2_3_Digamma_Function_Half_integer_arguments]][[GNU_C_version_7_1_0_linux_long_double_digamma_boost_Digamma_Function_Half_integer_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_digamma_boost_Digamma_Function_Half_integer_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_digamma_boost_Digamma_Function_Half_integer_arguments]]]
  1929. ]
  1930. ]
  1931. [template table_ellint_1_complete_[]
  1932. [table:table_ellint_1_complete_ Error rates for ellint_1 (complete)
  1933. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1934. [[Elliptic Integral K: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Mathworld_Data]]]
  1935. [[Elliptic Integral K: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1_complete___cmath__Elliptic_Integral_K_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_complete__GSL_2_1_Elliptic_Integral_K_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_complete__boost_Elliptic_Integral_K_Random_Data]]]
  1936. ]
  1937. ]
  1938. [template table_ellint_1[]
  1939. [table:table_ellint_1 Error rates for ellint_1
  1940. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1941. [[Elliptic Integral F: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Mathworld_Data]]]
  1942. [[Elliptic Integral F: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_1_boost_Elliptic_Integral_F_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_1_GSL_2_1_Elliptic_Integral_F_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_1_boost_Elliptic_Integral_F_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_1_boost_Elliptic_Integral_F_Random_Data]]]
  1943. ]
  1944. ]
  1945. [template table_ellint_2_complete_[]
  1946. [table:table_ellint_2_complete_ Error rates for ellint_2 (complete)
  1947. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1948. [[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Mathworld_Data]]]
  1949. [[Elliptic Integral E: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2_complete___cmath__Elliptic_Integral_E_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_complete__boost_Elliptic_Integral_E_Random_Data]]]
  1950. ]
  1951. ]
  1952. [template table_ellint_2[]
  1953. [table:table_ellint_2 Error rates for ellint_2
  1954. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1955. [[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Mathworld_Data]]]
  1956. [[Elliptic Integral E: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Random_Data]]]
  1957. [[Elliptic Integral E: Small Angles][[GNU_C_version_7_1_0_linux_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles][br][br][GNU_C_version_7_1_0_linux_double_ellint_2_GSL_2_1_Elliptic_Integral_E_Small_Angles]][[GNU_C_version_7_1_0_linux_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Small_Angles]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_2_boost_Elliptic_Integral_E_Small_Angles]]]
  1958. ]
  1959. ]
  1960. [template table_ellint_3_complete_[]
  1961. [table:table_ellint_3_complete_ Error rates for ellint_3 (complete)
  1962. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1963. [[Complete Elliptic Integral PI: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Mathworld_Data]]]
  1964. [[Complete Elliptic Integral PI: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_complete__boost_Complete_Elliptic_Integral_PI_Random_Data]]]
  1965. ]
  1966. ]
  1967. [template table_ellint_3[]
  1968. [table:table_ellint_3 Error rates for ellint_3
  1969. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1970. [[Elliptic Integral PI: Mathworld Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Mathworld_Data]]]
  1971. [[Elliptic Integral PI: Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Random_Data]]]
  1972. [[Elliptic Integral PI: Large Random Data][[GNU_C_version_7_1_0_linux_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data][br][br][GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]][[GNU_C_version_7_1_0_linux_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Large_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_3_boost_Elliptic_Integral_PI_Large_Random_Data]]]
  1973. ]
  1974. ]
  1975. [template table_ellint_d_complete_[]
  1976. [table:table_ellint_d_complete_ Error rates for ellint_d (complete)
  1977. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1978. [[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_E_Mathworld_Data]]]
  1979. [[Elliptic Integral D: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_complete__boost_Elliptic_Integral_D_Random_Data]]]
  1980. ]
  1981. ]
  1982. [template table_ellint_d[]
  1983. [table:table_ellint_d Error rates for ellint_d
  1984. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1985. [[Elliptic Integral E: Mathworld Data][[GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_E_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_E_Mathworld_Data]]]
  1986. [[Elliptic Integral D: Random Data][[GNU_C_version_7_1_0_linux_double_ellint_d_boost_Elliptic_Integral_D_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_ellint_d_GSL_2_1_Elliptic_Integral_D_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_ellint_d_boost_Elliptic_Integral_D_Random_Data]]]
  1987. ]
  1988. ]
  1989. [template table_erfc_inv[]
  1990. [table:table_erfc_inv Error rates for erfc_inv
  1991. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1992. [[Inverse Erfc Function][[GNU_C_version_7_1_0_linux_double_erfc_inv_boost_Inverse_Erfc_Function]][[GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_inv_boost_Inverse_Erfc_Function]]]
  1993. [[Inverse Erfc Function: extreme values][][[GNU_C_version_7_1_0_linux_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_inv_boost_Inverse_Erfc_Function_extreme_values]][]]
  1994. ]
  1995. ]
  1996. [template table_erf_inv[]
  1997. [table:table_erf_inv Error rates for erf_inv
  1998. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  1999. [[Inverse Erf Function][[GNU_C_version_7_1_0_linux_double_erf_inv_boost_Inverse_Erf_Function]][[GNU_C_version_7_1_0_linux_long_double_erf_inv_boost_Inverse_Erf_Function]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_inv_boost_Inverse_Erf_Function]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_inv_boost_Inverse_Erf_Function]]]
  2000. ]
  2001. ]
  2002. [template table_erfc[]
  2003. [table:table_erfc Error rates for erfc
  2004. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2005. [[Erf Function: Small Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Small_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Small_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Small_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Small_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Small_Values]]]
  2006. [[Erf Function: Medium Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Medium_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Medium_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Medium_Values]]]
  2007. [[Erf Function: Large Values][[GNU_C_version_7_1_0_linux_long_double_erfc_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erfc__cmath__Erf_Function_Large_Values][br][GNU_C_version_7_1_0_linux_long_double_erfc__math_h__Erf_Function_Large_Values]][[GNU_C_version_7_1_0_linux_double_erfc_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_erfc_GSL_2_1_Erf_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc_boost_Erf_Function_Large_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erfc__math_h__Erf_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erfc_boost_Erf_Function_Large_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erfc__math_h__Erf_Function_Large_Values]]]
  2008. ]
  2009. ]
  2010. [template table_erf[]
  2011. [table:table_erf Error rates for erf
  2012. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2013. [[Erf Function: Small Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Small_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Small_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Small_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Small_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Small_Values]]]
  2014. [[Erf Function: Medium Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Medium_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Medium_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Medium_Values]]]
  2015. [[Erf Function: Large Values][[GNU_C_version_7_1_0_linux_long_double_erf_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_long_double_erf__cmath__Erf_Function_Large_Values][br][GNU_C_version_7_1_0_linux_long_double_erf__math_h__Erf_Function_Large_Values]][[GNU_C_version_7_1_0_linux_double_erf_boost_Erf_Function_Large_Values][br][br][GNU_C_version_7_1_0_linux_double_erf_GSL_2_1_Erf_Function_Large_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf_boost_Erf_Function_Large_Values][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_erf__math_h__Erf_Function_Large_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_erf_boost_Erf_Function_Large_Values][br][br][Microsoft_Visual_C_version_14_1_Win32_double_erf__math_h__Erf_Function_Large_Values]]]
  2016. ]
  2017. ]
  2018. [template table_expint_En_[]
  2019. [table:table_expint_En_ Error rates for expint (En)
  2020. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2021. [[Exponential Integral En][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En]]]
  2022. [[Exponential Integral En: small z values][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_En_small_z_values][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_En_small_z_values]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_En_small_z_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_En_small_z_values]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_En_small_z_values]]]
  2023. [[Exponential Integral E1][[GNU_C_version_7_1_0_linux_double_expint_En__boost_Exponential_Integral_E1][br][br][GNU_C_version_7_1_0_linux_double_expint_En__GSL_2_1_Exponential_Integral_E1]][[GNU_C_version_7_1_0_linux_long_double_expint_En__boost_Exponential_Integral_E1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_En__boost_Exponential_Integral_E1]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_En__boost_Exponential_Integral_E1]]]
  2024. ]
  2025. ]
  2026. [template table_expint_Ei_[]
  2027. [table:table_expint_Ei_ Error rates for expint (Ei)
  2028. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2029. [[Exponential Integral Ei][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]][[GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei][br][br][GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei]]]
  2030. [[Exponential Integral Ei: double exponent range][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_double_exponent_range]][[GNU_C_version_7_1_0_linux_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range][br][br][GNU_C_version_7_1_0_linux_double_expint_Ei__GSL_2_1_Exponential_Integral_Ei_double_exponent_range]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range]][[Microsoft_Visual_C_version_14_1_Win32_double_expint_Ei__boost_Exponential_Integral_Ei_double_exponent_range]]]
  2031. [[Exponential Integral Ei: long exponent range][[GNU_C_version_7_1_0_linux_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range][br][br][GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei_long_exponent_range]][][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expint_Ei__boost_Exponential_Integral_Ei_long_exponent_range]][]]
  2032. ]
  2033. ]
  2034. [template table_tgamma1pm1[]
  2035. [table:table_tgamma1pm1 Error rates for tgamma1pm1
  2036. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2037. [[tgamma1pm1(dz)][[GNU_C_version_7_1_0_linux_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[GNU_C_version_7_1_0_linux_long_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma1pm1_boost_tgamma1pm1_dz_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma1pm1_boost_tgamma1pm1_dz_]]]
  2038. ]
  2039. ]
  2040. [template table_lgamma[]
  2041. [table:table_lgamma Error rates for lgamma
  2042. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2043. [[factorials][[GNU_C_version_7_1_0_linux_double_lgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_factorials][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_factorials]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__factorials][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__factorials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_factorials][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__factorials]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_factorials][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__factorials]]]
  2044. [[near 0][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_0][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_0]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_0][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_0][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_0][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_0]]]
  2045. [[near 1][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_1][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_1]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_1][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_1]]]
  2046. [[near 2][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_2][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_2]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_2][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_2]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_2][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_2]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_2][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_2]]]
  2047. [[near -10][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_10][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_10]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_10][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_10]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_10][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_10]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_10][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_10]]]
  2048. [[near -55][[GNU_C_version_7_1_0_linux_double_lgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_double_lgamma_GSL_2_1_near_55][br][GNU_C_version_7_1_0_linux_double_lgamma_Rmath_3_2_3_near_55]][[GNU_C_version_7_1_0_linux_long_double_lgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_long_double_lgamma__cmath__near_55][br][GNU_C_version_7_1_0_linux_long_double_lgamma__math_h__near_55]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma_boost_near_55][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_lgamma__math_h__near_55]][[Microsoft_Visual_C_version_14_1_Win32_double_lgamma_boost_near_55][br][br][Microsoft_Visual_C_version_14_1_Win32_double_lgamma__math_h__near_55]]]
  2049. ]
  2050. ]
  2051. [template table_tgamma[]
  2052. [table:table_tgamma Error rates for tgamma
  2053. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2054. [[factorials][[GNU_C_version_7_1_0_linux_double_tgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_factorials][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_factorials]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_factorials][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__factorials][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__factorials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_factorials][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__factorials]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_factorials][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__factorials]]]
  2055. [[near 0][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_0][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_0]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_0][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_0][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_0]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_0][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_0]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_0][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_0]]]
  2056. [[near 1][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_1][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_1]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_1][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_1][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_1]]]
  2057. [[near 2][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_2][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_2]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_2][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_2][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_2]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_2][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_2]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_2][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_2]]]
  2058. [[near -10][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_10][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_10]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_10][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_10][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_10]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_10][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_10]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_10][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_10]]]
  2059. [[near -55][[GNU_C_version_7_1_0_linux_double_tgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_double_tgamma_GSL_2_1_near_55][br][GNU_C_version_7_1_0_linux_double_tgamma_Rmath_3_2_3_near_55]][[GNU_C_version_7_1_0_linux_long_double_tgamma_boost_near_55][br][br][GNU_C_version_7_1_0_linux_long_double_tgamma__cmath__near_55][br][GNU_C_version_7_1_0_linux_long_double_tgamma__math_h__near_55]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_boost_near_55][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma__math_h__near_55]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_boost_near_55][br][br][Microsoft_Visual_C_version_14_1_Win32_double_tgamma__math_h__near_55]]]
  2060. ]
  2061. ]
  2062. [template table_hermite[]
  2063. [table:table_hermite Error rates for hermite
  2064. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2065. [[Hermite Polynomials][[GNU_C_version_7_1_0_linux_double_hermite_boost_Hermite_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_hermite_boost_Hermite_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_hermite_boost_Hermite_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_hermite_boost_Hermite_Polynomials]]]
  2066. ]
  2067. ]
  2068. [template table_heuman_lambda[]
  2069. [table:table_heuman_lambda Error rates for heuman_lambda
  2070. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2071. [[Elliptic Integral Jacobi Zeta: Mathworld Data][[GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]]]
  2072. [[Elliptic Integral Heuman Lambda: Random Data][[GNU_C_version_7_1_0_linux_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_heuman_lambda_boost_Elliptic_Integral_Heuman_Lambda_Random_Data]]]
  2073. ]
  2074. ]
  2075. [template table_ibetac[]
  2076. [table:table_ibetac Error rates for ibetac
  2077. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2078. [[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Values]]]
  2079. [[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Medium_Values]]]
  2080. [[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
  2081. [[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values][br][br][GNU_C_version_7_1_0_linux_double_ibetac_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
  2082. ]
  2083. ]
  2084. [template table_ibeta[]
  2085. [table:table_ibeta Error rates for ibeta
  2086. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2087. [[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Values]]]
  2088. [[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Medium_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Medium_Values]]]
  2089. [[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
  2090. [[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values][br][br][GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Small_Integer_Values][br][GNU_C_version_7_1_0_linux_double_ibeta_Rmath_3_2_3_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
  2091. ]
  2092. ]
  2093. [template table_betac[]
  2094. [table:table_betac Error rates for betac
  2095. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2096. [[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Values]]]
  2097. [[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Medium_Values]]]
  2098. [[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
  2099. [[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_betac_boost_Incomplete_Beta_Function_Small_Integer_Values]]]
  2100. ]
  2101. ]
  2102. [template table_beta_incomplete_[]
  2103. [table:table_beta_incomplete_ Error rates for beta (incomplete)
  2104. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2105. [[Incomplete Beta Function: Small Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Values]]]
  2106. [[Incomplete Beta Function: Medium Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Medium_Values]]]
  2107. [[Incomplete Beta Function: Large and Diverse Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Large_and_Diverse_Values]]]
  2108. [[Incomplete Beta Function: Small Integer Values][[GNU_C_version_7_1_0_linux_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[GNU_C_version_7_1_0_linux_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_beta_incomplete__boost_Incomplete_Beta_Function_Small_Integer_Values]]]
  2109. ]
  2110. ]
  2111. [template table_ibetac_inv[]
  2112. [table:table_ibetac_inv Error rates for ibetac_inv
  2113. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2114. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_inv_boost_Inverse_incomplete_beta][br][br][GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_inv_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inv_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inv_boost_Inverse_incomplete_beta]]]
  2115. ]
  2116. ]
  2117. [template table_ibeta_inv[]
  2118. [table:table_ibeta_inv Error rates for ibeta_inv
  2119. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2120. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_inv_boost_Inverse_incomplete_beta][br][br][GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_inv_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inv_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inv_boost_Inverse_incomplete_beta]]]
  2121. ]
  2122. ]
  2123. [template table_ibetac_invb[]
  2124. [table:table_ibetac_invb Error rates for ibetac_invb
  2125. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2126. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_invb_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_invb_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_invb_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_invb_boost_Inverse_incomplete_beta]]]
  2127. ]
  2128. ]
  2129. [template table_ibeta_invb[]
  2130. [table:table_ibeta_invb Error rates for ibeta_invb
  2131. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2132. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_invb_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_invb_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_invb_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_invb_boost_Inverse_incomplete_beta]]]
  2133. ]
  2134. ]
  2135. [template table_ibetac_inva[]
  2136. [table:table_ibetac_inva Error rates for ibetac_inva
  2137. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2138. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibetac_inva_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibetac_inva_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibetac_inva_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibetac_inva_boost_Inverse_incomplete_beta]]]
  2139. ]
  2140. ]
  2141. [template table_ibeta_inva[]
  2142. [table:table_ibeta_inva Error rates for ibeta_inva
  2143. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2144. [[Inverse incomplete beta][[GNU_C_version_7_1_0_linux_double_ibeta_inva_boost_Inverse_incomplete_beta]][[GNU_C_version_7_1_0_linux_long_double_ibeta_inva_boost_Inverse_incomplete_beta]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_ibeta_inva_boost_Inverse_incomplete_beta]][[Microsoft_Visual_C_version_14_1_Win32_double_ibeta_inva_boost_Inverse_incomplete_beta]]]
  2145. ]
  2146. ]
  2147. [template table_gamma_p[]
  2148. [table:table_gamma_p Error rates for gamma_p
  2149. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2150. [[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_medium_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_medium_values]]]
  2151. [[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_small_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_small_values]]]
  2152. [[tgamma(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_large_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_large_values]]]
  2153. [[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_GSL_2_1_tgamma_a_z_integer_and_half_integer_values][br][GNU_C_version_7_1_0_linux_double_gamma_p_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_boost_tgamma_a_z_integer_and_half_integer_values]]]
  2154. ]
  2155. ]
  2156. [template table_gamma_q[]
  2157. [table:table_gamma_q Error rates for gamma_q
  2158. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2159. [[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_medium_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_medium_values]]]
  2160. [[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_small_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_small_values]]]
  2161. [[tgamma(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_large_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_large_values]]]
  2162. [[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_GSL_2_1_tgamma_a_z_integer_and_half_integer_values][br][GNU_C_version_7_1_0_linux_double_gamma_q_Rmath_3_2_3_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_boost_tgamma_a_z_integer_and_half_integer_values]]]
  2163. ]
  2164. ]
  2165. [template table_tgamma_lower[]
  2166. [table:table_tgamma_lower Error rates for tgamma_lower
  2167. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2168. [[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_medium_values]]]
  2169. [[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_small_values]]]
  2170. [[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_lower_GSL_2_1_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_lower_boost_tgamma_a_z_integer_and_half_integer_values]]]
  2171. ]
  2172. ]
  2173. [template table_tgamma_incomplete_[]
  2174. [table:table_tgamma_incomplete_ Error rates for tgamma (incomplete)
  2175. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2176. [[tgamma(a, z) medium values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_medium_values]]]
  2177. [[tgamma(a, z) small values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_small_values]]]
  2178. [[tgamma(a, z) integer and half integer values][[GNU_C_version_7_1_0_linux_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values][br][br][GNU_C_version_7_1_0_linux_double_tgamma_incomplete__GSL_2_1_tgamma_a_z_integer_and_half_integer_values]][[GNU_C_version_7_1_0_linux_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_incomplete__boost_tgamma_a_z_integer_and_half_integer_values]]]
  2179. ]
  2180. ]
  2181. [template table_gamma_q_inv[]
  2182. [table:table_gamma_q_inv Error rates for gamma_q_inv
  2183. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2184. [[incomplete gamma inverse(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_medium_values]]]
  2185. [[incomplete gamma inverse(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_large_values]]]
  2186. [[incomplete gamma inverse(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_q_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inv_boost_incomplete_gamma_inverse_a_z_small_values]]]
  2187. ]
  2188. ]
  2189. [template table_gamma_p_inv[]
  2190. [table:table_gamma_p_inv Error rates for gamma_p_inv
  2191. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2192. [[incomplete gamma inverse(a, z) medium values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_medium_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_medium_values]]]
  2193. [[incomplete gamma inverse(a, z) large values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_large_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_large_values]]]
  2194. [[incomplete gamma inverse(a, z) small values][[GNU_C_version_7_1_0_linux_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values][br][br][GNU_C_version_7_1_0_linux_double_gamma_p_inv_Rmath_3_2_3_incomplete_gamma_inverse_a_z_small_values]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inv_boost_incomplete_gamma_inverse_a_z_small_values]]]
  2195. ]
  2196. ]
  2197. [template table_gamma_q_inva[]
  2198. [table:table_gamma_q_inva Error rates for gamma_q_inva
  2199. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2200. [[Incomplete gamma inverses.][[GNU_C_version_7_1_0_linux_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[GNU_C_version_7_1_0_linux_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_q_inva_boost_Incomplete_gamma_inverses_]]]
  2201. ]
  2202. ]
  2203. [template table_gamma_p_inva[]
  2204. [table:table_gamma_p_inva Error rates for gamma_p_inva
  2205. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2206. [[Incomplete gamma inverses.][[GNU_C_version_7_1_0_linux_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[GNU_C_version_7_1_0_linux_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]][[Microsoft_Visual_C_version_14_1_Win32_double_gamma_p_inva_boost_Incomplete_gamma_inverses_]]]
  2207. ]
  2208. ]
  2209. [template table_jacobi_dn[]
  2210. [table:table_jacobi_dn Error rates for jacobi_dn
  2211. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2212. [[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Mathworld_Data]]]
  2213. [[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Data]]]
  2214. [[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Random_Small_Values]]]
  2215. [[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Modulus_near_1]]]
  2216. [[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_dn_boost_Jacobi_Elliptic_Large_Phi]]]
  2217. ]
  2218. ]
  2219. [template table_jacobi_cn[]
  2220. [table:table_jacobi_cn Error rates for jacobi_cn
  2221. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2222. [[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Mathworld_Data]]]
  2223. [[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Data]]]
  2224. [[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Random_Small_Values]]]
  2225. [[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Modulus_near_1]]]
  2226. [[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_cn_boost_Jacobi_Elliptic_Large_Phi]]]
  2227. ]
  2228. ]
  2229. [template table_jacobi_sn[]
  2230. [table:table_jacobi_sn Error rates for jacobi_sn
  2231. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2232. [[Jacobi Elliptic: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Mathworld_Data]]]
  2233. [[Jacobi Elliptic: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Data]]]
  2234. [[Jacobi Elliptic: Random Small Values][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Random_Small_Values]]]
  2235. [[Jacobi Elliptic: Modulus near 1][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Modulus_near_1]]]
  2236. [[Jacobi Elliptic: Large Phi][[GNU_C_version_7_1_0_linux_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi][br][br][GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Large_Phi]][[GNU_C_version_7_1_0_linux_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_sn_boost_Jacobi_Elliptic_Large_Phi]]]
  2237. ]
  2238. ]
  2239. [template table_jacobi_zeta[]
  2240. [table:table_jacobi_zeta Error rates for jacobi_zeta
  2241. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2242. [[Elliptic Integral Jacobi Zeta: Mathworld Data][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Mathworld_Data]]]
  2243. [[Elliptic Integral Jacobi Zeta: Random Data][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Random_Data]]]
  2244. [[Elliptic Integral Jacobi Zeta: Large Phi Values][[GNU_C_version_7_1_0_linux_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[GNU_C_version_7_1_0_linux_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]][[Microsoft_Visual_C_version_14_1_Win32_double_jacobi_zeta_boost_Elliptic_Integral_Jacobi_Zeta_Large_Phi_Values]]]
  2245. ]
  2246. ]
  2247. [template table_laguerre_n_m_x_[]
  2248. [table:table_laguerre_n_m_x_ Error rates for laguerre(n, m, x)
  2249. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2250. [[Associated Laguerre Polynomials][[GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_double_laguerre_n_m_x__GSL_2_1_Associated_Laguerre_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_long_double_laguerre_n_m_x___cmath__Associated_Laguerre_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_m_x__boost_Associated_Laguerre_Polynomials]]]
  2251. ]
  2252. ]
  2253. [template table_laguerre_n_x_[]
  2254. [table:table_laguerre_n_x_ Error rates for laguerre(n, x)
  2255. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2256. [[Laguerre Polynomials][[GNU_C_version_7_1_0_linux_double_laguerre_n_x__boost_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_double_laguerre_n_x__GSL_2_1_Laguerre_Polynomials]][[GNU_C_version_7_1_0_linux_long_double_laguerre_n_x__boost_Laguerre_Polynomials][br][br][GNU_C_version_7_1_0_linux_long_double_laguerre_n_x___cmath__Laguerre_Polynomials]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_laguerre_n_x__boost_Laguerre_Polynomials]][[Microsoft_Visual_C_version_14_1_Win32_double_laguerre_n_x__boost_Laguerre_Polynomials]]]
  2257. ]
  2258. ]
  2259. [template table_expm1[]
  2260. [table:table_expm1 Error rates for expm1
  2261. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2262. [[Random test data][[GNU_C_version_7_1_0_linux_long_double_expm1_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_long_double_expm1__cmath__Random_test_data][br][GNU_C_version_7_1_0_linux_long_double_expm1__math_h__Random_test_data]][[GNU_C_version_7_1_0_linux_double_expm1_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_double_expm1_Rmath_3_2_3_Random_test_data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1_boost_Random_test_data][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_expm1__math_h__Random_test_data]][[Microsoft_Visual_C_version_14_1_Win32_double_expm1_boost_Random_test_data][br][br][Microsoft_Visual_C_version_14_1_Win32_double_expm1__math_h__Random_test_data]]]
  2263. ]
  2264. ]
  2265. [template table_log1p[]
  2266. [table:table_log1p Error rates for log1p
  2267. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2268. [[Random test data][[GNU_C_version_7_1_0_linux_long_double_log1p_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_long_double_log1p__cmath__Random_test_data][br][GNU_C_version_7_1_0_linux_long_double_log1p__math_h__Random_test_data]][[GNU_C_version_7_1_0_linux_double_log1p_boost_Random_test_data][br][br][GNU_C_version_7_1_0_linux_double_log1p_Rmath_3_2_3_Random_test_data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p_boost_Random_test_data][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_log1p__math_h__Random_test_data]][[Microsoft_Visual_C_version_14_1_Win32_double_log1p_boost_Random_test_data][br][br][Microsoft_Visual_C_version_14_1_Win32_double_log1p__math_h__Random_test_data]]]
  2269. ]
  2270. ]
  2271. [template table_non_central_beta_CDF_complement[]
  2272. [table:table_non_central_beta_CDF_complement Error rates for non central beta CDF complement
  2273. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2274. [[Non Central Beta, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_medium_parameters]]]
  2275. [[Non Central Beta, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_complement_boost_Non_Central_Beta_large_parameters]]]
  2276. ]
  2277. ]
  2278. [template table_non_central_beta_CDF[]
  2279. [table:table_non_central_beta_CDF Error rates for non central beta CDF
  2280. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2281. [[Non Central Beta, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_medium_parameters]]]
  2282. [[Non Central Beta, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_beta_CDF_boost_Non_Central_Beta_large_parameters]]]
  2283. ]
  2284. ]
  2285. [template table_non_central_chi_squared_CDF_complement[]
  2286. [table:table_non_central_chi_squared_CDF_complement Error rates for non central chi squared CDF complement
  2287. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2288. [[Non Central Chi Squared, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_medium_parameters]]]
  2289. [[Non Central Chi Squared, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_complement_boost_Non_Central_Chi_Squared_large_parameters]]]
  2290. ]
  2291. ]
  2292. [template table_non_central_chi_squared_CDF[]
  2293. [table:table_non_central_chi_squared_CDF Error rates for non central chi squared CDF
  2294. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2295. [[Non Central Chi Squared, medium parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_medium_parameters]]]
  2296. [[Non Central Chi Squared, large parameters][[GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters][br][br][GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]][[GNU_C_version_7_1_0_linux_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_chi_squared_CDF_boost_Non_Central_Chi_Squared_large_parameters]]]
  2297. ]
  2298. ]
  2299. [template table_non_central_t_CDF_complement[]
  2300. [table:table_non_central_t_CDF_complement Error rates for non central t CDF complement
  2301. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2302. [[Non Central T][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T]]]
  2303. [[Non Central T (small non-centrality)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_small_non_centrality_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_small_non_centrality_]]]
  2304. [[Non Central T (large parameters)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T_large_parameters_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_complement_boost_Non_Central_T_large_parameters_]]]
  2305. ]
  2306. ]
  2307. [template table_non_central_t_CDF[]
  2308. [table:table_non_central_t_CDF Error rates for non central t CDF
  2309. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2310. [[Non Central T][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T]]]
  2311. [[Non Central T (small non-centrality)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_small_non_centrality_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_small_non_centrality_]]]
  2312. [[Non Central T (large parameters)][[GNU_C_version_7_1_0_linux_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_][br][br][GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T_large_parameters_]][[GNU_C_version_7_1_0_linux_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]][[Microsoft_Visual_C_version_14_1_Win32_double_non_central_t_CDF_boost_Non_Central_T_large_parameters_]]]
  2313. ]
  2314. ]
  2315. [template table_owens_t[]
  2316. [table:table_owens_t Error rates for owens_t
  2317. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2318. [[Owens T (medium small values)][[GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_medium_small_values_]][[GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_medium_small_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_medium_small_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_medium_small_values_]]]
  2319. [[Owens T (large and diverse values)][[GNU_C_version_7_1_0_linux_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[GNU_C_version_7_1_0_linux_long_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_owens_t_boost_Owens_T_large_and_diverse_values_]][[Microsoft_Visual_C_version_14_1_Win32_double_owens_t_boost_Owens_T_large_and_diverse_values_]]]
  2320. ]
  2321. ]
  2322. [template table_polygamma[]
  2323. [table:table_polygamma Error rates for polygamma
  2324. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2325. [[Mathematica Data][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data]]]
  2326. [[Mathematica Data - large arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_arguments]]]
  2327. [[Mathematica Data - negative arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_negative_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_negative_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_negative_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_negative_arguments]]]
  2328. [[Mathematica Data - large negative arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_large_negative_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_large_negative_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_large_negative_arguments]]]
  2329. [[Mathematica Data - small arguments][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_small_arguments][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_small_arguments][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_small_arguments]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_small_arguments]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_small_arguments]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_small_arguments]]]
  2330. [[Mathematica Data - Large orders and other bug cases][[GNU_C_version_7_1_0_linux_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases][br][br][GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases][br][GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]][[GNU_C_version_7_1_0_linux_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]][[Microsoft_Visual_C_version_14_1_Win32_double_polygamma_boost_Mathematica_Data_Large_orders_and_other_bug_cases]]]
  2331. ]
  2332. ]
  2333. [template table_powm1[]
  2334. [table:table_powm1 Error rates for powm1
  2335. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2336. [[powm1][[GNU_C_version_7_1_0_linux_double_powm1_boost_powm1]][[GNU_C_version_7_1_0_linux_long_double_powm1_boost_powm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_powm1_boost_powm1]][[Microsoft_Visual_C_version_14_1_Win32_double_powm1_boost_powm1]]]
  2337. ]
  2338. ]
  2339. [template table_sqrt1pm1[]
  2340. [table:table_sqrt1pm1 Error rates for sqrt1pm1
  2341. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2342. [[sqrt1pm1][[GNU_C_version_7_1_0_linux_double_sqrt1pm1_boost_sqrt1pm1]][[GNU_C_version_7_1_0_linux_long_double_sqrt1pm1_boost_sqrt1pm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sqrt1pm1_boost_sqrt1pm1]][[Microsoft_Visual_C_version_14_1_Win32_double_sqrt1pm1_boost_sqrt1pm1]]]
  2343. ]
  2344. ]
  2345. [template table_boost_math_powm1[]
  2346. [table:table_boost_math_powm1 Error rates for boost::math::powm1
  2347. [[][GNU C++ version 7.1.0[br]linux[br]long double][GNU C++ version 7.1.0[br]linux[br]double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2348. [[powm1][[GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__math_h__powm1][br][br][GNU_C_version_7_1_0_linux_long_double_boost_math_powm1_boost_powm1][br][br][GNU_C_version_7_1_0_linux_long_double_boost_math_powm1__cmath__powm1]][[GNU_C_version_7_1_0_linux_double_boost_math_powm1_Rmath_3_2_3_powm1][br][br][GNU_C_version_7_1_0_linux_double_boost_math_powm1_GSL_2_1_powm1][br][br][GNU_C_version_7_1_0_linux_double_boost_math_powm1_boost_powm1]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1_boost_powm1][br][br][Sun_compiler_version_0x5150_Sun_Solaris_long_double_boost_math_powm1__math_h__powm1]][[Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1__math_h__powm1][br][br][Microsoft_Visual_C_version_14_1_Win32_double_boost_math_powm1_boost_powm1]]]
  2349. ]
  2350. ]
  2351. [template table_spherical_harmonic_i[]
  2352. [table:table_spherical_harmonic_i Error rates for spherical_harmonic_i
  2353. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2354. [[Spherical Harmonics][[GNU_C_version_7_1_0_linux_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_i_boost_Spherical_Harmonics]][[Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_i_boost_Spherical_Harmonics]]]
  2355. ]
  2356. ]
  2357. [template table_spherical_harmonic_r[]
  2358. [table:table_spherical_harmonic_r Error rates for spherical_harmonic_r
  2359. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2360. [[Spherical Harmonics][[GNU_C_version_7_1_0_linux_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[GNU_C_version_7_1_0_linux_long_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_spherical_harmonic_r_boost_Spherical_Harmonics]][[Microsoft_Visual_C_version_14_1_Win32_double_spherical_harmonic_r_boost_Spherical_Harmonics]]]
  2361. ]
  2362. ]
  2363. [template table_tgamma_ratio[]
  2364. [table:table_tgamma_ratio Error rates for tgamma_ratio
  2365. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2366. [[tgamma ratios][[GNU_C_version_7_1_0_linux_double_tgamma_ratio_boost_tgamma_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_ratio_boost_tgamma_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_ratio_boost_tgamma_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_ratio_boost_tgamma_ratios]]]
  2367. ]
  2368. ]
  2369. [template table_tgamma_delta_ratio[]
  2370. [table:table_tgamma_delta_ratio Error rates for tgamma_delta_ratio
  2371. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2372. [[tgamma + small delta ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios]]]
  2373. [[tgamma + small delta ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_delta_ratios_negative_delta_]]]
  2374. [[tgamma + small integer ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios]]]
  2375. [[tgamma + small integer ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_tgamma_small_integer_ratios_negative_delta_]]]
  2376. [[integer tgamma ratios][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios]]]
  2377. [[integer tgamma ratios (negative delta)][[GNU_C_version_7_1_0_linux_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[GNU_C_version_7_1_0_linux_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]][[Microsoft_Visual_C_version_14_1_Win32_double_tgamma_delta_ratio_boost_integer_tgamma_ratios_negative_delta_]]]
  2378. ]
  2379. ]
  2380. [template table_cos_pi[]
  2381. [table:table_cos_pi Error rates for cos_pi
  2382. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2383. [[sin_pi and cos_pi][[GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi]][[GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi]][[Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi]]]
  2384. [[sin_pi and cos_pi near integers and half integers][[GNU_C_version_7_1_0_linux_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[GNU_C_version_7_1_0_linux_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Microsoft_Visual_C_version_14_1_Win32_double_cos_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]]]
  2385. ]
  2386. ]
  2387. [template table_sin_pi[]
  2388. [table:table_sin_pi Error rates for sin_pi
  2389. [[][GNU C++ version 7.1.0[br]linux[br]double][GNU C++ version 7.1.0[br]linux[br]long double][Sun compiler version 0x5150[br]Sun Solaris[br]long double][Microsoft Visual C++ version 14.1[br]Win32[br]double]]
  2390. [[sin_pi and cos_pi][[GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi]][[GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi]][[Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi]]]
  2391. [[sin_pi and cos_pi near integers and half integers][[GNU_C_version_7_1_0_linux_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[GNU_C_version_7_1_0_linux_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Sun_compiler_version_0x5150_Sun_Solaris_long_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]][[Microsoft_Visual_C_version_14_1_Win32_double_sin_pi_boost_sin_pi_and_cos_pi_near_integers_and_half_integers]]]
  2392. ]
  2393. ]
  2394. [/sections:]
  2395. [template section_legendre_p_associated_[]
  2396. [section:section_legendre_p_associated_ legendre_p (associated)]
  2397. [table_legendre_p_associated_]
  2398. [endsect]
  2399. ]
  2400. [template section_legendre_q[]
  2401. [section:section_legendre_q legendre_q]
  2402. [table_legendre_q]
  2403. [endsect]
  2404. ]
  2405. [template section_legendre_p[]
  2406. [section:section_legendre_p legendre_p]
  2407. [table_legendre_p]
  2408. [endsect]
  2409. ]
  2410. [template section_trigamma[]
  2411. [section:section_trigamma trigamma]
  2412. [table_trigamma]
  2413. [endsect]
  2414. ]
  2415. [template section_zeta[]
  2416. [section:section_zeta zeta]
  2417. [table_zeta]
  2418. [endsect]
  2419. ]
  2420. [template section_cyl_bessel_i_integer_orders_[]
  2421. [section:section_cyl_bessel_i_integer_orders_ cyl_bessel_i (integer orders)]
  2422. [table_cyl_bessel_i_integer_orders_]
  2423. [endsect]
  2424. ]
  2425. [template section_cyl_bessel_i[]
  2426. [section:section_cyl_bessel_i cyl_bessel_i]
  2427. [table_cyl_bessel_i]
  2428. [endsect]
  2429. ]
  2430. [template section_cyl_bessel_i_prime_integer_orders_[]
  2431. [section:section_cyl_bessel_i_prime_integer_orders_ cyl_bessel_i_prime (integer orders)]
  2432. [table_cyl_bessel_i_prime_integer_orders_]
  2433. [endsect]
  2434. ]
  2435. [template section_cyl_bessel_i_prime[]
  2436. [section:section_cyl_bessel_i_prime cyl_bessel_i_prime]
  2437. [table_cyl_bessel_i_prime]
  2438. [endsect]
  2439. ]
  2440. [template section_sph_bessel[]
  2441. [section:section_sph_bessel sph_bessel]
  2442. [table_sph_bessel]
  2443. [endsect]
  2444. ]
  2445. [template section_cyl_bessel_j_integer_orders_[]
  2446. [section:section_cyl_bessel_j_integer_orders_ cyl_bessel_j (integer orders)]
  2447. [table_cyl_bessel_j_integer_orders_]
  2448. [endsect]
  2449. ]
  2450. [template section_cyl_bessel_j[]
  2451. [section:section_cyl_bessel_j cyl_bessel_j]
  2452. [table_cyl_bessel_j]
  2453. [endsect]
  2454. ]
  2455. [template section_sph_bessel_prime[]
  2456. [section:section_sph_bessel_prime sph_bessel_prime]
  2457. [table_sph_bessel_prime]
  2458. [endsect]
  2459. ]
  2460. [template section_cyl_bessel_j_prime_integer_orders_[]
  2461. [section:section_cyl_bessel_j_prime_integer_orders_ cyl_bessel_j_prime (integer orders)]
  2462. [table_cyl_bessel_j_prime_integer_orders_]
  2463. [endsect]
  2464. ]
  2465. [template section_cyl_bessel_j_prime[]
  2466. [section:section_cyl_bessel_j_prime cyl_bessel_j_prime]
  2467. [table_cyl_bessel_j_prime]
  2468. [endsect]
  2469. ]
  2470. [template section_cyl_bessel_k_integer_orders_[]
  2471. [section:section_cyl_bessel_k_integer_orders_ cyl_bessel_k (integer orders)]
  2472. [table_cyl_bessel_k_integer_orders_]
  2473. [endsect]
  2474. ]
  2475. [template section_cyl_bessel_k[]
  2476. [section:section_cyl_bessel_k cyl_bessel_k]
  2477. [table_cyl_bessel_k]
  2478. [endsect]
  2479. ]
  2480. [template section_cyl_bessel_k_prime_integer_orders_[]
  2481. [section:section_cyl_bessel_k_prime_integer_orders_ cyl_bessel_k_prime (integer orders)]
  2482. [table_cyl_bessel_k_prime_integer_orders_]
  2483. [endsect]
  2484. ]
  2485. [template section_cyl_bessel_k_prime[]
  2486. [section:section_cyl_bessel_k_prime cyl_bessel_k_prime]
  2487. [table_cyl_bessel_k_prime]
  2488. [endsect]
  2489. ]
  2490. [template section_sph_neumann[]
  2491. [section:section_sph_neumann sph_neumann]
  2492. [table_sph_neumann]
  2493. [endsect]
  2494. ]
  2495. [template section_cyl_neumann_integer_orders_[]
  2496. [section:section_cyl_neumann_integer_orders_ cyl_neumann (integer orders)]
  2497. [table_cyl_neumann_integer_orders_]
  2498. [endsect]
  2499. ]
  2500. [template section_cyl_neumann[]
  2501. [section:section_cyl_neumann cyl_neumann]
  2502. [table_cyl_neumann]
  2503. [endsect]
  2504. ]
  2505. [template section_sph_neumann_prime[]
  2506. [section:section_sph_neumann_prime sph_neumann_prime]
  2507. [table_sph_neumann_prime]
  2508. [endsect]
  2509. ]
  2510. [template section_cyl_neumann_prime_integer_orders_[]
  2511. [section:section_cyl_neumann_prime_integer_orders_ cyl_neumann_prime (integer orders)]
  2512. [table_cyl_neumann_prime_integer_orders_]
  2513. [endsect]
  2514. ]
  2515. [template section_cyl_neumann_prime[]
  2516. [section:section_cyl_neumann_prime cyl_neumann_prime]
  2517. [table_cyl_neumann_prime]
  2518. [endsect]
  2519. ]
  2520. [template section_beta[]
  2521. [section:section_beta beta]
  2522. [table_beta]
  2523. [endsect]
  2524. ]
  2525. [template section_binomial_coefficient[]
  2526. [section:section_binomial_coefficient binomial_coefficient]
  2527. [table_binomial_coefficient]
  2528. [endsect]
  2529. ]
  2530. [template section_ellint_rg[]
  2531. [section:section_ellint_rg ellint_rg]
  2532. [table_ellint_rg]
  2533. [endsect]
  2534. ]
  2535. [template section_ellint_rd[]
  2536. [section:section_ellint_rd ellint_rd]
  2537. [table_ellint_rd]
  2538. [endsect]
  2539. ]
  2540. [template section_ellint_rj[]
  2541. [section:section_ellint_rj ellint_rj]
  2542. [table_ellint_rj]
  2543. [endsect]
  2544. ]
  2545. [template section_ellint_rc[]
  2546. [section:section_ellint_rc ellint_rc]
  2547. [table_ellint_rc]
  2548. [endsect]
  2549. ]
  2550. [template section_ellint_rf[]
  2551. [section:section_ellint_rf ellint_rf]
  2552. [table_ellint_rf]
  2553. [endsect]
  2554. ]
  2555. [template section_cbrt[]
  2556. [section:section_cbrt cbrt]
  2557. [table_cbrt]
  2558. [endsect]
  2559. ]
  2560. [template section_digamma[]
  2561. [section:section_digamma digamma]
  2562. [table_digamma]
  2563. [endsect]
  2564. ]
  2565. [template section_ellint_1_complete_[]
  2566. [section:section_ellint_1_complete_ ellint_1 (complete)]
  2567. [table_ellint_1_complete_]
  2568. [endsect]
  2569. ]
  2570. [template section_ellint_1[]
  2571. [section:section_ellint_1 ellint_1]
  2572. [table_ellint_1]
  2573. [endsect]
  2574. ]
  2575. [template section_ellint_2_complete_[]
  2576. [section:section_ellint_2_complete_ ellint_2 (complete)]
  2577. [table_ellint_2_complete_]
  2578. [endsect]
  2579. ]
  2580. [template section_ellint_2[]
  2581. [section:section_ellint_2 ellint_2]
  2582. [table_ellint_2]
  2583. [endsect]
  2584. ]
  2585. [template section_ellint_3_complete_[]
  2586. [section:section_ellint_3_complete_ ellint_3 (complete)]
  2587. [table_ellint_3_complete_]
  2588. [endsect]
  2589. ]
  2590. [template section_ellint_3[]
  2591. [section:section_ellint_3 ellint_3]
  2592. [table_ellint_3]
  2593. [endsect]
  2594. ]
  2595. [template section_ellint_d_complete_[]
  2596. [section:section_ellint_d_complete_ ellint_d (complete)]
  2597. [table_ellint_d_complete_]
  2598. [endsect]
  2599. ]
  2600. [template section_ellint_d[]
  2601. [section:section_ellint_d ellint_d]
  2602. [table_ellint_d]
  2603. [endsect]
  2604. ]
  2605. [template section_erfc_inv[]
  2606. [section:section_erfc_inv erfc_inv]
  2607. [table_erfc_inv]
  2608. [endsect]
  2609. ]
  2610. [template section_erf_inv[]
  2611. [section:section_erf_inv erf_inv]
  2612. [table_erf_inv]
  2613. [endsect]
  2614. ]
  2615. [template section_erfc[]
  2616. [section:section_erfc erfc]
  2617. [table_erfc]
  2618. [endsect]
  2619. ]
  2620. [template section_erf[]
  2621. [section:section_erf erf]
  2622. [table_erf]
  2623. [endsect]
  2624. ]
  2625. [template section_expint_En_[]
  2626. [section:section_expint_En_ expint (En)]
  2627. [table_expint_En_]
  2628. [endsect]
  2629. ]
  2630. [template section_expint_Ei_[]
  2631. [section:section_expint_Ei_ expint (Ei)]
  2632. [table_expint_Ei_]
  2633. [endsect]
  2634. ]
  2635. [template section_tgamma1pm1[]
  2636. [section:section_tgamma1pm1 tgamma1pm1]
  2637. [table_tgamma1pm1]
  2638. [endsect]
  2639. ]
  2640. [template section_lgamma[]
  2641. [section:section_lgamma lgamma]
  2642. [table_lgamma]
  2643. [endsect]
  2644. ]
  2645. [template section_tgamma[]
  2646. [section:section_tgamma tgamma]
  2647. [table_tgamma]
  2648. [endsect]
  2649. ]
  2650. [template section_hermite[]
  2651. [section:section_hermite hermite]
  2652. [table_hermite]
  2653. [endsect]
  2654. ]
  2655. [template section_heuman_lambda[]
  2656. [section:section_heuman_lambda heuman_lambda]
  2657. [table_heuman_lambda]
  2658. [endsect]
  2659. ]
  2660. [template section_ibetac[]
  2661. [section:section_ibetac ibetac]
  2662. [table_ibetac]
  2663. [endsect]
  2664. ]
  2665. [template section_ibeta[]
  2666. [section:section_ibeta ibeta]
  2667. [table_ibeta]
  2668. [endsect]
  2669. ]
  2670. [template section_betac[]
  2671. [section:section_betac betac]
  2672. [table_betac]
  2673. [endsect]
  2674. ]
  2675. [template section_beta_incomplete_[]
  2676. [section:section_beta_incomplete_ beta (incomplete)]
  2677. [table_beta_incomplete_]
  2678. [endsect]
  2679. ]
  2680. [template section_ibetac_inv[]
  2681. [section:section_ibetac_inv ibetac_inv]
  2682. [table_ibetac_inv]
  2683. [endsect]
  2684. ]
  2685. [template section_ibeta_inv[]
  2686. [section:section_ibeta_inv ibeta_inv]
  2687. [table_ibeta_inv]
  2688. [endsect]
  2689. ]
  2690. [template section_ibetac_invb[]
  2691. [section:section_ibetac_invb ibetac_invb]
  2692. [table_ibetac_invb]
  2693. [endsect]
  2694. ]
  2695. [template section_ibeta_invb[]
  2696. [section:section_ibeta_invb ibeta_invb]
  2697. [table_ibeta_invb]
  2698. [endsect]
  2699. ]
  2700. [template section_ibetac_inva[]
  2701. [section:section_ibetac_inva ibetac_inva]
  2702. [table_ibetac_inva]
  2703. [endsect]
  2704. ]
  2705. [template section_ibeta_inva[]
  2706. [section:section_ibeta_inva ibeta_inva]
  2707. [table_ibeta_inva]
  2708. [endsect]
  2709. ]
  2710. [template section_gamma_p[]
  2711. [section:section_gamma_p gamma_p]
  2712. [table_gamma_p]
  2713. [endsect]
  2714. ]
  2715. [template section_gamma_q[]
  2716. [section:section_gamma_q gamma_q]
  2717. [table_gamma_q]
  2718. [endsect]
  2719. ]
  2720. [template section_tgamma_lower[]
  2721. [section:section_tgamma_lower tgamma_lower]
  2722. [table_tgamma_lower]
  2723. [endsect]
  2724. ]
  2725. [template section_tgamma_incomplete_[]
  2726. [section:section_tgamma_incomplete_ tgamma (incomplete)]
  2727. [table_tgamma_incomplete_]
  2728. [endsect]
  2729. ]
  2730. [template section_gamma_q_inv[]
  2731. [section:section_gamma_q_inv gamma_q_inv]
  2732. [table_gamma_q_inv]
  2733. [endsect]
  2734. ]
  2735. [template section_gamma_p_inv[]
  2736. [section:section_gamma_p_inv gamma_p_inv]
  2737. [table_gamma_p_inv]
  2738. [endsect]
  2739. ]
  2740. [template section_gamma_q_inva[]
  2741. [section:section_gamma_q_inva gamma_q_inva]
  2742. [table_gamma_q_inva]
  2743. [endsect]
  2744. ]
  2745. [template section_gamma_p_inva[]
  2746. [section:section_gamma_p_inva gamma_p_inva]
  2747. [table_gamma_p_inva]
  2748. [endsect]
  2749. ]
  2750. [template section_jacobi_dn[]
  2751. [section:section_jacobi_dn jacobi_dn]
  2752. [table_jacobi_dn]
  2753. [endsect]
  2754. ]
  2755. [template section_jacobi_cn[]
  2756. [section:section_jacobi_cn jacobi_cn]
  2757. [table_jacobi_cn]
  2758. [endsect]
  2759. ]
  2760. [template section_jacobi_sn[]
  2761. [section:section_jacobi_sn jacobi_sn]
  2762. [table_jacobi_sn]
  2763. [endsect]
  2764. ]
  2765. [template section_jacobi_zeta[]
  2766. [section:section_jacobi_zeta jacobi_zeta]
  2767. [table_jacobi_zeta]
  2768. [endsect]
  2769. ]
  2770. [template section_laguerre_n_m_x_[]
  2771. [section:section_laguerre_n_m_x_ laguerre(n, m, x)]
  2772. [table_laguerre_n_m_x_]
  2773. [endsect]
  2774. ]
  2775. [template section_laguerre_n_x_[]
  2776. [section:section_laguerre_n_x_ laguerre(n, x)]
  2777. [table_laguerre_n_x_]
  2778. [endsect]
  2779. ]
  2780. [template section_expm1[]
  2781. [section:section_expm1 expm1]
  2782. [table_expm1]
  2783. [endsect]
  2784. ]
  2785. [template section_log1p[]
  2786. [section:section_log1p log1p]
  2787. [table_log1p]
  2788. [endsect]
  2789. ]
  2790. [template section_non_central_beta_CDF_complement[]
  2791. [section:section_non_central_beta_CDF_complement non central beta CDF complement]
  2792. [table_non_central_beta_CDF_complement]
  2793. [endsect]
  2794. ]
  2795. [template section_non_central_beta_CDF[]
  2796. [section:section_non_central_beta_CDF non central beta CDF]
  2797. [table_non_central_beta_CDF]
  2798. [endsect]
  2799. ]
  2800. [template section_non_central_chi_squared_CDF_complement[]
  2801. [section:section_non_central_chi_squared_CDF_complement non central chi squared CDF complement]
  2802. [table_non_central_chi_squared_CDF_complement]
  2803. [endsect]
  2804. ]
  2805. [template section_non_central_chi_squared_CDF[]
  2806. [section:section_non_central_chi_squared_CDF non central chi squared CDF]
  2807. [table_non_central_chi_squared_CDF]
  2808. [endsect]
  2809. ]
  2810. [template section_non_central_t_CDF_complement[]
  2811. [section:section_non_central_t_CDF_complement non central t CDF complement]
  2812. [table_non_central_t_CDF_complement]
  2813. [endsect]
  2814. ]
  2815. [template section_non_central_t_CDF[]
  2816. [section:section_non_central_t_CDF non central t CDF]
  2817. [table_non_central_t_CDF]
  2818. [endsect]
  2819. ]
  2820. [template section_owens_t[]
  2821. [section:section_owens_t owens_t]
  2822. [table_owens_t]
  2823. [endsect]
  2824. ]
  2825. [template section_polygamma[]
  2826. [section:section_polygamma polygamma]
  2827. [table_polygamma]
  2828. [endsect]
  2829. ]
  2830. [template section_powm1[]
  2831. [section:section_powm1 powm1]
  2832. [table_powm1]
  2833. [endsect]
  2834. ]
  2835. [template section_sqrt1pm1[]
  2836. [section:section_sqrt1pm1 sqrt1pm1]
  2837. [table_sqrt1pm1]
  2838. [endsect]
  2839. ]
  2840. [template section_boost_math_powm1[]
  2841. [section:section_boost_math_powm1 boost::math::powm1]
  2842. [table_boost_math_powm1]
  2843. [endsect]
  2844. ]
  2845. [template section_spherical_harmonic_i[]
  2846. [section:section_spherical_harmonic_i spherical_harmonic_i]
  2847. [table_spherical_harmonic_i]
  2848. [endsect]
  2849. ]
  2850. [template section_spherical_harmonic_r[]
  2851. [section:section_spherical_harmonic_r spherical_harmonic_r]
  2852. [table_spherical_harmonic_r]
  2853. [endsect]
  2854. ]
  2855. [template section_tgamma_ratio[]
  2856. [section:section_tgamma_ratio tgamma_ratio]
  2857. [table_tgamma_ratio]
  2858. [endsect]
  2859. ]
  2860. [template section_tgamma_delta_ratio[]
  2861. [section:section_tgamma_delta_ratio tgamma_delta_ratio]
  2862. [table_tgamma_delta_ratio]
  2863. [endsect]
  2864. ]
  2865. [template section_cos_pi[]
  2866. [section:section_cos_pi cos_pi]
  2867. [table_cos_pi]
  2868. [endsect]
  2869. ]
  2870. [template section_sin_pi[]
  2871. [section:section_sin_pi sin_pi]
  2872. [table_sin_pi]
  2873. [endsect]
  2874. ]
  2875. [template all_sections[]
  2876. [section_beta]
  2877. [section_beta_incomplete_]
  2878. [section_betac]
  2879. [section_binomial_coefficient]
  2880. [section_boost_math_powm1]
  2881. [section_cbrt]
  2882. [section_cos_pi]
  2883. [section_cyl_bessel_i]
  2884. [section_cyl_bessel_i_integer_orders_]
  2885. [section_cyl_bessel_i_prime]
  2886. [section_cyl_bessel_i_prime_integer_orders_]
  2887. [section_cyl_bessel_j]
  2888. [section_cyl_bessel_j_integer_orders_]
  2889. [section_cyl_bessel_j_prime]
  2890. [section_cyl_bessel_j_prime_integer_orders_]
  2891. [section_cyl_bessel_k]
  2892. [section_cyl_bessel_k_integer_orders_]
  2893. [section_cyl_bessel_k_prime]
  2894. [section_cyl_bessel_k_prime_integer_orders_]
  2895. [section_cyl_neumann]
  2896. [section_cyl_neumann_integer_orders_]
  2897. [section_cyl_neumann_prime]
  2898. [section_cyl_neumann_prime_integer_orders_]
  2899. [section_digamma]
  2900. [section_ellint_1]
  2901. [section_ellint_1_complete_]
  2902. [section_ellint_2]
  2903. [section_ellint_2_complete_]
  2904. [section_ellint_3]
  2905. [section_ellint_3_complete_]
  2906. [section_ellint_d]
  2907. [section_ellint_d_complete_]
  2908. [section_ellint_rc]
  2909. [section_ellint_rd]
  2910. [section_ellint_rf]
  2911. [section_ellint_rg]
  2912. [section_ellint_rj]
  2913. [section_erf]
  2914. [section_erf_inv]
  2915. [section_erfc]
  2916. [section_erfc_inv]
  2917. [section_expint_Ei_]
  2918. [section_expint_En_]
  2919. [section_expm1]
  2920. [section_gamma_p]
  2921. [section_gamma_p_inv]
  2922. [section_gamma_p_inva]
  2923. [section_gamma_q]
  2924. [section_gamma_q_inv]
  2925. [section_gamma_q_inva]
  2926. [section_hermite]
  2927. [section_heuman_lambda]
  2928. [section_ibeta]
  2929. [section_ibeta_inv]
  2930. [section_ibeta_inva]
  2931. [section_ibeta_invb]
  2932. [section_ibetac]
  2933. [section_ibetac_inv]
  2934. [section_ibetac_inva]
  2935. [section_ibetac_invb]
  2936. [section_jacobi_cn]
  2937. [section_jacobi_dn]
  2938. [section_jacobi_sn]
  2939. [section_jacobi_zeta]
  2940. [section_laguerre_n_m_x_]
  2941. [section_laguerre_n_x_]
  2942. [section_legendre_p]
  2943. [section_legendre_p_associated_]
  2944. [section_legendre_q]
  2945. [section_lgamma]
  2946. [section_log1p]
  2947. [section_non_central_beta_CDF]
  2948. [section_non_central_beta_CDF_complement]
  2949. [section_non_central_chi_squared_CDF]
  2950. [section_non_central_chi_squared_CDF_complement]
  2951. [section_non_central_t_CDF]
  2952. [section_non_central_t_CDF_complement]
  2953. [section_owens_t]
  2954. [section_polygamma]
  2955. [section_powm1]
  2956. [section_sin_pi]
  2957. [section_sph_bessel]
  2958. [section_sph_bessel_prime]
  2959. [section_sph_neumann]
  2960. [section_sph_neumann_prime]
  2961. [section_spherical_harmonic_i]
  2962. [section_spherical_harmonic_r]
  2963. [section_sqrt1pm1]
  2964. [section_tgamma]
  2965. [section_tgamma1pm1]
  2966. [section_tgamma_delta_ratio]
  2967. [section_tgamma_incomplete_]
  2968. [section_tgamma_lower]
  2969. [section_tgamma_ratio]
  2970. [section_trigamma]
  2971. [section_zeta]
  2972. ]
  2973. [template all_tables[]
  2974. [table_beta]
  2975. [table_beta_incomplete_]
  2976. [table_betac]
  2977. [table_binomial_coefficient]
  2978. [table_boost_math_powm1]
  2979. [table_cbrt]
  2980. [table_cos_pi]
  2981. [table_cyl_bessel_i]
  2982. [table_cyl_bessel_i_integer_orders_]
  2983. [table_cyl_bessel_i_prime]
  2984. [table_cyl_bessel_i_prime_integer_orders_]
  2985. [table_cyl_bessel_j]
  2986. [table_cyl_bessel_j_integer_orders_]
  2987. [table_cyl_bessel_j_prime]
  2988. [table_cyl_bessel_j_prime_integer_orders_]
  2989. [table_cyl_bessel_k]
  2990. [table_cyl_bessel_k_integer_orders_]
  2991. [table_cyl_bessel_k_prime]
  2992. [table_cyl_bessel_k_prime_integer_orders_]
  2993. [table_cyl_neumann]
  2994. [table_cyl_neumann_integer_orders_]
  2995. [table_cyl_neumann_prime]
  2996. [table_cyl_neumann_prime_integer_orders_]
  2997. [table_digamma]
  2998. [table_ellint_1]
  2999. [table_ellint_1_complete_]
  3000. [table_ellint_2]
  3001. [table_ellint_2_complete_]
  3002. [table_ellint_3]
  3003. [table_ellint_3_complete_]
  3004. [table_ellint_d]
  3005. [table_ellint_d_complete_]
  3006. [table_ellint_rc]
  3007. [table_ellint_rd]
  3008. [table_ellint_rf]
  3009. [table_ellint_rg]
  3010. [table_ellint_rj]
  3011. [table_erf]
  3012. [table_erf_inv]
  3013. [table_erfc]
  3014. [table_erfc_inv]
  3015. [table_expint_Ei_]
  3016. [table_expint_En_]
  3017. [table_expm1]
  3018. [table_gamma_p]
  3019. [table_gamma_p_inv]
  3020. [table_gamma_p_inva]
  3021. [table_gamma_q]
  3022. [table_gamma_q_inv]
  3023. [table_gamma_q_inva]
  3024. [table_hermite]
  3025. [table_heuman_lambda]
  3026. [table_ibeta]
  3027. [table_ibeta_inv]
  3028. [table_ibeta_inva]
  3029. [table_ibeta_invb]
  3030. [table_ibetac]
  3031. [table_ibetac_inv]
  3032. [table_ibetac_inva]
  3033. [table_ibetac_invb]
  3034. [table_jacobi_cn]
  3035. [table_jacobi_dn]
  3036. [table_jacobi_sn]
  3037. [table_jacobi_zeta]
  3038. [table_laguerre_n_m_x_]
  3039. [table_laguerre_n_x_]
  3040. [table_legendre_p]
  3041. [table_legendre_p_associated_]
  3042. [table_legendre_q]
  3043. [table_lgamma]
  3044. [table_log1p]
  3045. [table_non_central_beta_CDF]
  3046. [table_non_central_beta_CDF_complement]
  3047. [table_non_central_chi_squared_CDF]
  3048. [table_non_central_chi_squared_CDF_complement]
  3049. [table_non_central_t_CDF]
  3050. [table_non_central_t_CDF_complement]
  3051. [table_owens_t]
  3052. [table_polygamma]
  3053. [table_powm1]
  3054. [table_sin_pi]
  3055. [table_sph_bessel]
  3056. [table_sph_bessel_prime]
  3057. [table_sph_neumann]
  3058. [table_sph_neumann_prime]
  3059. [table_spherical_harmonic_i]
  3060. [table_spherical_harmonic_r]
  3061. [table_sqrt1pm1]
  3062. [table_tgamma]
  3063. [table_tgamma1pm1]
  3064. [table_tgamma_delta_ratio]
  3065. [table_tgamma_incomplete_]
  3066. [table_tgamma_lower]
  3067. [table_tgamma_ratio]
  3068. [table_trigamma]
  3069. [table_zeta]
  3070. ]
  3071. [/error_content:]
  3072. [template errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_[]
  3073. [h4 Error Output For cyl_bessel_j (integer orders) with compiler Microsoft Visual C++ version 14.1 and library <math.h> and test data Bessel JN: Mathworld Data (Integer Version)]
  3074. [#errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]
  3075. CAUTION: Found non-finite result, when a finite value was expected at entry 16[br]Found: -nan(ind) Expected 0 Error: 1.79769e+308[br]10, 1e-100, 0[br]CAUTION: Gross error found at entry 16.[br]Found: -nan(ind) Expected 0 Error: 1.79769e+308[br]10, 1e-100, 0[br]
  3076. ]
  3077. [template errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values[]
  3078. [h4 Error Output For legendre_p (associated) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Associated Legendre Polynomials: Small Values]
  3079. [#errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]
  3080. domain error[br]3.75573, -3, 0.264719, 0.0186823[br]domain error[br]3.75573, -3, 0.670017, 0.0085227[br]domain error[br]3.75573, -3, 0.915014, 0.00136786[br]domain error[br]3.75573, -3, 0.93539, 0.000921218[br]domain error[br]3.75573, -2, -0.804919, -0.035427[br]domain error[br]3.75573, -2, -0.623236, -0.0476446[br]domain error[br]3.75573, -2, 0.629447, 0.0475072[br]domain error[br]3.75573, -2, 0.929777, 0.0157498[br]domain error[br]3.75573, -2, 0.985763, 0.0034837[br]domain error[br]3.75573, -1, 0.093763, -0.118979[br]domain error[br]4.28576, -4, 0.0944412, 0.00255792[br]domain error[br]4.28576, -4, 0.670017, 0.000790849[br]domain error[br]4.28576, -3, -0.746026, -0.00458957[br]domain error[br]4.28576, -2, -0.623236, 0.0219016[br]domain error[br]4.28576, -2, 0.629447, 0.0223081[br]domain error[br]4.28576, -2, 0.93539, 0.0133504[br]domain error[br]4.28576, -1, 0.915014, 0.132001[br]domain error[br]4.28576, -1, 0.985763, 0.0787743[br]domain error[br]4.43859, -4, 0.093763, 0.00255858[br]domain error[br]4.43859, -4, 0.811584, 0.000303404[br]domain error[br]4.43859, -4, 0.826752, 0.000260835[br]domain error[br]4.43859, -4, 0.929777, 4.78235e-05[br]domain error[br]4.43859, -3, -0.804919, -0.00350364[br]domain error[br]4.43859, -3, -0.729046, -0.00487043[br]domain error[br]4.43859, -3, -0.623236, -0.00620995[br]domain error[br]4.43859, -3, 0.93539, 0.000861698[br]domain error[br]4.43859, -2, -0.557932, 0.0169167[br]domain error[br]4.43859, -2, -0.443004, 0.0062586[br]domain error[br]4.43859, -2, 0.915014, 0.016481[br]domain error[br]4.43859, -1, 0.629447, -0.0138523[br]domain error[br]5.39088, -5, 0.0944412, 0.000254649[br]domain error[br]5.39088, -5, 0.264719, 0.000217164[br]domain error[br]5.39088, -5, 0.670017, 5.87083e-05[br]domain error[br]5.39088, -5, 0.915014, 2.78273e-06[br]domain error[br]5.39088, -3, 0.929777, 0.000880849[br]domain error[br]5.39088, -2, 0.629447, 0.00448021[br]domain error[br]5.39088, -2, 0.826752, 0.01718[br]domain error[br]5.39088, -2, 0.937736, 0.011583[br]domain error[br]5.39088, -1, -0.804919, 0.0276144[br]domain error[br]5.39088, -1, -0.746026, -0.0119425[br]domain error[br]5.39088, -1, -0.443004, -0.0525987[br]domain error[br]5.39088, -1, 0.811584, 0.032475[br]domain error[br]5.39088, -1, 0.985763, 0.0759289[br]domain error[br]5.97861, -5, -0.729046, 3.91223e-05[br]domain error[br]5.97861, -5, -0.383666, 0.000174899[br]domain error[br]5.97861, -5, 0.93539, 1.43993e-06[br]domain error[br]5.97861, -4, -0.623236, -0.000607048[br]domain error[br]5.97861, -4, 0.264719, 0.00059614[br]domain error[br]5.97861, -3, 0.629447, 0.00313497[br]domain error[br]5.97861, -3, 0.670017, 0.00323895[br]domain error[br]5.97861, -2, 0.915014, 0.0140705[br]domain error[br]5.97861, -2, 0.992923, 0.00171356[br]domain error[br]5.97861, -1, -0.746026, -0.0119425[br]domain error[br]5.97861, -1, 0.937736, 0.106972[br]domain error[br]7.01297, -6, -0.443004, -4.99177e-06[br]domain error[br]7.01297, -6, 0.629447, 3.00689e-06[br]domain error[br]7.01297, -6, 0.811584, 7.00407e-07[br]domain error[br]7.01297, -6, 0.985763, 4.83431e-10[br]domain error[br]7.01297, -3, 0.670017, 0.000233323[br]domain error[br]7.01297, -2, -0.804919, -0.0027739[br]domain error[br]7.01297, -1, -0.383666, 0.0397866[br]domain error[br]7.01297, -1, 0.929777, 0.0544549[br]domain error[br]7.54701, -7, 0.929777, 1.42008e-09[br]domain error[br]7.54701, -6, 0.992923, 6.04622e-11[br]domain error[br]7.54701, -5, -0.804919, 1.18502e-05[br]domain error[br]7.54701, -5, -0.623236, 2.57049e-05[br]domain error[br]7.54701, -5, -0.557932, 2.60266e-05[br]domain error[br]7.54701, -5, 0.826752, 9.64276e-06[br]domain error[br]7.54701, -4, -0.746026, -0.0001618[br]domain error[br]7.54701, -3, 0.0944412, 0.000622493[br]domain error[br]7.54701, -3, 0.985763, 9.14782e-05[br]domain error[br]7.54701, -1, 0.811584, -0.0376184[br]domain error[br]11.8439, -10, -0.557932, -2.32652e-11[br]domain error[br]11.8439, -10, 0.811584, 1.01194e-12[br]domain error[br]11.8439, -8, -0.746026, -1.34891e-09[br]domain error[br]11.8439, -8, -0.729046, -1.5428e-09[br]domain error[br]11.8439, -8, 0.985763, 5.90035e-14[br]domain error[br]11.8439, -4, 0.629447, -1.44723e-05[br]domain error[br]11.8439, -4, 0.929777, 1.98812e-05[br]domain error[br]11.8439, -3, 0.670017, -4.58296e-05[br]domain error[br]11.8439, -2, 0.826752, -0.00244759[br]domain error[br]11.8439, -2, 0.992923, 0.00151458[br]domain error[br]11.8439, -1, -0.383666, 0.00419108[br]domain error[br]11.85, -11, 0.093763, 1.16526e-11[br]domain error[br]11.85, -11, 0.929777, 2.05797e-16[br]domain error[br]11.85, -11, 0.93539, 1.32249e-16[br]domain error[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3081. ]
  3082. [template errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values[]
  3083. [h4 Error Output For legendre_p (associated) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Associated Legendre Polynomials: Small Values]
  3084. [#errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]
  3085. order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.264719, 0.0186823[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.670017, 0.0085227[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.915014, 0.00136786[br]order parameters less than 0 not supported in TR1[br]3.75573, -3, 0.93539, 0.000921218[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, -0.804919, -0.035427[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, -0.623236, -0.0476446[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.629447, 0.0475072[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.929777, 0.0157498[br]order parameters less than 0 not supported in TR1[br]3.75573, -2, 0.985763, 0.0034837[br]order parameters less than 0 not supported in TR1[br]3.75573, -1, 0.093763, -0.118979[br]order parameters less than 0 not supported in TR1[br]4.28576, -4, 0.0944412, 0.00255792[br]order parameters less than 0 not supported in TR1[br]4.28576, -4, 0.670017, 0.000790849[br]order parameters less than 0 not supported in TR1[br]4.28576, -3, -0.746026, -0.00458957[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, -0.623236, 0.0219016[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, 0.629447, 0.0223081[br]order parameters less than 0 not supported in TR1[br]4.28576, -2, 0.93539, 0.0133504[br]order parameters less than 0 not supported in TR1[br]4.28576, -1, 0.915014, 0.132001[br]order parameters less than 0 not supported in TR1[br]4.28576, -1, 0.985763, 0.0787743[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.093763, 0.00255858[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.811584, 0.000303404[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.826752, 0.000260835[br]order parameters less than 0 not supported in TR1[br]4.43859, -4, 0.929777, 4.78235e-05[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.804919, -0.00350364[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.729046, -0.00487043[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, -0.623236, -0.00620995[br]order parameters less than 0 not supported in TR1[br]4.43859, -3, 0.93539, 0.000861698[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, -0.557932, 0.0169167[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, -0.443004, 0.0062586[br]order parameters less than 0 not supported in TR1[br]4.43859, -2, 0.915014, 0.016481[br]order parameters less than 0 not supported in TR1[br]4.43859, -1, 0.629447, -0.0138523[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.0944412, 0.000254649[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.264719, 0.000217164[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.670017, 5.87083e-05[br]order parameters less than 0 not supported in TR1[br]5.39088, -5, 0.915014, 2.78273e-06[br]order parameters less than 0 not supported in TR1[br]5.39088, -3, 0.929777, 0.000880849[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.629447, 0.00448021[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.826752, 0.01718[br]order parameters less than 0 not supported in TR1[br]5.39088, -2, 0.937736, 0.011583[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.804919, 0.0276144[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.746026, -0.0119425[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, -0.443004, -0.0525987[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, 0.811584, 0.032475[br]order parameters less than 0 not supported in TR1[br]5.39088, -1, 0.985763, 0.0759289[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, -0.729046, 3.91223e-05[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, -0.383666, 0.000174899[br]order parameters less than 0 not supported in TR1[br]5.97861, -5, 0.93539, 1.43993e-06[br]order parameters less than 0 not supported in TR1[br]5.97861, -4, -0.623236, -0.000607048[br]order parameters less than 0 not supported in TR1[br]5.97861, -4, 0.264719, 0.00059614[br]order parameters less than 0 not supported in TR1[br]5.97861, -3, 0.629447, 0.00313497[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3086. ]
  3087. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_[]
  3088. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel Iv: Mathworld Data (large values)]
  3089. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]
  3090. CAUTION: Gross error found at entry 0.[br]Found: 0 Expected 1.86459e-155 Error: 8.37988e+152[br]-1, 3.72917e-155, 1.86459e-155[br]CAUTION: Gross error found at entry 1.[br]Found: 0 Expected 1.86459e-155 Error: 8.37988e+152[br]1, 3.72917e-155, 1.86459e-155[br]CAUTION: Gross error found at entry 3.[br]Found: 0 Expected 8.02269e-175 Error: 3.60559e+133[br]1.125, 3.72917e-155, 8.02269e-175[br]
  3091. ]
  3092. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_[]
  3093. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel In: Mathworld Data (Integer Version)]
  3094. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]
  3095. Unsupported domain[br]-5, -1, -0.000271463[br]Unsupported domain[br]10, -5, 0.00458004[br]Unsupported domain[br]-100, -200, 4.35275e+74[br]
  3096. ]
  3097. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_[]
  3098. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I1: Mathworld Data (Integer Version)]
  3099. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]
  3100. Unsupported domain[br]1, -2, -1.59064[br]Unsupported domain[br]1, -8, -399.873[br]Unsupported domain[br]1, -10, -2670.99[br]
  3101. ]
  3102. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_[]
  3103. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I0: Mathworld Data (Integer Version)]
  3104. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]
  3105. Unsupported domain[br]0, -2, 2.27959[br]Unsupported domain[br]0, -7, 168.594[br]Unsupported domain[br]0, -1, 1.26607[br]
  3106. ]
  3107. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data[]
  3108. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel In: Mathworld Data]
  3109. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]
  3110. Unsupported domain[br]-5, -1, -0.000271463[br]Unsupported domain[br]10, -5, 0.00458004[br]Unsupported domain[br]-100, -200, 4.35275e+74[br]
  3111. ]
  3112. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data[]
  3113. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I1: Mathworld Data]
  3114. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]
  3115. Unsupported domain[br]1, -2, -1.59064[br]Unsupported domain[br]1, -8, -399.873[br]Unsupported domain[br]1, -10, -2670.99[br]
  3116. ]
  3117. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data[]
  3118. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel I0: Mathworld Data]
  3119. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]
  3120. Unsupported domain[br]0, -2, 2.27959[br]Unsupported domain[br]0, -7, 168.594[br]Unsupported domain[br]0, -1, 1.26607[br]
  3121. ]
  3122. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data[]
  3123. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J: Mathworld Data]
  3124. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]
  3125. CAUTION: Gross error found at entry 6.[br]Found: 0 Expected -0.000747424 Error: 3.3591e+304[br]5.5, 1e+06, -0.000747424[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.0007766 Error: 3.49022e+304[br]5.125, 1e+06, -0.0007766[br]CAUTION: Gross error found at entry 8.[br]Found: 0 Expected -0.000466323 Error: 2.09576e+304[br]5.875, 1e+06, -0.000466323[br]
  3126. ]
  3127. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_[]
  3128. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel JN: Mathworld Data (Integer Version)]
  3129. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]
  3130. Unsupported domain[br]5, -10, 0.234062[br]CAUTION: Gross error found at entry 6.[br]Found: 0 Expected 0.000725964 Error: 3.26265e+304[br]-5, 1e+06, 0.000725964[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.000725964 Error: 3.26265e+304[br]5, 1e+06, -0.000725964[br]Unsupported domain[br]-5, -1, 0.000249758[br]Unsupported domain[br]10, -10, 0.207486[br]Unsupported domain[br]10, -5, 0.0014678[br]CAUTION: Gross error found at entry 12.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]10, 1e+06, -0.000331079[br]
  3131. ]
  3132. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_[]
  3133. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J1: Mathworld Data (Integer Version)]
  3134. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]
  3135. Unsupported domain[br]1, -2, -0.576725[br]Unsupported domain[br]1, -8, -0.234636[br]Unsupported domain[br]1, -10, -0.0434727[br]
  3136. ]
  3137. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_[]
  3138. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J0: Mathworld Data (Integer Version)]
  3139. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]
  3140. Unsupported domain[br]0, -2, 0.223891[br]Unsupported domain[br]0, -8, 0.171651[br]Unsupported domain[br]0, -10, -0.245936[br]
  3141. ]
  3142. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data[]
  3143. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel JN: Mathworld Data]
  3144. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]
  3145. Unsupported domain[br]5, -10, 0.234062[br]CAUTION: Gross error found at entry 6.[br]Found: 0 Expected 0.000725964 Error: 3.26265e+304[br]-5, 1e+06, 0.000725964[br]CAUTION: Gross error found at entry 7.[br]Found: 0 Expected -0.000725964 Error: 3.26265e+304[br]5, 1e+06, -0.000725964[br]Unsupported domain[br]-5, -1, 0.000249758[br]Unsupported domain[br]10, -10, 0.207486[br]Unsupported domain[br]10, -5, 0.0014678[br]CAUTION: Gross error found at entry 12.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected -0.000331079 Error: 1.48795e+304[br]10, 1e+06, -0.000331079[br]
  3146. ]
  3147. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data[]
  3148. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J1: Mathworld Data]
  3149. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]
  3150. Unsupported domain[br]1, -2, -0.576725[br]Unsupported domain[br]1, -8, -0.234636[br]Unsupported domain[br]1, -10, -0.0434727[br]
  3151. ]
  3152. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data[]
  3153. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Bessel J0: Mathworld Data]
  3154. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]
  3155. Unsupported domain[br]0, -2, 0.223891[br]Unsupported domain[br]0, -8, 0.171651[br]Unsupported domain[br]0, -10, -0.245936[br]
  3156. ]
  3157. [template errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta[]
  3158. [h4 Error Output For ibetac_inv with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Inverse incomplete beta]
  3159. [#errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]
  3160. CAUTION: Gross error found at entry 7.[br]Found: 3.8247e-302 Expected 0 Error: 1.71891e+06[br]1.38853e-05, 0.0497627, 0.632396, 0, 0[br]CAUTION: Gross error found at entry 71.[br]Found: 1.38362e-204 Expected 0 Error: 6.21832e+103[br]3.77931e-05, 0.0150073, 0.835025, 0, 0[br]CAUTION: Gross error found at entry 90.[br]Found: 1.09275e-303 Expected 0 Error: 49109.6[br]4.29383e-05, 0.0428761, 0.814742, 0, 0[br]CAUTION: Gross error found at entry 102.[br]Found: 3.8625e-304 Expected 0 Error: 17358[br]4.80089e-05, 0.0296236, 0.913384, 0, 0[br]CAUTION: Gross error found at entry 115.[br]Found: 1.51774e-303 Expected 0 Error: 68209.8[br]0.000130387, 0.0404969, 0.814742, 0, 0[br]CAUTION: Gross error found at entry 123.[br]Found: 1.28036e-303 Expected 0 Error: 57541.4[br]0.000149328, 0.0201182, 0.905801, 5.70765e-267, 0[br]CAUTION: Gross error found at entry 133.[br]Found: 1.96732e-302 Expected 0 Error: 884160[br]0.000173563, 0.0301908, 0.913384, 4.21662e-213, 0[br]CAUTION: Gross error found at entry 159.[br]Found: 1.48697e-191 Expected 0 Error: 6.68279e+116[br]0.000260723, 0.0252933, 0.632396, 0, 0[br]CAUTION: Gross error found at entry 256.[br]Found: 9.24166e-245 Expected 0 Error: 4.15342e+63[br]0.00246975, 0.016063, 0.913384, 1, 0[br]
  3161. ]
  3162. [template errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta[]
  3163. [h4 Error Output For ibeta_inv with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Inverse incomplete beta]
  3164. [#errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]
  3165. CAUTION: Gross error found at entry 1.[br]Found: 1.90197e-247 Expected 0 Error: 8.54789e+60[br]1.12733e-05, 0.022662, 0.135563, 0, 0[br]CAUTION: Gross error found at entry 30.[br]Found: 1.36217e-301 Expected 0 Error: 6.12191e+06[br]2.10769e-05, 0.0448972, 0.221112, 0, 0[br]CAUTION: Gross error found at entry 152.[br]Found: 2.92621e-285 Expected 0 Error: 1.31511e+23[br]0.000240381, 0.017982, 0.221112, 0, 0[br]CAUTION: Gross error found at entry 184.[br]Found: 5.63355e-203 Expected 0 Error: 2.53185e+105[br]0.000348822, 0.0275467, 0.135563, 0, 1.88165e-166[br]CAUTION: Gross error found at entry 205.[br]Found: 5.52731e-303 Expected 0 Error: 248409[br]0.000441212, 0.0313573, 0.127074, 0, 9.07221e-121[br]
  3166. ]
  3167. [template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters[]
  3168. [h4 Error Output For non central beta CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, large parameters]
  3169. [#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]
  3170. CAUTION: Gross error found at entry 10.[br]Found: 9.76918e-10 Expected 1.61248e-15 Error: 605846[br]290.682, 72.6705, 20005.4, 0.997663, 1, 1.61248e-15[br]CAUTION: Gross error found at entry 11.[br]Found: 9.94184e-10 Expected 3.0108e-42 Error: 3.30205e+32[br]290.682, 145.341, 53489.1, 0.998663, 1, 3.0108e-42[br]CAUTION: Gross error found at entry 16.[br]Found: 8.45406e-10 Expected 4.46652e-22 Error: 1.89276e+12[br]290.682, 1162.73, 2308.07, 0.656921, 1, 4.46652e-22[br]CAUTION: Gross error found at entry 17.[br]Found: 9.41971e-10 Expected 1.7241e-50 Error: 5.46356e+40[br]290.682, 1453.41, 8064.48, 0.832237, 1, 1.7241e-50[br]CAUTION: Gross error found at entry 18.[br]Found: 9.30663e-10 Expected 2.09803e-305 Error: 4.43589e+295[br]975.766, 731.824, 232.285, 0.919742, 1, 2.09803e-305[br]CAUTION: Gross error found at entry 27.[br]Found: 9.76918e-10 Expected 9.3474e-18 Error: 1.04512e+08[br]1879.05, 187.905, 20005.4, 0.992215, 1, 9.3474e-18[br]CAUTION: Gross error found at entry 28.[br]Found: 9.94184e-10 Expected 1.8122e-90 Error: 5.48607e+80[br]1879.05, 469.762, 53489.1, 0.994618, 1, 1.8122e-90[br]CAUTION: Gross error found at entry 32.[br]Found: 9.27224e-10 Expected 3.18255e-15 Error: 291345[br]1879.05, 3758.1, 1879.05, 0.480508, 1, 3.18255e-15[br]CAUTION: Gross error found at entry 33.[br]Found: 8.45406e-10 Expected 1.10218e-77 Error: 7.67029e+67[br]1879.05, 5637.15, 2308.07, 0.458181, 1, 1.10218e-77[br]CAUTION: Gross error found at entry 34.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]2308.07, 1154.03, 232.285, 0.919371, 1, 0[br]CAUTION: Gross error found at entry 35.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]2308.07, 1731.05, 290.682, 0.917262, 1, 0[br]CAUTION: Gross error found at entry 43.[br]Found: 9.94184e-10 Expected 3.57283e-70 Error: 2.78262e+60[br]8064.48, 806.448, 53489.1, 0.988678, 1, 3.57283e-70[br]CAUTION: Gross error found at entry 48.[br]Found: 8.45406e-10 Expected 8.78057e-74 Error: 9.62814e+63[br]8064.48, 16129, 2308.07, 0.421531, 1, 8.78057e-74[br]CAUTION: Gross error found at entry 49.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]15674.4, 3918.59, 232.285, 0.933726, 1, 0[br]CAUTION: Gross error found at entry 50.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]15674.4, 7837.19, 290.682, 0.917179, 1, 0[br]CAUTION: Gross error found at entry 51.[br]Found: 8.9318e-10 Expected 0 Error: 4.01416e+298[br]15674.4, 11755.8, 975.766, 0.915784, 1, 0[br]CAUTION: Gross error found at entry 63.[br]Found: 9.41971e-10 Expected 2.31296e-171 Error: 4.07258e+161[br]20005.4, 40010.8, 8064.48, 0.432094, 1, 2.31296e-171[br]CAUTION: Gross error found at entry 64.[br]Found: 9.30663e-10 Expected 0 Error: 4.18262e+298[br]53489.1, 5348.92, 232.285, 0.954635, 1, 0[br]CAUTION: Gross error found at entry 65.[br]Found: 8.93617e-10 Expected 0 Error: 4.01612e+298[br]53489.1, 13372.3, 290.682, 0.933478, 1, 0[br]CAUTION: Gross error found at entry 66.[br]Found: 8.9318e-10 Expected 0 Error: 4.01416e+298[br]53489.1, 26744.6, 975.766, 0.91717, 1, 0[br]
  3171. ]
  3172. [template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters[]
  3173. [h4 Error Output For non central beta CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, large parameters]
  3174. [#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]
  3175. CAUTION: Gross error found at entry 0.[br]Found: 9.1136e-209 Expected 5.82279e-200 Error: 6.38913e+08[br]232.285, 209.056, 232.285, 0.062486, 5.82279e-200, 1[br]CAUTION: Gross error found at entry 1.[br]Found: 4.08108e-115 Expected 2.37643e-112 Error: 581.304[br]232.285, 229.962, 290.682, 0.155342, 2.37643e-112, 1[br]CAUTION: Gross error found at entry 2.[br]Found: 1.07549e-93 Expected 9.53431e-89 Error: 88650[br]232.285, 232.052, 975.766, 0.378086, 9.53431e-89, 1[br]CAUTION: Gross error found at entry 3.[br]Found: 2.58402e-54 Expected 8.27353e-53 Error: 31.0181[br]232.285, 232.285, 1879.05, 0.625865, 8.27353e-53, 1[br]CAUTION: Gross error found at entry 4.[br]Found: 1.93718e-19 Expected 6.64275e-16 Error: 3428.08[br]232.285, 232.308, 2308.07, 0.770774, 6.64275e-16, 1[br]CAUTION: Gross error found at entry 21.[br]Found: 8.12962e-240 Expected 1.82294e-219 Error: 2.24234e+20[br]975.766, 974.79, 1879.05, 0.331337, 1.82294e-219, 1[br]CAUTION: Gross error found at entry 22.[br]Found: 3.47274e-69 Expected 1.42183e-67 Error: 39.9426[br]975.766, 975.766, 2308.07, 0.514323, 1.42183e-67, 1[br]CAUTION: Gross error found at entry 23.[br]Found: 5.86885e-50 Expected 1.27896e-47 Error: 216.923[br]975.766, 975.863, 8064.48, 0.753209, 1.27896e-47, 1[br]CAUTION: Gross error found at entry 39.[br]Found: 4.82785e-230 Expected 1.25446e-213 Error: 2.59838e+16[br]2308.07, 2308.07, 8064.48, 0.54983, 1.25446e-213, 1[br]CAUTION: Gross error found at entry 40.[br]Found: 1.22971e-87 Expected 1.82618e-85 Error: 147.505[br]2308.07, 2308.3, 15674.4, 0.733174, 1.82618e-85, 1[br]CAUTION: Gross error found at entry 56.[br]Found: 2.97337e-127 Expected 2.56068e-124 Error: 860.205[br]15674.4, 15675.9, 20005.4, 0.55883, 2.56068e-124, 1[br]
  3176. ]
  3177. [template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters[]
  3178. [h4 Error Output For non central beta CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, medium parameters]
  3179. [#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
  3180. CAUTION: Gross error found at entry 296.[br]Found: 9.44166e-10 Expected 6.22975e-10 Error: 0.515577[br]22.9367, 114.683, 19.5081, 0.480981, 1, 6.22975e-10[br]CAUTION: Gross error found at entry 369.[br]Found: 2.52234e-10 Expected 1.40246e-10 Error: 0.79851[br]27.5277, 20.6457, 0.956697, 0.915111, 1, 1.40246e-10[br]CAUTION: Gross error found at entry 429.[br]Found: 1.18105e-09 Expected 7.45745e-10 Error: 0.58372[br]28.8063, 21.6047, 60.3826, 0.946143, 1, 7.45745e-10[br]CAUTION: Gross error found at entry 430.[br]Found: 2.44435e-09 Expected 1.60695e-09 Error: 0.521115[br]28.8063, 21.6047, 148.129, 0.965121, 1, 1.60695e-09[br]CAUTION: Gross error found at entry 477.[br]Found: 7.57435e-10 Expected 7.14133e-11 Error: 9.60635[br]28.8063, 144.032, 42.3849, 0.504845, 1, 7.14133e-11[br]CAUTION: Gross error found at entry 489.[br]Found: 4.8561e-10 Expected 5.62991e-11 Error: 7.62553[br]31.9438, 23.9579, 44.2068, 0.93835, 1, 5.62991e-11[br]CAUTION: Gross error found at entry 490.[br]Found: 8.35187e-10 Expected 1.87483e-10 Error: 3.45473[br]31.9438, 23.9579, 135.747, 0.961117, 1, 1.87483e-10[br]CAUTION: Gross error found at entry 491.[br]Found: 1.00174e-09 Expected 2.38491e-10 Error: 3.20032[br]31.9438, 23.9579, 191.501, 0.968273, 1, 2.38491e-10[br]CAUTION: Gross error found at entry 537.[br]Found: 7.29746e-10 Expected 1.31223e-12 Error: 555.111[br]31.9438, 159.719, 34.2373, 0.489796, 1, 1.31223e-12[br]CAUTION: Gross error found at entry 538.[br]Found: 2.49663e-09 Expected 1.54239e-09 Error: 0.618681[br]31.9438, 159.719, 126.472, 0.581861, 1, 1.54239e-09[br]CAUTION: Gross error found at entry 549.[br]Found: 4.16125e-10 Expected 4.8536e-13 Error: 856.353[br]38.0822, 28.5617, 34.773, 0.931853, 1, 4.8536e-13[br]CAUTION: Gross error found at entry 550.[br]Found: 9.69907e-10 Expected 2.87054e-12 Error: 336.883[br]38.0822, 28.5617, 127.953, 0.956104, 1, 2.87054e-12[br]CAUTION: Gross error found at entry 551.[br]Found: 5.90132e-10 Expected 4.08361e-12 Error: 143.512[br]38.0822, 28.5617, 183.147, 0.963764, 1, 4.08361e-12[br]CAUTION: Gross error found at entry 597.[br]Found: 4.67033e-10 Expected 9.82939e-16 Error: 475139[br]38.0822, 190.411, 27.0954, 0.475419, 1, 9.82939e-16[br]CAUTION: Gross error found at entry 598.[br]Found: 9.33207e-10 Expected 4.03465e-12 Error: 230.298[br]38.0822, 190.411, 100.733, 0.544491, 1, 4.03465e-12[br]CAUTION: Gross error found at entry 599.[br]Found: 7.4092e-10 Expected 9.53942e-11 Error: 6.76693[br]38.0822, 190.411, 169.826, 0.594614, 1, 9.53942e-11[br]CAUTION: Gross error found at entry 609.[br]Found: 5.71813e-10 Expected 1.17207e-14 Error: 48785.7[br]42.7789, 32.0842, 28.3773, 0.927814, 1, 1.17207e-14[br]CAUTION: Gross error found at entry 610.[br]Found: 5.16834e-10 Expected 9.62679e-14 Error: 5367.71[br]42.7789, 32.0842, 109.376, 0.950307, 1, 9.62679e-14[br]CAUTION: Gross error found at entry 611.[br]Found: 6.08012e-10 Expected 1.7454e-13 Error: 3482.51[br]42.7789, 32.0842, 175.686, 0.960431, 1, 1.7454e-13[br]CAUTION: Gross error found at entry 657.[br]Found: 5.59489e-10 Expected 2.86344e-18 Error: 1.95391e+08[br]42.7789, 213.895, 21.9724, 0.467166, 1, 2.86344e-18[br]CAUTION: Gross error found at entry 658.[br]Found: 5.14798e-10 Expected 2.50972e-14 Error: 20511.2[br]42.7789, 213.895, 84.4175, 0.522676, 1, 2.50972e-14[br]CAUTION: Gross error found at entry 659.[br]Found: 8.49991e-10 Expected 2.38005e-12 Error: 356.131[br]42.7789, 213.895, 160.056, 0.576191, 1, 2.38005e-12[br]CAUTION: Gross error found at entry 671.[br]Found: 3.03281e-10 Expected 2.22036e-15 Error: 136590[br]44.5963, 33.4472, 22.4929, 0.924976, 1, 2.22036e-15[br]CAUTION: Gross error found at entry 672.[br]Found: 8.40636e-10 Expected 2.22384e-14 Error: 37800.1[br]44.5963, 33.4472, 94.9517, 0.946545, 1, 2.22384e-14[br]CAUTION: Gross error found at entry 673.[br]Found: 8.15021e-10 Expected 4.75974e-14 Error: 17122.2[br]44.5963, 33.4472, 162.945, 0.95793, 1, 4.75974e-14[br]CAUTION: Gross error found at entry 716.[br]Found: 1.11988e-10 Expected 2.84965e-22 Error: 3.92989e+11[br]44.5963, 222.981, 0.956697, 0.445432, 1, 2.84965e-22[br]CAUTION: Gross error found at entry 717.[br]Found: 7.99524e-10 Expected 3.04552e-15 Error: 262523[br]44.5963, 222.981, 78.4454, 0.515267, 1, 3.04552e-15[br]CAUTION: Gross error found at entry 718.[br]Found: 8.0958e-10 Expected 5.89458e-13 Error: 1372.43[br]44.5963, 222.981, 158.441, 0.57107, 1, 5.89458e-13[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3181. ]
  3182. [template errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters[]
  3183. [h4 Error Output For non central beta CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Beta, medium parameters]
  3184. [#errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
  3185. CAUTION: Gross error found at entry 14.[br]Found: 4.64669e-35 Expected 7.14875e-33 Error: 152.846[br]1.45431, 1.30887, 158.441, 0.0983847, 7.14875e-33, 1[br]CAUTION: Gross error found at entry 15.[br]Found: 4.66674e-46 Expected 3.13332e-40 Error: 671416[br]1.45431, 1.30887, 196.222, 0.09869, 3.13332e-40, 1[br]CAUTION: Gross error found at entry 18.[br]Found: 5.84342e-28 Expected 3.61559e-27 Error: 5.18745[br]1.45431, 1.43976, 159.586, 0.245596, 3.61559e-27, 1[br]CAUTION: Gross error found at entry 19.[br]Found: 1.72833e-34 Expected 1.76943e-33 Error: 9.2378[br]1.45431, 1.43976, 198.576, 0.246444, 1.76943e-33, 1[br]CAUTION: Gross error found at entry 22.[br]Found: 1.76915e-19 Expected 3.69506e-18 Error: 19.8861[br]1.45431, 1.45285, 159.621, 0.491116, 3.69506e-18, 1[br]CAUTION: Gross error found at entry 23.[br]Found: 2.52007e-25 Expected 2.00482e-22 Error: 794.544[br]1.45431, 1.45285, 199.292, 0.492849, 2.00482e-22, 1[br]CAUTION: Gross error found at entry 73.[br]Found: 2.04477e-34 Expected 2.45287e-33 Error: 10.9958[br]7.62448, 6.86203, 148.129, 0.0921776, 2.45287e-33, 1[br]CAUTION: Gross error found at entry 74.[br]Found: 2.36587e-46 Expected 7.32638e-42 Error: 30966[br]7.62448, 6.86203, 193.539, 0.093784, 7.32638e-42, 1[br]CAUTION: Gross error found at entry 76.[br]Found: 3.29122e-26 Expected 7.418e-25 Error: 21.5387[br]7.62448, 7.54824, 148.626, 0.228717, 7.418e-25, 1[br]CAUTION: Gross error found at entry 77.[br]Found: 1.70126e-32 Expected 1.07666e-31 Error: 5.32864[br]7.62448, 7.54824, 193.774, 0.23303, 1.07666e-31, 1[br]CAUTION: Gross error found at entry 79.[br]Found: 1.3478e-15 Expected 4.21836e-15 Error: 2.12982[br]7.62448, 7.61686, 151.548, 0.457773, 4.21836e-15, 1[br]CAUTION: Gross error found at entry 80.[br]Found: 8.78487e-21 Expected 3.41238e-19 Error: 37.8438[br]7.62448, 7.61686, 194.119, 0.465826, 3.41238e-19, 1[br]CAUTION: Gross error found at entry 132.[br]Found: 3.85783e-23 Expected 1.54142e-22 Error: 2.99555[br]19.9593, 17.9634, 44.2068, 0.0698905, 1.54142e-22, 1[br]CAUTION: Gross error found at entry 133.[br]Found: 8.6122e-39 Expected 3.94361e-38 Error: 3.5791[br]19.9593, 17.9634, 135.747, 0.0829178, 3.94361e-38, 1[br]CAUTION: Gross error found at entry 134.[br]Found: 3.61781e-52 Expected 3.98669e-48 Error: 11018.6[br]19.9593, 17.9634, 191.501, 0.0864897, 3.98669e-48, 1[br]CAUTION: Gross error found at entry 135.[br]Found: 2.07122e-15 Expected 7.08614e-15 Error: 2.42124[br]19.9593, 19.7597, 55.6996, 0.176444, 7.08614e-15, 1[br]CAUTION: Gross error found at entry 136.[br]Found: 2.28223e-27 Expected 2.16759e-25 Error: 93.977[br]19.9593, 19.7597, 136.272, 0.20393, 2.16759e-25, 1[br]CAUTION: Gross error found at entry 137.[br]Found: 6.4251e-34 Expected 4.0064e-33 Error: 5.23554[br]19.9593, 19.7597, 191.898, 0.213398, 4.0064e-33, 1[br]CAUTION: Gross error found at entry 139.[br]Found: 2.1734e-14 Expected 4.65637e-14 Error: 1.14243[br]19.9593, 19.9394, 145.168, 0.410858, 4.65637e-14, 1[br]CAUTION: Gross error found at entry 140.[br]Found: 2.18388e-19 Expected 5.1677e-18 Error: 22.663[br]19.9593, 19.9394, 192.978, 0.426523, 5.1677e-18, 1[br]CAUTION: Gross error found at entry 192.[br]Found: 3.29537e-23 Expected 8.29996e-23 Error: 1.51867[br]22.4174, 20.1757, 34.773, 0.0661999, 8.29996e-23, 1[br]CAUTION: Gross error found at entry 193.[br]Found: 7.86091e-39 Expected 2.77686e-38 Error: 2.5325[br]22.4174, 20.1757, 127.953, 0.0809614, 2.77686e-38, 1[br]CAUTION: Gross error found at entry 194.[br]Found: 3.0161e-51 Expected 4.5396e-48 Error: 1504.12[br]22.4174, 20.1757, 183.147, 0.0848857, 4.5396e-48, 1[br]CAUTION: Gross error found at entry 195.[br]Found: 3.08022e-14 Expected 1.42713e-13 Error: 3.6332[br]22.4174, 22.1932, 37.6764, 0.162145, 1.42713e-13, 1[br]CAUTION: Gross error found at entry 196.[br]Found: 8.89935e-28 Expected 2.56187e-25 Error: 286.871[br]22.4174, 22.1932, 131.096, 0.199361, 2.56187e-25, 1[br]CAUTION: Gross error found at entry 197.[br]Found: 9.34392e-34 Expected 6.14831e-33 Error: 5.58001[br]22.4174, 22.1932, 186.799, 0.209601, 6.14831e-33, 1[br]CAUTION: Gross error found at entry 199.[br]Found: 2.79341e-13 Expected 4.79277e-13 Error: 0.71574[br]22.4174, 22.395, 131.148, 0.398015, 4.79277e-13, 1[br]CAUTION: Gross error found at entry 200.[br]Found: 3.13989e-19 Expected 7.01608e-18 Error: 21.345[br]22.4174, 22.395, 191.433, 0.419933, 7.01608e-18, 1[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3186. ]
  3187. [template errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters[]
  3188. [h4 Error Output For non central chi squared CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Chi Squared, large parameters]
  3189. [#errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]
  3190. CAUTION: Gross error found at entry 12.[br]Found: 0 Expected 1.17655e-12 Error: 5.28771e+295[br]101.815, 5236.73, 6406.25, 1, 1.17655e-12[br]CAUTION: Gross error found at entry 13.[br]Found: 0 Expected 1.79374e-44 Error: 8.06149e+263[br]101.815, 9735.22, 12788.2, 1, 1.79374e-44[br]CAUTION: Gross error found at entry 35.[br]Found: 2.58682e-14 Expected 1.84404e-61 Error: 1.4028e+47[br]107.623, 122.456, 920.317, 1, 1.84404e-61[br]CAUTION: Gross error found at entry 36.[br]Found: 0 Expected 2.30757e-102 Error: 1.03707e+206[br]107.623, 156.292, 1319.58, 1, 2.30757e-102[br]CAUTION: Gross error found at entry 52.[br]Found: 0 Expected 6.40952e-24 Error: 2.88059e+284[br]114.68, 417.884, 1065.13, 1, 6.40952e-24[br]CAUTION: Gross error found at entry 53.[br]Found: 0 Expected 1.02366e-98 Error: 4.60058e+209[br]114.68, 669.781, 2353.38, 1, 1.02366e-98[br]CAUTION: Gross error found at entry 69.[br]Found: 0 Expected 6.55726e-39 Error: 2.94699e+269[br]118.032, 3168.71, 4930.11, 1, 6.55726e-39[br]CAUTION: Gross error found at entry 85.[br]Found: 0 Expected 7.30688e-22 Error: 3.28388e+286[br]163.004, 9735.22, 11877.9, 1, 7.30688e-22[br]CAUTION: Gross error found at entry 86.[br]Found: 0 Expected 1.17171e-111 Error: 5.26596e+196[br]163.004, 25344.1, 33159.2, 1, 1.17171e-111[br]CAUTION: Gross error found at entry 108.[br]Found: 1.12355e-13 Expected 2.67349e-61 Error: 4.20255e+47[br]256.292, 122.456, 1136.25, 1, 2.67349e-61[br]CAUTION: Gross error found at entry 109.[br]Found: 1.16462e-13 Expected 8.30595e-116 Error: 1.40216e+102[br]256.292, 156.292, 1650.34, 1, 8.30595e-116[br]CAUTION: Gross error found at entry 124.[br]Found: 1.05804e-13 Expected 1.01672e-15 Error: 103.064[br]517.884, 417.884, 1403.65, 1, 1.01672e-15[br]CAUTION: Gross error found at entry 125.[br]Found: 2.00728e-13 Expected 3.50192e-56 Error: 5.73194e+42[br]517.884, 669.781, 2375.33, 1, 3.50192e-56[br]CAUTION: Gross error found at entry 141.[br]Found: 0 Expected 1.36924e-20 Error: 6.15368e+287[br]769.781, 3168.71, 5120.04, 1, 1.36924e-20[br]CAUTION: Gross error found at entry 142.[br]Found: 0 Expected 3.19215e-72 Error: 1.43463e+236[br]769.781, 5236.73, 9009.76, 1, 3.19215e-72[br]CAUTION: Gross error found at entry 157.[br]Found: 0 Expected 7.26231e-08 Error: 3.26385e+300[br]1223.88, 9735.22, 12055, 1, 7.26231e-08[br]CAUTION: Gross error found at entry 158.[br]Found: 0 Expected 4.5906e-56 Error: 2.06312e+252[br]1223.88, 25344.1, 31881.6, 1, 4.5906e-56[br]CAUTION: Gross error found at entry 194.[br]Found: 0 Expected 5.34714e-12 Error: 2.40313e+296[br]9835.22, 122.456, 10953.4, 1, 5.34714e-12[br]CAUTION: Gross error found at entry 195.[br]Found: 0 Expected 4.84412e-40 Error: 2.17706e+268[br]9835.22, 156.292, 11989.8, 1, 4.84412e-40[br]CAUTION: Gross error found at entry 196.[br]Found: 0 Expected 5.50199e-83 Error: 2.47272e+225[br]9835.22, 417.884, 13329, 1, 5.50199e-83[br]CAUTION: Gross error found at entry 197.[br]Found: 0 Expected 1.28192e-205 Error: 5.76124e+102[br]9835.22, 669.781, 15757.5, 1, 1.28192e-205[br]CAUTION: Gross error found at entry 211.[br]Found: 0 Expected 3.83272e-28 Error: 1.72251e+280[br]25444.1, 1123.88, 29224.8, 1, 3.83272e-28[br]CAUTION: Gross error found at entry 212.[br]Found: 0 Expected 1.69815e-101 Error: 7.63188e+206[br]25444.1, 3168.71, 34335.4, 1, 1.69815e-101[br]CAUTION: Gross error found at entry 213.[br]Found: 0 Expected 1.09245e-217 Error: 4.90974e+90[br]25444.1, 5236.73, 39885.1, 1, 1.09245e-217[br]
  3191. ]
  3192. [template errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters[]
  3193. [h4 Error Output For non central chi squared CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central Chi Squared, medium parameters]
  3194. [#errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]
  3195. CAUTION: Gross error found at entry 36.[br]Found: 1.11022e-14 Expected 1.30043e-26 Error: 8.53738e+11[br]1.95191, 109.376, 445.313, 1, 1.30043e-26[br]CAUTION: Gross error found at entry 37.[br]Found: 0 Expected 1.45478e-39 Error: 6.53812e+268[br]1.95191, 109.444, 556.98, 1, 1.45478e-39[br]CAUTION: Gross error found at entry 54.[br]Found: 2.91989e-14 Expected 4.25949e-21 Error: 6.85501e+06[br]1.95191, 159.586, 484.613, 1, 4.25949e-21[br]CAUTION: Gross error found at entry 55.[br]Found: 0 Expected 1.33424e-37 Error: 5.99639e+270[br]1.95191, 159.621, 646.292, 1, 1.33424e-37[br]CAUTION: Gross error found at entry 56.[br]Found: 1.25455e-14 Expected 1.95903e-56 Error: 6.40393e+41[br]1.95191, 160.056, 810.04, 1, 1.95903e-56[br]CAUTION: Gross error found at entry 73.[br]Found: 0 Expected 4.34735e-25 Error: 1.9538e+283[br]1.95191, 193.539, 586.473, 1, 4.34735e-25[br]CAUTION: Gross error found at entry 74.[br]Found: 0 Expected 4.66119e-45 Error: 2.09485e+263[br]1.95191, 193.774, 782.902, 1, 4.66119e-45[br]CAUTION: Gross error found at entry 75.[br]Found: 4.77396e-15 Expected 8.92248e-68 Error: 5.35048e+52[br]1.95191, 194.119, 980.352, 1, 8.92248e-68[br]CAUTION: Gross error found at entry 111.[br]Found: 0 Expected 3.1064e-15 Error: 1.39609e+293[br]20.4105, 84.4175, 314.484, 1, 3.1064e-15[br]CAUTION: Gross error found at entry 112.[br]Found: 0 Expected 7.50903e-29 Error: 3.37473e+279[br]20.4105, 94.9517, 461.449, 1, 7.50903e-29[br]CAUTION: Gross error found at entry 113.[br]Found: 3.77476e-15 Expected 1.74225e-43 Error: 2.1666e+28[br]20.4105, 97.0751, 587.428, 1, 1.74225e-43[br]CAUTION: Gross error found at entry 130.[br]Found: 8.88178e-16 Expected 4.13277e-23 Error: 2.14911e+07[br]20.4105, 151.548, 515.876, 1, 4.13277e-23[br]CAUTION: Gross error found at entry 131.[br]Found: 1.75415e-14 Expected 1.92146e-41 Error: 9.12928e+26[br]20.4105, 152.75, 692.642, 1, 1.92146e-41[br]CAUTION: Gross error found at entry 132.[br]Found: 1.38778e-14 Expected 7.09864e-64 Error: 1.95499e+49[br]20.4105, 158.441, 894.26, 1, 7.09864e-64[br]CAUTION: Gross error found at entry 149.[br]Found: 2.22045e-16 Expected 8.74501e-28 Error: 2.5391e+11[br]20.4105, 191.433, 635.532, 1, 8.74501e-28[br]CAUTION: Gross error found at entry 150.[br]Found: 0 Expected 6.94227e-50 Error: 3.12002e+258[br]20.4105, 191.501, 847.648, 1, 6.94227e-50[br]CAUTION: Gross error found at entry 151.[br]Found: 3.40838e-14 Expected 5.3889e-75 Error: 6.32482e+60[br]20.4105, 191.898, 1061.55, 1, 5.3889e-75[br]CAUTION: Gross error found at entry 206.[br]Found: 5.88418e-15 Expected 2.69136e-22 Error: 2.18632e+07[br]22.8625, 141.209, 492.215, 1, 2.69136e-22[br]CAUTION: Gross error found at entry 207.[br]Found: 3.60822e-14 Expected 1.64941e-40 Error: 2.18759e+26[br]22.8625, 145.168, 672.121, 1, 1.64941e-40[br]CAUTION: Gross error found at entry 208.[br]Found: 3.73035e-14 Expected 1.6094e-61 Error: 2.31784e+47[br]22.8625, 148.129, 854.96, 1, 1.6094e-61[br]CAUTION: Gross error found at entry 225.[br]Found: 0 Expected 3.73672e-27 Error: 1.67937e+281[br]22.8625, 182.675, 616.613, 1, 3.73672e-27[br]CAUTION: Gross error found at entry 226.[br]Found: 0 Expected 8.85688e-49 Error: 3.98049e+259[br]22.8625, 183.147, 824.038, 1, 8.85688e-49[br]CAUTION: Gross error found at entry 227.[br]Found: 0 Expected 2.29176e-74 Error: 1.02997e+234[br]22.8625, 186.799, 1048.31, 1, 2.29176e-74[br]CAUTION: Gross error found at entry 282.[br]Found: 0 Expected 2.18831e-21 Error: 9.8348e+286[br]23.3804, 132.721, 468.305, 1, 2.18831e-21[br]CAUTION: Gross error found at entry 283.[br]Found: 0 Expected 1.3071e-38 Error: 5.87439e+269[br]23.3804, 135.747, 636.51, 1, 1.3071e-38[br]CAUTION: Gross error found at entry 284.[br]Found: 1.84297e-14 Expected 8.27843e-58 Error: 2.22623e+43[br]23.3804, 136.272, 798.262, 1, 8.27843e-58[br]CAUTION: Gross error found at entry 301.[br]Found: 0 Expected 9.85282e-26 Error: 4.42808e+282[br]23.3804, 169.826, 579.619, 1, 9.85282e-26[br]CAUTION: Gross error found at entry 302.[br]Found: 0 Expected 4.8094e-47 Error: 2.16145e+261[br]23.3804, 174.486, 791.465, 1, 4.8094e-47[br]CAUTION: Gross error found at entry 303.[br]Found: 1.11022e-16 Expected 6.70476e-71 Error: 1.65587e+54[br]23.3804, 175.686, 995.333, 1, 6.70476e-71[br]CAUTION: Gross error found at entry 358.[br]Found: 0 Expected 3.9702e-21 Error: 1.7843e+287[br]26.2704, 126.472, 458.227, 1, 3.9702e-21[br]CAUTION: Gross error found at entry 359.[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3196. ]
  3197. [template errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T[]
  3198. [h4 Error Output For non central t CDF complement with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central T]
  3199. [#errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]
  3200. CAUTION: Gross error found at entry 56.[br]Found: 0.000186411 Expected 7.85192e-05 Error: 1.37408[br]61.6335, 46.2251, 68.8608, 0.999921, 7.85192e-05[br]CAUTION: Gross error found at entry 75.[br]Found: 0.00011439 Expected 5.05344e-05 Error: 1.26361[br]80.8418, 60.6313, 86.1278, 0.999949, 5.05344e-05[br]CAUTION: Gross error found at entry 93.[br]Found: 0.000655162 Expected 0.000423927 Error: 0.545458[br]100.733, 50.3663, 65.7619, 0.999576, 0.000423927[br]CAUTION: Gross error found at entry 112.[br]Found: 0.000518249 Expected 0.00034473 Error: 0.503348[br]127.953, 63.9764, 81.0824, 0.999655, 0.00034473[br]
  3201. ]
  3202. [template errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T[]
  3203. [h4 Error Output For non central t CDF with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Non Central T]
  3204. [#errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]
  3205. CAUTION: Gross error found at entry 74.[br]Found: 0.000830062 Expected 0.000522858 Error: 0.587549[br]79.7478, -39.8739, -53.8066, 0.000522858, 0.999477[br]CAUTION: Gross error found at entry 94.[br]Found: 7.69292e-05 Expected 3.54024e-05 Error: 1.17299[br]101.191, -75.8936, -104.104, 3.54024e-05, 0.999965[br]CAUTION: Gross error found at entry 113.[br]Found: 5.07713e-05 Expected 2.4439e-05 Error: 1.07747[br]128.792, -96.5942, -128.112, 2.4439e-05, 0.999976[br]CAUTION: Gross error found at entry 132.[br]Found: 4.08612e-05 Expected 2.01542e-05 Error: 1.02743[br]146.56, -109.92, -143.392, 2.01542e-05, 0.99998[br]CAUTION: Gross error found at entry 151.[br]Found: 3.55146e-05 Expected 1.7803e-05 Error: 0.994869[br]159.586, -119.689, -154.522, 1.7803e-05, 0.999982[br]CAUTION: Gross error found at entry 170.[br]Found: 3.03671e-05 Expected 1.55023e-05 Error: 0.958873[br]175.686, -131.765, -168.211, 1.55023e-05, 0.999984[br]CAUTION: Gross error found at entry 189.[br]Found: 2.61339e-05 Expected 1.3581e-05 Error: 0.924298[br]192.978, -144.733, -182.834, 1.3581e-05, 0.999986[br]
  3206. ]
  3207. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases[]
  3208. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - Large orders and other bug cases]
  3209. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]
  3210. CAUTION: Found non-finite result, when a finite value was expected at entry 0[br]Found: -nan Expected 2.07309e+257 Error: 1.79769e+308[br]171, 2, 2.07309e+257[br]CAUTION: Gross error found at entry 0.[br]Found: -nan Expected 2.07309e+257 Error: 1.79769e+308[br]171, 2, 2.07309e+257[br]CAUTION: Found non-finite result, when a finite value was expected at entry 1[br]Found: -nan Expected 7.42912e+188 Error: 1.79769e+308[br]171, 5, 7.42912e+188[br]CAUTION: Gross error found at entry 1.[br]Found: -nan Expected 7.42912e+188 Error: 1.79769e+308[br]171, 5, 7.42912e+188[br]CAUTION: Found non-finite result, when a finite value was expected at entry 2[br]Found: -nan Expected -4.81295e+247 Error: 1.79769e+308[br]166, 2, -4.81295e+247[br]CAUTION: Gross error found at entry 2.[br]Found: -nan Expected -4.81295e+247 Error: 1.79769e+308[br]166, 2, -4.81295e+247[br]CAUTION: Found non-finite result, when a finite value was expected at entry 3[br]Found: -nan Expected -1.88439e+218 Error: 1.79769e+308[br]166, 3, -1.88439e+218[br]CAUTION: Gross error found at entry 3.[br]Found: -nan Expected -1.88439e+218 Error: 1.79769e+308[br]166, 3, -1.88439e+218[br]CAUTION: Found non-finite result, when a finite value was expected at entry 4[br]Found: -nan Expected 7.53144e+74 Error: 1.79769e+308[br]171, 23, 7.53144e+74[br]CAUTION: Gross error found at entry 4.[br]Found: -nan Expected 7.53144e+74 Error: 1.79769e+308[br]171, 23, 7.53144e+74[br]CAUTION: Found non-finite result, when a finite value was expected at entry 5[br]Found: -nan Expected -6.52661e-66 Error: 1.79769e+308[br]168, 150, -6.52661e-66[br]CAUTION: Gross error found at entry 5.[br]Found: -nan Expected -6.52661e-66 Error: 1.79769e+308[br]168, 150, -6.52661e-66[br]CAUTION: Found non-finite result, when a finite value was expected at entry 6[br]Found: -nan Expected 9.2734e-88 Error: 1.79769e+308[br]169, 202, 9.2734e-88[br]CAUTION: Gross error found at entry 6.[br]Found: -nan Expected 9.2734e-88 Error: 1.79769e+308[br]169, 202, 9.2734e-88[br]Outside supported domain[br]20, -9.5, -0.00103076[br]Outside supported domain[br]21, -9.5, 4.28582e+26[br]Outside supported domain[br]22, -9.5, -0.00419144[br]Outside supported domain[br]23, -9.5, 8.6745e+29[br]Outside supported domain[br]24, -9.5, -0.0204825[br]Outside supported domain[br]25, -9.5, 2.08188e+33[br]Outside supported domain[br]26, -9.5, -0.118403[br]Outside supported domain[br]27, -9.5, 5.84592e+36[br]Outside supported domain[br]28, -9.5, -0.798969[br]Outside supported domain[br]29, -9.5, 1.89875e+40[br]Outside supported domain[br]30, -9.5, -6.22245[br]
  3211. ]
  3212. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments[]
  3213. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - large negative arguments]
  3214. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]
  3215. Outside supported domain[br]124, -1.5, 7.63705e+240[br]Outside supported domain[br]124, -2.5, 7.63705e+240[br]Outside supported domain[br]124, -3.5, 7.63705e+240[br]Outside supported domain[br]124, -4.5, 7.63705e+240[br]Outside supported domain[br]124, -5.5, 7.63705e+240[br]Outside supported domain[br]124, -6.5, 7.63705e+240[br]Outside supported domain[br]124, -7.5, 7.63705e+240[br]Outside supported domain[br]124, -8.5, 7.63705e+240[br]Outside supported domain[br]124, -9.5, 7.63705e+240[br]Outside supported domain[br]124, -10.5, 7.63705e+240[br]Outside supported domain[br]124, -11.5, 7.63705e+240[br]Outside supported domain[br]124, -12.5, 7.63705e+240[br]Outside supported domain[br]124, -13.5, 7.63705e+240[br]Outside supported domain[br]124, -14.5, 7.63705e+240[br]Outside supported domain[br]124, -15.5, 7.63705e+240[br]Outside supported domain[br]124, -16.5, 7.63705e+240[br]Outside supported domain[br]124, -17.5, 7.63705e+240[br]Outside supported domain[br]124, -18.5, 7.63705e+240[br]Outside supported domain[br]124, -19.5, 7.63705e+240[br]Outside supported domain[br]124, -20.5, 7.63705e+240[br]Outside supported domain[br]124, -1.5, -7.63705e+240[br]Outside supported domain[br]124, -2.5, -7.63705e+240[br]Outside supported domain[br]124, -3.5, -7.63705e+240[br]Outside supported domain[br]124, -4.5, -7.63705e+240[br]Outside supported domain[br]124, -5.5, -7.63705e+240[br]Outside supported domain[br]124, -6.5, -7.63705e+240[br]Outside supported domain[br]124, -7.5, -7.63705e+240[br]Outside supported domain[br]124, -8.5, -7.63705e+240[br]Outside supported domain[br]124, -9.5, -7.63705e+240[br]Outside supported domain[br]124, -10.5, -7.63705e+240[br]Outside supported domain[br]124, -11.5, -7.63705e+240[br]Outside supported domain[br]124, -12.5, -7.63705e+240[br]Outside supported domain[br]124, -13.5, -7.63705e+240[br]Outside supported domain[br]124, -14.5, -7.63705e+240[br]Outside supported domain[br]124, -15.5, -7.63705e+240[br]Outside supported domain[br]124, -16.5, -7.63705e+240[br]Outside supported domain[br]124, -17.5, -7.63705e+240[br]Outside supported domain[br]124, -18.5, -7.63705e+240[br]Outside supported domain[br]124, -19.5, -7.63705e+240[br]Outside supported domain[br]124, -20.5, -7.63705e+240[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828797[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47425[br]Outside supported domain[br]5, -0.5, 15371.1[br]Outside supported domain[br]6, -0.5, -43.4579[br]Outside supported domain[br]7, -0.5, 2.58068e+06[br]Outside supported domain[br]8, -0.5, -1059.96[br]Outside supported domain[br]9, -0.5, 7.43185e+08[br]Outside supported domain[br]10, -0.5, -42108.9[br]Outside supported domain[br]11, -0.5, 3.26999e+11[br]Outside supported domain[br]12, -0.5, -2.46448e+06[br]Outside supported domain[br]13, -0.5, 2.04047e+14[br]Outside supported domain[br]14, -0.5, -1.9918e+08[br]Outside supported domain[br]15, -0.5, 1.71399e+17[br]Outside supported domain[br]16, -0.5, -2.12394e+10[br]Outside supported domain[br]17, -0.5, 1.86483e+20[br]Outside supported domain[br]18, -0.5, -2.88824e+12[br]Outside supported domain[br]19, -0.5, 2.55108e+23[br]Outside supported domain[br]20, -0.5, -4.87773e+14[br]Outside supported domain[br]21, -0.5, 4.28582e+26[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828843[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47791[br]Outside supported domain[br]5, -0.5, 15371.1[br]Outside supported domain[br]6, -0.5, -44.0732[br]Outside supported domain[br]7, -0.5, 2.58068e+06[br]Outside supported domain[br]8, -0.5, -1237.15[br]Outside supported domain[br]9, -0.5, 7.43185e+08[br]Outside supported domain[br]10, -0.5, -120071[br]Outside supported domain[br]11, -0.5, 3.26999e+11[br]Outside supported domain[br]12, -0.5, -5.11131e+07[br]Outside supported domain[br]13, -0.5, 2.04047e+14[br]Outside supported domain[br]14, -0.5, -4.1064e+10[br]Outside supported domain[br]15, -0.5, 1.71399e+17[br]Outside supported domain[br]16, -0.5, -4.44822e+13[br]Outside supported domain[br]17, -0.5, 1.86483e+20[br]Outside supported domain[br]18, -0.5, -6.08254e+16[br]Outside supported domain[br]19, -0.5, 2.55108e+23[br]Outside supported domain[br]20, -0.5, -1.02182e+20[br]Outside supported domain[br]21, -0.5, 4.28582e+26[br]Outside supported domain[br]1, -0.5, 8.9348[br]Outside supported domain[br]2, -0.5, -0.828751[br]Outside supported domain[br]3, -0.5, 193.409[br]Outside supported domain[br]4, -0.5, -3.47059[br]Outside supported domain[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3216. ]
  3217. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments[]
  3218. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - negative arguments]
  3219. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]
  3220. Outside supported domain[br]1, -12.75, 19.6638[br]Outside supported domain[br]1, -12.25, 19.6608[br]Outside supported domain[br]1, -11.75, 19.6576[br]Outside supported domain[br]1, -11.25, 19.6542[br]Outside supported domain[br]1, -10.75, 19.6504[br]Outside supported domain[br]1, -10.25, 19.6463[br]Outside supported domain[br]1, -9.75, 19.6417[br]Outside supported domain[br]1, -9.25, 19.6367[br]Outside supported domain[br]1, -8.75, 19.6312[br]Outside supported domain[br]1, -8.25, 19.625[br]Outside supported domain[br]1, -7.75, 19.6181[br]Outside supported domain[br]1, -7.25, 19.6104[br]Outside supported domain[br]1, -6.75, 19.6015[br]Outside supported domain[br]1, -6.25, 19.5913[br]Outside supported domain[br]1, -5.75, 19.5795[br]Outside supported domain[br]1, -5.25, 19.5657[br]Outside supported domain[br]1, -4.75, 19.5493[br]Outside supported domain[br]1, -4.25, 19.5294[br]Outside supported domain[br]1, -3.75, 19.505[br]Outside supported domain[br]1, -3.25, 19.4741[br]Outside supported domain[br]1, -2.75, 19.4339[br]Outside supported domain[br]1, -2.25, 19.3794[br]Outside supported domain[br]1, -1.75, 19.3016[br]Outside supported domain[br]1, -1.25, 19.1819[br]Outside supported domain[br]1, -0.75, 18.9751[br]Outside supported domain[br]1, -0.25, 18.5419[br]Outside supported domain[br]2, -12.75, -124.031[br]Outside supported domain[br]2, -12.25, 124.019[br]Outside supported domain[br]2, -11.75, -124.032[br]Outside supported domain[br]2, -11.25, 124.018[br]Outside supported domain[br]2, -10.75, -124.033[br]Outside supported domain[br]2, -10.25, 124.016[br]Outside supported domain[br]2, -9.75, -124.035[br]Outside supported domain[br]2, -9.25, 124.015[br]Outside supported domain[br]2, -8.75, -124.037[br]Outside supported domain[br]2, -8.25, 124.012[br]Outside supported domain[br]2, -7.75, -124.04[br]Outside supported domain[br]2, -7.25, 124.009[br]Outside supported domain[br]2, -6.75, -124.044[br]Outside supported domain[br]2, -6.25, 124.003[br]Outside supported domain[br]2, -5.75, -124.051[br]Outside supported domain[br]2, -5.25, 123.995[br]Outside supported domain[br]2, -4.75, -124.061[br]Outside supported domain[br]2, -4.25, 123.981[br]Outside supported domain[br]2, -3.75, -124.08[br]Outside supported domain[br]2, -3.25, 123.955[br]Outside supported domain[br]2, -2.75, -124.118[br]Outside supported domain[br]2, -2.25, 123.897[br]Outside supported domain[br]2, -1.75, -124.214[br]Outside supported domain[br]2, -1.25, 123.721[br]Outside supported domain[br]2, -0.75, -124.587[br]Outside supported domain[br]2, -0.25, 122.697[br]Outside supported domain[br]3, -12.75, 1558.54[br]Outside supported domain[br]3, -12.25, 1558.54[br]Outside supported domain[br]3, -11.75, 1558.54[br]Outside supported domain[br]3, -11.25, 1558.54[br]Outside supported domain[br]3, -10.75, 1558.54[br]Outside supported domain[br]3, -10.25, 1558.54[br]Outside supported domain[br]3, -9.75, 1558.54[br]Outside supported domain[br]3, -9.25, 1558.54[br]Outside supported domain[br]3, -8.75, 1558.54[br]Outside supported domain[br]3, -8.25, 1558.54[br]Outside supported domain[br]3, -7.75, 1558.54[br]Outside supported domain[br]3, -7.25, 1558.54[br]Outside supported domain[br]3, -6.75, 1558.54[br]Outside supported domain[br]3, -6.25, 1558.54[br]Outside supported domain[br]3, -5.75, 1558.54[br]Outside supported domain[br]3, -5.25, 1558.54[br]Outside supported domain[br]3, -4.75, 1558.53[br]Outside supported domain[br]3, -4.25, 1558.53[br]Outside supported domain[br]3, -3.75, 1558.52[br]Outside supported domain[br]3, -3.25, 1558.51[br]Outside supported domain[br]3, -2.75, 1558.49[br]Outside supported domain[br]3, -2.25, 1558.46[br]Outside supported domain[br]3, -1.75, 1558.38[br]Outside supported domain[br]3, -1.25, 1558.22[br]Outside supported domain[br]3, -0.75, 1557.75[br]Outside supported domain[br]3, -0.25, 1555.76[br]Outside supported domain[br]4, -12.75, -24481.6[br]Outside supported domain[br]4, -12.25, 24481.6[br]Outside supported domain[br]4, -11.75, -24481.6[br]Outside supported domain[br]4, -11.25, 24481.6[br]Outside supported domain[br]4, -10.75, -24481.6[br]Outside supported domain[br]4, -10.25, 24481.6[br]Outside supported domain[br]4, -9.75, -24481.6[br]Outside supported domain[br]4, -9.25, 24481.6[br]Outside supported domain[br]4, -8.75, -24481.6[br]Outside supported domain[br]4, -8.25, 24481.6[br]Outside supported domain[br]4, -7.75, -24481.6[br]Outside supported domain[br]4, -7.25, 24481.6[br]Outside supported domain[br]4, -6.75, -24481.6[br]Outside supported domain[br]4, -6.25, 24481.6[br]Outside supported domain[br]4, -5.75, -24481.6[br]Outside supported domain[br]4, -5.25, 24481.6[br]Outside supported domain[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3221. ]
  3222. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments[]
  3223. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library Rmath 3.2.3 and test data Mathematica Data - large arguments]
  3224. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]
  3225. CAUTION: Gross error found at entry 211.[br]Found: -0 Expected -8.44974e-268 Error: 3.79751e+40[br]30, 8.58993e+09, -8.44974e-268[br]CAUTION: Gross error found at entry 212.[br]Found: -0 Expected -7.86943e-277 Error: 3.5367e+31[br]30, 1.71799e+10, -7.86943e-277[br]CAUTION: Gross error found at entry 213.[br]Found: -0 Expected -7.32898e-286 Error: 3.29381e+22[br]30, 3.43597e+10, -7.32898e-286[br]CAUTION: Gross error found at entry 214.[br]Found: -0 Expected -6.82564e-295 Error: 3.0676e+13[br]30, 6.87195e+10, -6.82564e-295[br]CAUTION: Gross error found at entry 215.[br]Found: -0 Expected -6.35687e-304 Error: 28568.3[br]30, 1.37439e+11, -6.35687e-304[br]
  3226. ]
  3227. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_[]
  3228. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Mathworld Data (large values)]
  3229. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_]
  3230. domain error[br]-1, 3.72917e-155, 1.86459e-155[br]domain error[br]-1.125, 3.72917e-155, -1.34964e+173[br]
  3231. ]
  3232. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data[]
  3233. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Random Data]
  3234. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data]
  3235. domain error[br]-80.4919, 24.7501, 4.18698e+28[br]domain error[br]-80.4919, 63.7722, 2.03248e+06[br]domain error[br]-74.6026, 24.7501, 7.20977e+23[br]domain error[br]-74.6026, 63.7722, 8.7549e+08[br]domain error[br]-72.9046, 24.7501, 1.04535e+22[br]domain error[br]-72.9046, 63.7722, 4.7162e+09[br]domain error[br]-62.3236, 24.7501, 3.65147e+14[br]domain error[br]-62.3236, 63.7722, 8.56683e+13[br]domain error[br]-55.7932, 24.7501, -7.70364e+09[br]domain error[br]-55.7932, 63.7722, 1.95969e+16[br]domain error[br]-44.3004, 9.50706, 2.93478e+22[br]domain error[br]-44.3004, 24.7501, 640.568[br]domain error[br]-44.3004, 63.7722, 8.05557e+19[br]domain error[br]-38.3666, 5.11399, 2.89105e+27[br]domain error[br]-38.3666, 9.50706, 8.80632e+16[br]domain error[br]-38.3666, 24.7501, 0.389004[br]domain error[br]-38.3666, 63.7722, 3.06303e+21[br]underflow[br]81.1584, 0.00177219, 0[br]underflow[br]81.1584, 0.00221773, 0[br]underflow[br]81.1584, 0.0074445, 6.08857e-319[br]underflow[br]82.6752, 0.00177219, 0[br]underflow[br]82.6752, 0.00221773, 0[br]underflow[br]82.6752, 0.0074445, 0[br]underflow[br]91.5014, 0.00177219, 0[br]underflow[br]91.5014, 0.00221773, 0[br]underflow[br]91.5014, 0.0074445, 0[br]underflow[br]91.5014, 0.014336, 0[br]underflow[br]91.5014, 0.0176092, 0[br]underflow[br]92.9777, 0.00177219, 0[br]underflow[br]92.9777, 0.00221773, 0[br]underflow[br]92.9777, 0.0074445, 0[br]underflow[br]92.9777, 0.014336, 0[br]underflow[br]92.9777, 0.0176092, 0[br]underflow[br]93.539, 0.00177219, 0[br]underflow[br]93.539, 0.00221773, 0[br]underflow[br]93.539, 0.0074445, 0[br]underflow[br]93.539, 0.014336, 0[br]underflow[br]93.539, 0.0176092, 0[br]underflow[br]93.7736, 0.00177219, 0[br]underflow[br]93.7736, 0.00221773, 0[br]underflow[br]93.7736, 0.0074445, 0[br]underflow[br]93.7736, 0.014336, 0[br]underflow[br]93.7736, 0.0176092, 0[br]underflow[br]98.5763, 0.00177219, 0[br]underflow[br]98.5763, 0.00221773, 0[br]underflow[br]98.5763, 0.0074445, 0[br]underflow[br]98.5763, 0.014336, 0[br]underflow[br]98.5763, 0.0176092, 0[br]underflow[br]99.2923, 0.00177219, 0[br]underflow[br]99.2923, 0.00221773, 0[br]underflow[br]99.2923, 0.0074445, 0[br]underflow[br]99.2923, 0.014336, 0[br]underflow[br]99.2923, 0.0176092, 0[br]
  3236. ]
  3237. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data[]
  3238. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Random Data]
  3239. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data]
  3240. underflow[br]70, 0.00177219, 1.75887e-314[br]underflow[br]73, 0.00177219, 0[br]underflow[br]73, 0.00221773, 4.24896e-322[br]underflow[br]76, 0.00177219, 0[br]underflow[br]76, 0.00221773, 0[br]underflow[br]79, 0.00177219, 0[br]underflow[br]79, 0.00221773, 0[br]underflow[br]79, 0.0074445, 1.38676e-309[br]underflow[br]82, 0.00177219, 0[br]underflow[br]82, 0.00221773, 0[br]underflow[br]82, 0.0074445, 1.33398e-322[br]underflow[br]85, 0.00177219, 0[br]underflow[br]85, 0.00221773, 0[br]underflow[br]85, 0.0074445, 0[br]underflow[br]85, 0.014336, 1.81568e-311[br]underflow[br]88, 0.00177219, 0[br]underflow[br]88, 0.00221773, 0[br]underflow[br]88, 0.0074445, 0[br]underflow[br]88, 0.014336, 9.88131e-324[br]underflow[br]88, 0.0176092, 7.34647e-316[br]
  3241. ]
  3242. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data[]
  3243. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Iv: Mathworld Data]
  3244. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data]
  3245. domain error[br]-4.99902, 2.125, 0.0267921[br]domain error[br]-5.5, 10, 597.578[br]domain error[br]-5.5, 100, 9.22363e+41[br]domain error[br]-10.0003, 0.000976562, 1.41474e+35[br]domain error[br]-10.0003, 50, 1.07153e+20[br]domain error[br]-141.4, 100, 2066.28[br]
  3246. ]
  3247. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_[]
  3248. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Mathworld Data (Integer Version)]
  3249. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_]
  3250. underflow[br]10, 1e-100, 0[br]
  3251. ]
  3252. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data[]
  3253. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel In: Mathworld Data]
  3254. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data]
  3255. domain error[br]-2, 0, 0[br]domain error[br]-5, 100, 9.47009e+41[br]domain error[br]-5, -1, -0.000271463[br]domain error[br]10, -5, 0.00458004[br]domain error[br]-100, -200, 4.35275e+74[br]underflow[br]10, 1e-100, 0[br]
  3256. ]
  3257. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data[]
  3258. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel I1: Mathworld Data]
  3259. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data]
  3260. domain error[br]1, -2, -1.59064[br]domain error[br]1, -8, -399.873[br]domain error[br]1, -10, -2670.99[br]
  3261. ]
  3262. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data[]
  3263. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel I0: Mathworld Data]
  3264. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data]
  3265. domain error[br]0, -2, 2.27959[br]domain error[br]0, -7, 168.594[br]domain error[br]0, -1, 1.26607[br]
  3266. ]
  3267. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_[]
  3268. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Mathworld Data (large values)]
  3269. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]
  3270. Bad argument in __cyl_bessel_i.[br]-1, 3.72917e-155, 1.86459e-155[br]Bad argument in __cyl_bessel_i.[br]-1.125, 3.72917e-155, -1.34964e+173[br]
  3271. ]
  3272. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data[]
  3273. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Random Data]
  3274. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]
  3275. Bad argument in __cyl_bessel_i.[br]-80.4919, 24.7501, 4.18698e+28[br]Bad argument in __cyl_bessel_i.[br]-80.4919, 63.7722, 2.03248e+06[br]Bad argument in __cyl_bessel_i.[br]-74.6026, 24.7501, 7.20977e+23[br]Bad argument in __cyl_bessel_i.[br]-74.6026, 63.7722, 8.7549e+08[br]Bad argument in __cyl_bessel_i.[br]-72.9046, 24.7501, 1.04535e+22[br]Bad argument in __cyl_bessel_i.[br]-72.9046, 63.7722, 4.7162e+09[br]Bad argument in __cyl_bessel_i.[br]-62.3236, 24.7501, 3.65147e+14[br]Bad argument in __cyl_bessel_i.[br]-62.3236, 63.7722, 8.56683e+13[br]Bad argument in __cyl_bessel_i.[br]-55.7932, 24.7501, -7.70364e+09[br]Bad argument in __cyl_bessel_i.[br]-55.7932, 63.7722, 1.95969e+16[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 9.50706, 2.93478e+22[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 24.7501, 640.568[br]Bad argument in __cyl_bessel_i.[br]-44.3004, 63.7722, 8.05557e+19[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 5.11399, 2.89105e+27[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 9.50706, 8.80632e+16[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 24.7501, 0.389004[br]Bad argument in __cyl_bessel_i.[br]-38.3666, 63.7722, 3.06303e+21[br]
  3276. ]
  3277. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data[]
  3278. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Iv: Mathworld Data]
  3279. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]
  3280. Bad argument in __cyl_bessel_i.[br]-4.99902, 2.125, 0.0267921[br]Bad argument in __cyl_bessel_i.[br]-5.5, 10, 597.578[br]Bad argument in __cyl_bessel_i.[br]-5.5, 100, 9.22363e+41[br]Bad argument in __cyl_bessel_i.[br]-10.0003, 0.000976562, 1.41474e+35[br]Bad argument in __cyl_bessel_i.[br]-10.0003, 50, 1.07153e+20[br]Bad argument in __cyl_bessel_i.[br]-141.4, 100, 2066.28[br]
  3281. ]
  3282. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_[]
  3283. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel In: Mathworld Data (Integer Version)]
  3284. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]
  3285. Bad argument in __cyl_bessel_i.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_i.[br]-5, 100, 9.47009e+41[br]Bad argument in __cyl_bessel_i.[br]-5, -1, -0.000271463[br]Bad argument in __cyl_bessel_i.[br]10, -5, 0.00458004[br]Bad argument in __cyl_bessel_i.[br]-100, -200, 4.35275e+74[br]
  3286. ]
  3287. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_[]
  3288. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I1: Mathworld Data (Integer Version)]
  3289. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]
  3290. Bad argument in __cyl_bessel_i.[br]1, -2, -1.59064[br]Bad argument in __cyl_bessel_i.[br]1, -8, -399.873[br]Bad argument in __cyl_bessel_i.[br]1, -10, -2670.99[br]
  3291. ]
  3292. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_[]
  3293. [h4 Error Output For cyl_bessel_i (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I0: Mathworld Data (Integer Version)]
  3294. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]
  3295. Bad argument in __cyl_bessel_i.[br]0, -2, 2.27959[br]Bad argument in __cyl_bessel_i.[br]0, -7, 168.594[br]Bad argument in __cyl_bessel_i.[br]0, -1, 1.26607[br]
  3296. ]
  3297. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data[]
  3298. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel In: Mathworld Data]
  3299. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]
  3300. Bad argument in __cyl_bessel_i.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_i.[br]-5, 100, 9.47009e+41[br]Bad argument in __cyl_bessel_i.[br]-5, -1, -0.000271463[br]Bad argument in __cyl_bessel_i.[br]10, -5, 0.00458004[br]Bad argument in __cyl_bessel_i.[br]-100, -200, 4.35275e+74[br]
  3301. ]
  3302. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data[]
  3303. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I1: Mathworld Data]
  3304. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]
  3305. Bad argument in __cyl_bessel_i.[br]1, -2, -1.59064[br]Bad argument in __cyl_bessel_i.[br]1, -8, -399.873[br]Bad argument in __cyl_bessel_i.[br]1, -10, -2670.99[br]
  3306. ]
  3307. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data[]
  3308. [h4 Error Output For cyl_bessel_i with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel I0: Mathworld Data]
  3309. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]
  3310. Bad argument in __cyl_bessel_i.[br]0, -2, 2.27959[br]Bad argument in __cyl_bessel_i.[br]0, -7, 168.594[br]Bad argument in __cyl_bessel_i.[br]0, -1, 1.26607[br]
  3311. ]
  3312. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data[]
  3313. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Random Data]
  3314. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data]
  3315. underflow[br]63.8868, 5.5381e-05, 0[br]underflow[br]63.8868, 6.9304e-05, 0[br]underflow[br]63.8868, 0.000232641, 0[br]underflow[br]63.8868, 0.000448, 8.39912e-323[br]underflow[br]63.8868, 0.000550287, 4.32897e-317[br]
  3316. ]
  3317. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_[]
  3318. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Mathworld Data (large values)]
  3319. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_]
  3320. domain error[br]-0.5, 1.2459e-206, 7.14823e+102[br]domain error[br]-256, 8, 0[br]domain error[br]-2.5, 4, -0.0145679[br]
  3321. ]
  3322. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data[]
  3323. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J: Mathworld Data]
  3324. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data]
  3325. domain error[br]-5.5, 3.1416, -2.5582[br]domain error[br]-5.5, 10000, 0.00244984[br]domain error[br]-5.5, 10000, 0.00244984[br]domain error[br]-5.5, 1e+06, 0.000279243[br]domain error[br]-0.5, 101, 0.0708185[br]domain error[br]-10.0003, 0.000976562, 1.41474e+35[br]domain error[br]-10.0003, 15, -0.0902239[br]domain error[br]-10.0003, 100, -0.0547614[br]domain error[br]-10.0003, 20000, -0.00556869[br]domain error[br]-8.5, 12.5664, -0.257087[br]
  3326. ]
  3327. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_[]
  3328. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel JN: Mathworld Data (Integer Version)]
  3329. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_]
  3330. underflow[br]10, 1e-100, 0[br]
  3331. ]
  3332. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data[]
  3333. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel JN: Mathworld Data]
  3334. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data]
  3335. domain error[br]-1, 1.25, -0.510623[br]domain error[br]-2, 0, 0[br]domain error[br]5, -10, 0.234062[br]domain error[br]-5, 1e+06, 0.000725964[br]domain error[br]-5, -1, 0.000249758[br]domain error[br]10, -10, 0.207486[br]domain error[br]10, -5, 0.0014678[br]domain error[br]-10, 1e+06, -0.000331079[br]underflow[br]10, 1e-100, 0[br]
  3336. ]
  3337. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data[]
  3338. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J1: Mathworld Data]
  3339. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data]
  3340. domain error[br]1, -2, -0.576725[br]domain error[br]1, -8, -0.234636[br]domain error[br]1, -10, -0.0434727[br]
  3341. ]
  3342. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data[]
  3343. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel J0: Mathworld Data]
  3344. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data]
  3345. domain error[br]0, -2, 0.223891[br]domain error[br]0, -8, 0.171651[br]domain error[br]0, -10, -0.245936[br]
  3346. ]
  3347. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_[]
  3348. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J: Mathworld Data (large values)]
  3349. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]
  3350. Bad argument in __cyl_bessel_j.[br]-0.5, 1.2459e-206, 7.14823e+102[br]Bad argument in __cyl_bessel_j.[br]-256, 8, 1.46866e-353[br]Bad argument in __cyl_bessel_j.[br]-2.5, 4, -0.0145679[br]
  3351. ]
  3352. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data[]
  3353. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J: Mathworld Data]
  3354. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]
  3355. Bad argument in __cyl_bessel_j.[br]-5.5, 3.1416, -2.5582[br]Bad argument in __cyl_bessel_j.[br]-5.5, 10000, 0.00244984[br]Bad argument in __cyl_bessel_j.[br]-5.5, 10000, 0.00244984[br]Bad argument in __cyl_bessel_j.[br]-5.5, 1e+06, 0.000279243[br]Bad argument in __cyl_bessel_j.[br]-0.5, 101, 0.0708185[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 0.000976562, 1.41474e+35[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 15, -0.0902239[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 100, -0.0547614[br]Bad argument in __cyl_bessel_j.[br]-10.0003, 20000, -0.00556869[br]Bad argument in __cyl_bessel_j.[br]-8.5, 12.5664, -0.257087[br]
  3356. ]
  3357. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_[]
  3358. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel JN: Mathworld Data (Integer Version)]
  3359. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]
  3360. Bad argument in __cyl_bessel_j.[br]-1, 1.25, -0.510623[br]Bad argument in __cyl_bessel_j.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_j.[br]5, -10, 0.234062[br]Bad argument in __cyl_bessel_j.[br]-5, 1e+06, 0.000725964[br]Bad argument in __cyl_bessel_j.[br]-5, -1, 0.000249758[br]Bad argument in __cyl_bessel_j.[br]10, -10, 0.207486[br]Bad argument in __cyl_bessel_j.[br]10, -5, 0.0014678[br]Bad argument in __cyl_bessel_j.[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 15.[br]Found: 0.0042409 Expected 0.00128318 Error: 2.305[br]1000, 100000, 0.00128318[br]
  3361. ]
  3362. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_[]
  3363. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J1: Mathworld Data (Integer Version)]
  3364. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]
  3365. Bad argument in __cyl_bessel_j.[br]1, -2, -0.576725[br]Bad argument in __cyl_bessel_j.[br]1, -8, -0.234636[br]Bad argument in __cyl_bessel_j.[br]1, -10, -0.0434727[br]
  3366. ]
  3367. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_[]
  3368. [h4 Error Output For cyl_bessel_j (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J0: Mathworld Data (Integer Version)]
  3369. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]
  3370. Bad argument in __cyl_bessel_j.[br]0, -2, 0.223891[br]Bad argument in __cyl_bessel_j.[br]0, -8, 0.171651[br]Bad argument in __cyl_bessel_j.[br]0, -10, -0.245936[br]
  3371. ]
  3372. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data[]
  3373. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel JN: Mathworld Data]
  3374. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]
  3375. Bad argument in __cyl_bessel_j.[br]-1, 1.25, -0.510623[br]Bad argument in __cyl_bessel_j.[br]-2, 0, 0[br]Bad argument in __cyl_bessel_j.[br]5, -10, 0.234062[br]Bad argument in __cyl_bessel_j.[br]-5, 1e+06, 0.000725964[br]Bad argument in __cyl_bessel_j.[br]-5, -1, 0.000249758[br]Bad argument in __cyl_bessel_j.[br]10, -10, 0.207486[br]Bad argument in __cyl_bessel_j.[br]10, -5, 0.0014678[br]Bad argument in __cyl_bessel_j.[br]-10, 1e+06, -0.000331079[br]CAUTION: Gross error found at entry 15.[br]Found: 0.0042409 Expected 0.00128318 Error: 2.305[br]1000, 100000, 0.00128318[br]
  3376. ]
  3377. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data[]
  3378. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J1: Mathworld Data]
  3379. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]
  3380. Bad argument in __cyl_bessel_j.[br]1, -2, -0.576725[br]Bad argument in __cyl_bessel_j.[br]1, -8, -0.234636[br]Bad argument in __cyl_bessel_j.[br]1, -10, -0.0434727[br]
  3381. ]
  3382. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data[]
  3383. [h4 Error Output For cyl_bessel_j with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel J0: Mathworld Data]
  3384. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]
  3385. Bad argument in __cyl_bessel_j.[br]0, -2, 0.223891[br]Bad argument in __cyl_bessel_j.[br]0, -8, 0.171651[br]Bad argument in __cyl_bessel_j.[br]0, -10, -0.245936[br]
  3386. ]
  3387. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data[]
  3388. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Random Data]
  3389. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data]
  3390. domain error[br]-80.4919, 24.7501, 6.57902e+28[br]domain error[br]-80.4919, 63.7722, 2.39552e-09[br]domain error[br]-80.4919, 125.28, 3.06904e-45[br]domain error[br]-80.4919, 255.547, 2.30343e-107[br]domain error[br]-80.4919, 503.011, 1.20315e-217[br]domain error[br]-80.4919, 1007.46, 0[br]domain error[br]-80.4919, 1185.4, 0[br]domain error[br]-80.4919, 3534.52, 0[br]domain error[br]-80.4919, 8071.55, 0[br]domain error[br]-80.4919, 16229.2, 0[br]domain error[br]-80.4919, 32066.2, 0[br]domain error[br]-80.4919, 36367.9, 0[br]domain error[br]-74.6026, 24.7501, 1.19405e+24[br]domain error[br]-74.6026, 63.7722, 5.81897e-12[br]domain error[br]-74.6026, 125.28, 9.89214e-47[br]domain error[br]-74.6026, 255.547, 3.9726e-108[br]domain error[br]-74.6026, 503.011, 4.87462e-218[br]domain error[br]-74.6026, 1007.46, 0[br]domain error[br]-74.6026, 1185.4, 0[br]domain error[br]-74.6026, 3534.52, 0[br]domain error[br]-74.6026, 8071.55, 0[br]domain error[br]-74.6026, 16229.2, 0[br]domain error[br]-74.6026, 32066.2, 0[br]domain error[br]-74.6026, 36367.9, 0[br]domain error[br]-72.9046, 24.7501, 5.5618e+22[br]domain error[br]-72.9046, 63.7722, 1.09452e-12[br]domain error[br]-72.9046, 125.28, 3.8393e-47[br]domain error[br]-72.9046, 255.547, 2.45173e-108[br]domain error[br]-72.9046, 503.011, 3.80454e-218[br]domain error[br]-72.9046, 1007.46, 0[br]domain error[br]-72.9046, 1185.4, 0[br]domain error[br]-72.9046, 3534.52, 0[br]domain error[br]-72.9046, 8071.55, 0[br]domain error[br]-72.9046, 16229.2, 0[br]domain error[br]-72.9046, 32066.2, 0[br]domain error[br]-72.9046, 36367.9, 0[br]domain error[br]-62.3236, 24.7501, 6.74518e+14[br]domain error[br]-62.3236, 63.7722, 6.54531e-17[br]domain error[br]-62.3236, 125.28, 1.65653e-49[br]domain error[br]-62.3236, 255.547, 1.54767e-109[br]domain error[br]-62.3236, 503.011, 9.22721e-219[br]domain error[br]-62.3236, 1007.46, 0[br]domain error[br]-62.3236, 1185.4, 0[br]domain error[br]-62.3236, 3534.52, 0[br]domain error[br]-62.3236, 8071.55, 0[br]domain error[br]-62.3236, 16229.2, 0[br]domain error[br]-62.3236, 32066.2, 0[br]domain error[br]-62.3236, 36367.9, 0[br]domain error[br]-55.7932, 24.7501, 2.00028e+10[br]domain error[br]-55.7932, 63.7722, 3.01107e-19[br]domain error[br]-55.7932, 125.28, 8.54693e-51[br]domain error[br]-55.7932, 255.547, 3.47666e-110[br]domain error[br]-55.7932, 503.011, 4.29705e-219[br]domain error[br]-55.7932, 1007.46, 0[br]domain error[br]-55.7932, 1185.4, 0[br]domain error[br]-55.7932, 3534.52, 0[br]domain error[br]-55.7932, 8071.55, 0[br]domain error[br]-55.7932, 16229.2, 0[br]domain error[br]-55.7932, 32066.2, 0[br]domain error[br]-55.7932, 36367.9, 0[br]domain error[br]-44.3004, 9.50706, 5.6936e+22[br]domain error[br]-44.3004, 24.7501, 1242.73[br]domain error[br]-44.3004, 63.7722, 7.99341e-23[br]domain error[br]-44.3004, 125.28, 9.88149e-53[br]domain error[br]-44.3004, 255.547, 3.73007e-111[br]domain error[br]-44.3004, 503.011, 1.37367e-219[br]domain error[br]-44.3004, 1007.46, 0[br]domain error[br]-44.3004, 1185.4, 0[br]domain error[br]-44.3004, 3534.52, 0[br]domain error[br]-44.3004, 8071.55, 0[br]domain error[br]-44.3004, 16229.2, 0[br]domain error[br]-44.3004, 32066.2, 0[br]domain error[br]-44.3004, 36367.9, 0[br]domain error[br]-38.3666, 5.11399, 4.97154e+27[br]domain error[br]-38.3666, 9.50706, 1.51436e+17[br]domain error[br]-38.3666, 24.7501, 0.639495[br]domain error[br]-38.3666, 63.7722, 2.19334e-24[br]domain error[br]-38.3666, 125.28, 1.45351e-53[br]domain error[br]-38.3666, 255.547, 1.43713e-111[br]domain error[br]-38.3666, 503.011, 8.44445e-220[br]domain error[br]-38.3666, 1007.46, 0[br]domain error[br]-38.3666, 1185.4, 0[br]domain error[br]-38.3666, 3534.52, 0[br]domain error[br]-38.3666, 8071.55, 0[br]domain error[br]-38.3666, 16229.2, 0[br]domain error[br]-38.3666, 32066.2, 0[br]domain error[br]-38.3666, 36367.9, 0[br]underflow[br]9.3763, 1007.46, 0[br]underflow[br]9.3763, 1185.4, 0[br]underflow[br]9.3763, 3534.52, 0[br]underflow[br]9.3763, 8071.55, 0[br]underflow[br]9.3763, 16229.2, 0[br]underflow[br]9.3763, 32066.2, 0[br]underflow[br]9.3763, 36367.9, 0[br]underflow[br]9.44412, 1007.46, 0[br]underflow[br]9.44412, 1185.4, 0[br]underflow[br]9.44412, 3534.52, 0[br]underflow[br]9.44412, 8071.55, 0[br]underflow[br]9.44412, 16229.2, 0[br]underflow[br]9.44412, 32066.2, 0[br]underflow[br]9.44412, 36367.9, 0[br]underflow[br]26.4719, 1007.46, 0[br]underflow[br]26.4719, 1185.4, 0[br]underflow[br]26.4719, 3534.52, 0[br]underflow[br]26.4719, 8071.55, 0[br]underflow[br]26.4719, 16229.2, 0[br]underflow[br]26.4719, 32066.2, 0[br]underflow[br]26.4719, 36367.9, 0[br]underflow[br]62.9447, 1007.46, 0[br]underflow[br]62.9447, 1185.4, 0[br]underflow[br]62.9447, 3534.52, 0[br]underflow[br]62.9447, 8071.55, 0[br]underflow[br]62.9447, 16229.2, 0[br]underflow[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3391. ]
  3392. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data[]
  3393. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kn: Random Data]
  3394. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data]
  3395. underflow[br]0, 1007.46, 0[br]underflow[br]0, 1185.4, 0[br]underflow[br]0, 3534.52, 0[br]underflow[br]0, 8071.55, 0[br]underflow[br]0, 16229.2, 0[br]underflow[br]0, 32066.2, 0[br]underflow[br]0, 36367.9, 0[br]underflow[br]1, 1007.46, 0[br]underflow[br]1, 1185.4, 0[br]underflow[br]1, 3534.52, 0[br]underflow[br]1, 8071.55, 0[br]underflow[br]1, 16229.2, 0[br]underflow[br]1, 32066.2, 0[br]underflow[br]1, 36367.9, 0[br]underflow[br]4, 1007.46, 0[br]underflow[br]4, 1185.4, 0[br]underflow[br]4, 3534.52, 0[br]underflow[br]4, 8071.55, 0[br]underflow[br]4, 16229.2, 0[br]underflow[br]4, 32066.2, 0[br]underflow[br]4, 36367.9, 0[br]underflow[br]7, 1007.46, 0[br]underflow[br]7, 1185.4, 0[br]underflow[br]7, 3534.52, 0[br]underflow[br]7, 8071.55, 0[br]underflow[br]7, 16229.2, 0[br]underflow[br]7, 32066.2, 0[br]underflow[br]7, 36367.9, 0[br]underflow[br]10, 1007.46, 0[br]underflow[br]10, 1185.4, 0[br]underflow[br]10, 3534.52, 0[br]underflow[br]10, 8071.55, 0[br]underflow[br]10, 16229.2, 0[br]underflow[br]10, 32066.2, 0[br]underflow[br]10, 36367.9, 0[br]underflow[br]13, 1007.46, 0[br]underflow[br]13, 1185.4, 0[br]underflow[br]13, 3534.52, 0[br]underflow[br]13, 8071.55, 0[br]underflow[br]13, 16229.2, 0[br]underflow[br]13, 32066.2, 0[br]underflow[br]13, 36367.9, 0[br]underflow[br]16, 1007.46, 0[br]underflow[br]16, 1185.4, 0[br]underflow[br]16, 3534.52, 0[br]underflow[br]16, 8071.55, 0[br]underflow[br]16, 16229.2, 0[br]underflow[br]16, 32066.2, 0[br]underflow[br]16, 36367.9, 0[br]underflow[br]19, 1007.46, 0[br]underflow[br]19, 1185.4, 0[br]underflow[br]19, 3534.52, 0[br]underflow[br]19, 8071.55, 0[br]underflow[br]19, 16229.2, 0[br]underflow[br]19, 32066.2, 0[br]underflow[br]19, 36367.9, 0[br]underflow[br]22, 1007.46, 0[br]underflow[br]22, 1185.4, 0[br]underflow[br]22, 3534.52, 0[br]underflow[br]22, 8071.55, 0[br]underflow[br]22, 16229.2, 0[br]underflow[br]22, 32066.2, 0[br]underflow[br]22, 36367.9, 0[br]underflow[br]25, 1007.46, 0[br]underflow[br]25, 1185.4, 0[br]underflow[br]25, 3534.52, 0[br]underflow[br]25, 8071.55, 0[br]underflow[br]25, 16229.2, 0[br]underflow[br]25, 32066.2, 0[br]underflow[br]25, 36367.9, 0[br]underflow[br]28, 1007.46, 0[br]underflow[br]28, 1185.4, 0[br]underflow[br]28, 3534.52, 0[br]underflow[br]28, 8071.55, 0[br]underflow[br]28, 16229.2, 0[br]underflow[br]28, 32066.2, 0[br]underflow[br]28, 36367.9, 0[br]underflow[br]31, 1007.46, 0[br]underflow[br]31, 1185.4, 0[br]underflow[br]31, 3534.52, 0[br]underflow[br]31, 8071.55, 0[br]underflow[br]31, 16229.2, 0[br]underflow[br]31, 32066.2, 0[br]underflow[br]31, 36367.9, 0[br]underflow[br]34, 1007.46, 0[br]underflow[br]34, 1185.4, 0[br]underflow[br]34, 3534.52, 0[br]underflow[br]34, 8071.55, 0[br]underflow[br]34, 16229.2, 0[br]underflow[br]34, 32066.2, 0[br]underflow[br]34, 36367.9, 0[br]underflow[br]37, 1007.46, 0[br]underflow[br]37, 1185.4, 0[br]underflow[br]37, 3534.52, 0[br]underflow[br]37, 8071.55, 0[br]underflow[br]37, 16229.2, 0[br]underflow[br]37, 32066.2, 0[br]underflow[br]37, 36367.9, 0[br]underflow[br]40, 1007.46, 0[br]underflow[br]40, 1185.4, 0[br]underflow[br]40, 3534.52, 0[br]underflow[br]40, 8071.55, 0[br]underflow[br]40, 16229.2, 0[br]underflow[br]40, 32066.2, 0[br]underflow[br]40, 36367.9, 0[br]underflow[br]43, 1007.46, 0[br]underflow[br]43, 1185.4, 0[br]underflow[br]43, 3534.52, 0[br]underflow[br]43, 8071.55, 0[br]underflow[br]43, 16229.2, 0[br]underflow[br]43, 32066.2, 0[br]underflow[br]43, 36367.9, 0[br]underflow[br]46, 1007.46, 0[br]underflow[br]46, 1185.4, 0[br]underflow[br]46, 3534.52, 0[br]underflow[br]46, 8071.55, 0[br]underflow[br]46, 16229.2, 0[br]underflow[br]46, 32066.2, 0[br]underflow[br]46, 36367.9, 0[br]underflow[br]49, 1007.46, 0[br]underflow[br]49, 1185.4, 0[br]underflow[br]49, 3534.52, 0[br]underflow[br]49, 8071.55, 0[br]underflow[br]49, 16229.2, 0[br]underflow[br]49, 32066.2, 0[br]underflow[br]49, 36367.9, 0[br]underflow[br]52, 1007.46, 0[br]underflow[br]52, 1185.4, 0[br]underflow[br]52, 3534.52, 0[br]underflow[br]52, 8071.55, 0[br]underflow[br]52, 16229.2, 0[br]underflow[br]52, 32066.2, 0[br]underflow[br]52, 36367.9, 0[br]underflow[br]55, 1007.46, 0[br]underflow[br]55, 1185.4, 0[br]underflow[br]55, 3534.52, 0[br]underflow[br]55, 8071.55, 0[br]underflow[br]55, 16229.2, 0[br]underflow[br]55, 32066.2, 0[br]underflow[br]55, 36367.9, 0[br]underflow[br]58, 1007.46, 0[br]underflow[br]58, 1185.4, 0[br]underflow[br]58, 3534.52, 0[br]underflow[br]58, 8071.55, 0[br]underflow[br]58, 16229.2, 0[br]underflow[br]58, 32066.2, 0[br]underflow[br]58, 36367.9, 0[br]underflow[br]61, 1007.46, 0[br]underflow[br]61, 1185.4, 0[br]underflow[br]61, 3534.52, 0[br]underflow[br]61, 8071.55, 0[br]underflow[br]61, 16229.2, 0[br]underflow[br]61, 32066.2, 0[br]underflow[br]61, 36367.9, 0[br]underflow[br]64, 1007.46, 0[br]underflow[br]64, 1185.4, 0[br]underflow[br]64, 3534.52, 0[br]underflow[br]64, 8071.55, 0[br]underflow[br]64, 16229.2, 0[br]underflow[br]64, 32066.2, 0[br]underflow[br]64, 36367.9, 0[br]underflow[br]67, 1007.46, 0[br]underflow[br]67, 1185.4, 0[br]underflow[br]67, 3534.52, 0[br]underflow[br]67, 8071.55, 0[br]underflow[br]67, 16229.2, 0[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3396. ]
  3397. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_[]
  3398. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Mathworld Data (large values)]
  3399. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_]
  3400. domain error[br]-1, 3.72917e-155, 2.68156e+154[br]domain error[br]-1.125, 3.72917e-155, 5.53984e+173[br]
  3401. ]
  3402. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data[]
  3403. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kv: Mathworld Data]
  3404. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data]
  3405. domain error[br]-5.5, 10, 7.33045e-05[br]domain error[br]-5.5, 100, 5.41275e-45[br]domain error[br]-141.399, 50, 1.30185e+42[br]
  3406. ]
  3407. [template errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data[]
  3408. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Bessel Kn: Mathworld Data]
  3409. [#errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data]
  3410. domain error[br]-5, 100, 5.27326e-45[br]domain error[br]-10, 1, 1.80713e+08[br]domain error[br]-1000, 700, 6.51562e-31[br]
  3411. ]
  3412. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data[]
  3413. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Random Data]
  3414. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]
  3415. Bad argument in __cyl_bessel_k.[br]-80.4919, 24.7501, 6.57902e+28[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 63.7722, 2.39552e-09[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 125.28, 3.06904e-45[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 255.547, 2.30343e-107[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 503.011, 1.20315e-217[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 1007.46, 2.86537e-438[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 1185.4, 8.63263e-516[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 3534.52, 5.01367e-1537[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 8071.55, 7.76555e-3508[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-80.4919, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 24.7501, 1.19405e+24[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 63.7722, 5.81897e-12[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 125.28, 9.89214e-47[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 255.547, 3.9726e-108[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 503.011, 4.87462e-218[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 1007.46, 1.82221e-438[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 1185.4, 5.87506e-516[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 3534.52, 4.40608e-1537[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 8071.55, 7.3384e-3508[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-74.6026, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 24.7501, 5.5618e+22[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 63.7722, 1.09452e-12[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 125.28, 3.8393e-47[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 255.547, 2.45173e-108[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 503.011, 3.80454e-218[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 1007.46, 1.60949e-438[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 1185.4, 5.28662e-516[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 3534.52, 4.25273e-1537[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 8071.55, 7.22542e-3508[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-72.9046, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 24.7501, 6.74518e+14[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 63.7722, 6.54531e-17[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 125.28, 1.65653e-49[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 255.547, 1.54767e-109[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 503.011, 9.22721e-219[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 1007.46, 7.91894e-439[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 1185.4, 2.89281e-516[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 3534.52, 3.4736e-1537[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 8071.55, 6.6126e-3508[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-62.3236, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 24.7501, 2.00028e+10[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 63.7722, 3.01107e-19[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 125.28, 8.54693e-51[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 255.547, 3.47666e-110[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 503.011, 4.29705e-219[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 1007.46, 5.40242e-439[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 1185.4, 2.08996e-516[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 3534.52, 3.11458e-1537[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 8071.55, 6.30409e-3508[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 16229.2, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 32066.2, 0[br]Bad argument in __cyl_bessel_k.[br]-55.7932, 36367.9, 0[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 9.50706, 5.6936e+22[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 24.7501, 1242.73[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 63.7722, 7.99341e-23[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 125.28, 9.88149e-53[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 255.547, 3.73007e-111[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 503.011, 1.37367e-219[br]Bad argument in __cyl_bessel_k.[br]-44.3004, 1007.46, 3.05398e-439[br]Bad argument in __cyl_bessel_k.[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3416. ]
  3417. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_[]
  3418. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Mathworld Data (large values)]
  3419. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]
  3420. Bad argument in __cyl_bessel_k.[br]-1, 3.72917e-155, 2.68156e+154[br]Bad argument in __cyl_bessel_k.[br]-1.125, 3.72917e-155, 5.53984e+173[br]
  3421. ]
  3422. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data[]
  3423. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kv: Mathworld Data]
  3424. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]
  3425. Bad argument in __cyl_bessel_k.[br]-5.5, 10, 7.33045e-05[br]Bad argument in __cyl_bessel_k.[br]-5.5, 100, 5.41275e-45[br]Bad argument in __cyl_bessel_k.[br]-141.399, 50, 1.30185e+42[br]
  3426. ]
  3427. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_[]
  3428. [h4 Error Output For cyl_bessel_k (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kn: Mathworld Data (Integer Version)]
  3429. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]
  3430. Bad argument in __cyl_bessel_k.[br]-5, 100, 5.27326e-45[br]Bad argument in __cyl_bessel_k.[br]-10, 1, 1.80713e+08[br]Bad argument in __cyl_bessel_k.[br]-1000, 700, 6.51562e-31[br]
  3431. ]
  3432. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data[]
  3433. [h4 Error Output For cyl_bessel_k with compiler GNU C++ version 7.1.0 and library <cmath> and test data Bessel Kn: Mathworld Data]
  3434. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]
  3435. Bad argument in __cyl_bessel_k.[br]-5, 100, 5.27326e-45[br]Bad argument in __cyl_bessel_k.[br]-10, 1, 1.80713e+08[br]Bad argument in __cyl_bessel_k.[br]-1000, 700, 6.51562e-31[br]
  3436. ]
  3437. [template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_[]
  3438. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yv: Mathworld Data (large values)]
  3439. [#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_]
  3440. domain error[br]-0.5, 1.2459e-206, 8.90598e-104[br]
  3441. ]
  3442. [template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data[]
  3443. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yv: Mathworld Data]
  3444. [#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data]
  3445. domain error[br]-5.5, 3.125, -0.0274994[br]domain error[br]-5.5, 10000, -0.00759344[br]domain error[br]-10.0003, 0.000976562, -1.50382e+38[br]domain error[br]-10.0003, 100, 0.0583042[br]domain error[br]-141.75, 100, -3.8101e+09[br]domain error[br]-8.5, 12.5664, 0.0436808[br]
  3446. ]
  3447. [template errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data[]
  3448. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Yn: Mathworld Data]
  3449. [#errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data]
  3450. domain error[br]-5, 1e+06, 0.000331052[br]domain error[br]-10, 1e+06, 0.000725952[br]domain error[br]-1000, 700, -1.88753e+77[br]domain error[br]-25, 8, 3.45114e+08[br]
  3451. ]
  3452. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data[]
  3453. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Random Data]
  3454. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]
  3455. CAUTION: Gross error found at entry 394.[br]Found: -3.29903 Expected 0.0192842 Error: 1.18973e+4932[br]125.28, 1007.46, 0.0192842[br]CAUTION: Gross error found at entry 395.[br]Found: 1.13543 Expected 0.0230358 Error: 48.2897[br]125.28, 1185.4, 0.0230358[br]CAUTION: Gross error found at entry 396.[br]Found: 0.00119445 Expected 0.00460223 Error: 2.85302[br]125.28, 3534.52, 0.00460223[br]CAUTION: Gross error found at entry 403.[br]Found: 1068 Expected -0.00270959 Error: 1.18973e+4932[br]255.547, 1007.46, -0.00270959[br]CAUTION: Gross error found at entry 404.[br]Found: -395.006 Expected 0.00738845 Error: 1.18973e+4932[br]255.547, 1185.4, 0.00738845[br]CAUTION: Gross error found at entry 405.[br]Found: 1.08701 Expected -0.000407036 Error: 1.18973e+4932[br]255.547, 3534.52, -0.000407036[br]CAUTION: Gross error found at entry 406.[br]Found: 0.0232211 Expected 0.00886946 Error: 1.61809[br]255.547, 8071.55, 0.00886946[br]CAUTION: Gross error found at entry 411.[br]Found: 65895.7 Expected -0.0158467 Error: 1.18973e+4932[br]503.011, 1007.46, -0.0158467[br]CAUTION: Gross error found at entry 412.[br]Found: -123316 Expected 0.00594357 Error: 1.18973e+4932[br]503.011, 1185.4, 0.00594357[br]CAUTION: Gross error found at entry 413.[br]Found: -706.209 Expected 0.010151 Error: 1.18973e+4932[br]503.011, 3534.52, 0.010151[br]CAUTION: Gross error found at entry 414.[br]Found: -21.2081 Expected 0.00888375 Error: 1.18973e+4932[br]503.011, 8071.55, 0.00888375[br]CAUTION: Gross error found at entry 415.[br]Found: 0.0272835 Expected 0.00552287 Error: 3.94008[br]503.011, 16229.2, 0.00552287[br]CAUTION: Gross error found at entry 416.[br]Found: 0.0103324 Expected 0.00445559 Error: 1.31898[br]503.011, 32066.2, 0.00445559[br]CAUTION: Gross error found at entry 417.[br]Found: 0.00540788 Expected -0.00384344 Error: 1.18973e+4932[br]503.011, 36367.9, -0.00384344[br]CAUTION: Gross error found at entry 418.[br]Found: 5.43091e+07 Expected -0.0772843 Error: 1.18973e+4932[br]1007.46, 1007.46, -0.0772843[br]CAUTION: Gross error found at entry 419.[br]Found: -2.84383e+07 Expected 0.0304312 Error: 1.18973e+4932[br]1007.46, 1185.4, 0.0304312[br]CAUTION: Gross error found at entry 420.[br]Found: -61440.2 Expected -0.00474217 Error: 1.29562e+07[br]1007.46, 3534.52, -0.00474217[br]CAUTION: Gross error found at entry 421.[br]Found: -4126.89 Expected -0.0074205 Error: 556146[br]1007.46, 8071.55, -0.0074205[br]CAUTION: Gross error found at entry 422.[br]Found: -69.2831 Expected -0.00179572 Error: 38581.4[br]1007.46, 16229.2, -0.00179572[br]CAUTION: Gross error found at entry 423.[br]Found: 2.32048 Expected 0.000750053 Error: 3092.76[br]1007.46, 32066.2, 0.000750053[br]CAUTION: Gross error found at entry 424.[br]Found: 3.90724 Expected 0.00305125 Error: 1279.54[br]1007.46, 36367.9, 0.00305125[br]CAUTION: Gross error found at entry 425.[br]Found: -1.83374e+08 Expected -7.25176e+28 Error: 3.95463e+20[br]1185.4, 1007.46, -7.25176e+28[br]CAUTION: Gross error found at entry 426.[br]Found: 1.09822e+08 Expected -0.0732059 Error: 1.18973e+4932[br]1185.4, 1185.4, -0.0732059[br]CAUTION: Gross error found at entry 427.[br]Found: 315632 Expected 0.000479585 Error: 6.58136e+08[br]1185.4, 3534.52, 0.000479585[br]CAUTION: Gross error found at entry 428.[br]Found: 16815.6 Expected 0.00174909 Error: 9.61391e+06[br]1185.4, 8071.55, 0.00174909[br]CAUTION: Gross error found at entry 429.[br]Found: 133.356 Expected 0.00416288 Error: 32033.6[br]1185.4, 16229.2, 0.00416288[br]CAUTION: Gross error found at entry 430.[br]Found: -1.38401 Expected -0.000320056 Error: 4323.27[br]1185.4, 32066.2, -0.000320056[br]CAUTION: Gross error found at entry 431.[br]Found: -17.7085 Expected -0.00417656 Error: 4238.96[br]1185.4, 36367.9, -0.00417656[br]
  3456. ]
  3457. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_[]
  3458. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Mathworld Data (large values)]
  3459. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]
  3460. Bad argument in __cyl_neumann_n.[br]-0.5, 1.2459e-206, 8.90598e-104[br]
  3461. ]
  3462. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data[]
  3463. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yv: Mathworld Data]
  3464. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]
  3465. Bad argument in __cyl_neumann_n.[br]-5.5, 3.125, -0.0274994[br]Bad argument in __cyl_neumann_n.[br]-5.5, 10000, -0.00759344[br]Bad argument in __cyl_neumann_n.[br]-10.0003, 0.000976562, -1.50382e+38[br]Bad argument in __cyl_neumann_n.[br]-10.0003, 100, 0.0583042[br]Bad argument in __cyl_neumann_n.[br]-141.75, 100, -3.8101e+09[br]Bad argument in __cyl_neumann_n.[br]-8.5, 12.5664, 0.0436808[br]
  3466. ]
  3467. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_[]
  3468. [h4 Error Output For cyl_neumann (integer orders) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yn: Mathworld Data (Integer Version)]
  3469. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]
  3470. Bad argument in __cyl_neumann_n.[br]-5, 1e+06, 0.000331052[br]Bad argument in __cyl_neumann_n.[br]-10, 1e+06, 0.000725952[br]CAUTION: Gross error found at entry 7.[br]Found: 0.0540745 Expected 0.00217255 Error: 23.8899[br]1000, 100000, 0.00217255[br]Bad argument in __cyl_neumann_n.[br]-1000, 700, -1.88753e+77[br]Bad argument in __cyl_neumann_n.[br]-25, 8, 3.45114e+08[br]
  3471. ]
  3472. [template errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data[]
  3473. [h4 Error Output For cyl_neumann with compiler GNU C++ version 7.1.0 and library <cmath> and test data Yn: Mathworld Data]
  3474. [#errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]
  3475. Bad argument in __cyl_neumann_n.[br]-5, 1e+06, 0.000331052[br]Bad argument in __cyl_neumann_n.[br]-10, 1e+06, 0.000725952[br]CAUTION: Gross error found at entry 7.[br]Found: 0.0540745 Expected 0.00217255 Error: 23.8899[br]1000, 100000, 0.00217255[br]Bad argument in __cyl_neumann_n.[br]-1000, 700, -1.88753e+77[br]Bad argument in __cyl_neumann_n.[br]-25, 8, 3.45114e+08[br]
  3476. ]
  3477. [template errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values[]
  3478. [h4 Error Output For beta with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Beta Function: Small Values]
  3479. [#errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values]
  3480. CAUTION: Found non-finite result, when a finite value was expected at entry 22[br]Found: inf Expected 5.69832e+154 Error: 1.79769e+308[br]2.98334e-154, 1.86459e-155, 5.69832e+154[br]CAUTION: Gross error found at entry 22.[br]Found: inf Expected 5.69832e+154 Error: 1.79769e+308[br]2.98334e-154, 1.86459e-155, 5.69832e+154[br]
  3481. ]
  3482. [template errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data[]
  3483. [h4 Error Output For ellint_rj with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data RJ: Random data]
  3484. [#errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]
  3485. domain error[br]1.77787e-31, 1.40657e+18, 10.046, -4.8298e-10, -2.51795e-10[br]domain error[br]3.37448e-31, 4.65772e+22, 0.469831, -4.33756e-09, -2.95865e-11[br]domain error[br]5.25297e-31, 5.85483e+25, 2.02482e-15, -1.87347e-28, 3.36445e+07[br]domain error[br]6.22216e-31, 3.43401e+23, 0.673005, -2.7626e-13, -7.58898e-12[br]domain error[br]6.26875e-31, 2.62568e-13, 1.06394e+24, -1.36451e+14, -6.70372e-25[br]domain error[br]6.84599e-31, 3.57666e-29, 1.82191e+11, -3.63292e+08, -8.35235e-13[br]domain error[br]8.90482e-31, 1.97093e-28, 1.14939e-31, -1.26424e-12, -6.39454e+26[br]domain error[br]1.07374e-30, 1.70005e-12, 1.88773e-25, -1.16558e-29, 4.31668e+32[br]domain error[br]1.17141e-30, 24.2523, 3.67522e+21, -4.79065e-22, 2.2702e-05[br]domain error[br]1.64143e-30, 2.01978e-22, 2.58942e+12, -8.52649e-12, -2.82629e+06[br]domain error[br]1.85141e-30, 0.0386712, 2.37846e-13, -1.57357e+15, -1.38574e-13[br]domain error[br]2.70034e-30, 4.43896e-24, 7.54576e+16, -1.1436e-14, -1.10082e+07[br]domain error[br]4.01162e-30, 2.73343e+23, 1.32333e+13, -1.86032e-07, -4.16626e-25[br]domain error[br]4.13665e-30, 1.08034e-30, 3.13547e-16, -5.58099e-08, -5.14643e+16[br]domain error[br]4.3728e-30, 7.79812e+12, 8.58894e+21, -4.58312e-24, 5.28901e-09[br]domain error[br]5.6397e-30, 1.64768e+23, 9.64423e-15, -1.82207e+20, -1.62886e-30[br]domain error[br]9.89841e-30, 9.69731e+10, 1.03263e+21, -0.00343967, -9.62714e-22[br]domain error[br]1.3797e-29, 6.03357e+08, 5.62497e-15, -5.87235e+16, -5.80287e-20[br]domain error[br]1.96963e-29, 3.22384e-25, 2.92187e+23, -3.80643e+27, -8.2513e-38[br]domain error[br]2.00927e-29, 5.6976e-05, 1.16219e+25, -1.64129e-22, 0.00318397[br]domain error[br]7.29506e-29, 5904.94, 9.93922e+10, -19.528, -1.60795e-09[br]domain error[br]1.19698e-28, 1.66816e-22, 28472, -1.21137e-19, -5.84699e+17[br]domain error[br]1.64095e-28, 2.13421e-21, 7.8914e-15, -1.77584e-07, -1.70156e+15[br]domain error[br]2.03475e-28, 4.40987e+15, 28739.1, -9624.5, -1.29418e-12[br]domain error[br]2.73113e-28, 1.08457e+19, 4.00674e+08, -5.70043e-11, 1.092e-17[br]domain error[br]5.52633e-28, 1.45707e-17, 1.29411e-27, -1.67255e-15, -5.84881e+24[br]domain error[br]5.61278e-28, 9.22881e-12, 8.64222e-13, -5.6282e+23, -4.57782e-18[br]domain error[br]6.08465e-28, 1.32249e+26, 1.25536e-30, -1.89097e-14, -223.246[br]domain error[br]9.50943e-28, 2.49682e-18, 0.000904584, -3.1419e-12, -2.44954e+14[br]domain error[br]1.20779e-27, 35383.2, 1.35533e-15, -4.67834e-24, 3.20581e+15[br]domain error[br]2.29822e-27, 3.35258e-16, 2.60689e+08, -9.99161e-20, -5.4924e+11[br]domain error[br]3.0926e-27, 3.11839e-13, 3.37883e-23, -1.94349e+26, -3.55191e-19[br]domain error[br]3.12803e-27, 1.15118e+16, 1.52495e+10, -4.2399e+13, -3.07515e-21[br]domain error[br]4.49747e-27, 716.685, 1.69018e-23, -1.32558e-14, -9.2291e+13[br]domain error[br]4.84575e-27, 3.44028e-27, 3.42665e+09, -812.399, -2.12767e-06[br]domain error[br]5.81424e-27, 3.70845e-15, 3.69338e+11, -4.15794e+06, -2.95944e-11[br]domain error[br]6.08654e-27, 1.23742e+08, 1.09124e-26, -2.19946e+16, -4.90896e-19[br]domain error[br]7.71967e-27, 9.46115e-26, 1.24324e+25, -522800, -5.83203e-17[br]domain error[br]9.20037e-27, 207550, 2.45782e-17, -6.06901e+29, -2.88945e-31[br]domain error[br]1.75502e-26, 5.81507e+16, 8.83063e+21, -1.11214e-21, 1.57697e-11[br]domain error[br]2.29965e-26, 2.9716e-21, 1.81059e-25, -5.23972e-08, -6.23302e+18[br]domain error[br]2.32628e-26, 0.0655133, 1.62901e-21, -7.15441e-17, -9.88586e+17[br]domain error[br]3.49194e-26, 2.53343e+14, 756.217, -1.3359e+10, -1.275e-16[br]domain error[br]1.009e-25, 0.0694304, 1.20267e-14, -1.55746e-22, 2.10701e+17[br]domain error[br]3.54771e-25, 1.67999e-27, 2.3917e+24, -9.98754e+25, -1.11704e-36[br]domain error[br]6.31714e-25, 3.4594e-28, 6.37951e-24, -1.25529e-24, -9.56292e+35[br]domain error[br]6.74086e-25, 2.47169e+12, 1.32962e+23, -6.78845e+06, -3.32861e-24[br]domain error[br]1.8099e-24, 4.5215e-06, 8.66937e-11, -3.70795e-08, -1.41893e+11[br]domain error[br]2.29798e-24, 9.30454e-30, 6.56584e-17, -9890.38, -373149[br]domain error[br]2.88161e-24, 8.82377e-05, 1.57747e+21, -4.25068e-24, 2260.61[br]domain error[br]3.25991e-24, 1.92923e+29, 3.09752e-05, -1.00986e+11, -1.25485e-24[br]domain error[br]6.36705e-24, 2.8074e+22, 1.75569e-13, -1.53152e+24, -4.89823e-34[br]domain error[br]7.90772e-24, 2.11611e-30, 1.42682e-07, -0.00296297, -5.38814e+07[br]domain error[br]1.05302e-23, 4.83473e+26, 4.43149e-30, -1.56818e+13, -3.6836e-25[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3486. ]
  3487. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data[]
  3488. [h4 Error Output For ellint_1 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral F: Mathworld Data]
  3489. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]
  3490. CAUTION: Gross error found at entry 9.[br]Found: -7.02862e+09 Expected 1.04181e+20 Error: 1.18973e+4932[br]1e+20, 0.390625, 1.04181e+20[br]CAUTION: Gross error found at entry 10.[br]Found: -9.3866e+09 Expected 1.39133e+50 Error: 1.18973e+4932[br]1e+50, 0.875, 1.39133e+50[br]
  3491. ]
  3492. [template errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data[]
  3493. [h4 Error Output For ellint_2 (complete) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Elliptic Integral E: Mathworld Data]
  3494. [#errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]
  3495. domain error[br]-1, 1[br]
  3496. ]
  3497. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data[]
  3498. [h4 Error Output For ellint_2 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral E: Mathworld Data]
  3499. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]
  3500. CAUTION: Gross error found at entry 7.[br]Found: -6.3027e+09 Expected 9.34215e+09 Error: 1.18973e+4932[br]1e+10, -0.5, 9.34215e+09[br]CAUTION: Gross error found at entry 8.[br]Found: -6.48129e+09 Expected 7.08861e+19 Error: 1.18973e+4932[br]7.3787e+19, 0.390625, 7.08861e+19[br]CAUTION: Gross error found at entry 9.[br]Found: -5.13973e+09 Expected 7.1259e+49 Error: 1.18973e+4932[br]9.35361e+49, 0.878906, 7.1259e+49[br]
  3501. ]
  3502. [template errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data[]
  3503. [h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Complete Elliptic Integral PI: Mathworld Data]
  3504. [#errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]
  3505. domain error[br]-4.14952e+180, 0.5, 7.71119e-91[br]
  3506. ]
  3507. [template errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data[]
  3508. [h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Elliptic Integral PI: Mathworld Data]
  3509. [#errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]
  3510. domain error[br]1.125, 10, 0.25, 0.662468[br]domain error[br]1.125, 3, 0.25, -0.142697[br]domain error[br]1.00391, 21.5, 0.125, -0.535406[br]domain error[br]1, 2, 0.5, -2.87535[br]domain error[br]1, -2, 0.5, 2.87535[br]domain error[br]1, 2, 6.22302e-61, -2.18504[br]domain error[br]1, -2, 6.22302e-61, 2.18504[br]domain error[br]20, 3.14257, 0.5, 0.000975941[br]domain error[br]20, -3.14257, 0.5, -0.000975941[br]domain error[br]1.01562, 1.6958, 0.5, -27.1647[br]domain error[br]1.01562, -1.6958, 0.5, 27.1647[br]
  3511. ]
  3512. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data[]
  3513. [h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Complete Elliptic Integral PI: Random Data]
  3514. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]
  3515. Argument too small in __ellint_rj[br]-87.1743, 0.126987, 0.167413[br]Argument too small in __ellint_rj[br]-87.1743, 0.135477, 0.167431[br]Argument too small in __ellint_rj[br]-87.1743, 0.221034, 0.167683[br]Argument too small in __ellint_rj[br]-87.1743, 0.308167, 0.168078[br]Argument too small in __ellint_rj[br]-87.1743, 0.632359, 0.17122[br]Argument too small in __ellint_rj[br]-87.1743, 0.814724, 0.175341[br]Argument too small in __ellint_rj[br]-87.1743, 0.835009, 0.176056[br]Argument too small in __ellint_rj[br]-87.1743, 0.905792, 0.179501[br]Argument too small in __ellint_rj[br]-87.1743, 0.913376, 0.180014[br]Argument too small in __ellint_rj[br]-87.1743, 0.968868, 0.186162[br]Argument too small in __ellint_rj[br]-86.3168, 0.126987, 0.168233[br]Argument too small in __ellint_rj[br]-86.3168, 0.135477, 0.168252[br]Argument too small in __ellint_rj[br]-86.3168, 0.221034, 0.168506[br]Argument too small in __ellint_rj[br]-86.3168, 0.308167, 0.168905[br]Argument too small in __ellint_rj[br]-86.3168, 0.632359, 0.172077[br]Argument too small in __ellint_rj[br]-86.3168, 0.814724, 0.176237[br]Argument too small in __ellint_rj[br]-86.3168, 0.835009, 0.176958[br]Argument too small in __ellint_rj[br]-86.3168, 0.905792, 0.180437[br]Argument too small in __ellint_rj[br]-86.3168, 0.913376, 0.180955[br]Argument too small in __ellint_rj[br]-86.3168, 0.968868, 0.187163[br]Argument too small in __ellint_rj[br]-77.6756, 0.126987, 0.177238[br]Argument too small in __ellint_rj[br]-77.6756, 0.135477, 0.177258[br]Argument too small in __ellint_rj[br]-77.6756, 0.221034, 0.17754[br]Argument too small in __ellint_rj[br]-77.6756, 0.308167, 0.17798[br]Argument too small in __ellint_rj[br]-77.6756, 0.632359, 0.181485[br]Argument too small in __ellint_rj[br]-77.6756, 0.814724, 0.186089[br]Argument too small in __ellint_rj[br]-77.6756, 0.835009, 0.186888[br]Argument too small in __ellint_rj[br]-77.6756, 0.905792, 0.190742[br]Argument too small in __ellint_rj[br]-77.6756, 0.913376, 0.191315[br]Argument too small in __ellint_rj[br]-77.6756, 0.968868, 0.1982[br]Argument too small in __ellint_rj[br]-68.8751, 0.126987, 0.188077[br]Argument too small in __ellint_rj[br]-68.8751, 0.135477, 0.188099[br]Argument too small in __ellint_rj[br]-68.8751, 0.221034, 0.188414[br]Argument too small in __ellint_rj[br]-68.8751, 0.308167, 0.188907[br]Argument too small in __ellint_rj[br]-68.8751, 0.632359, 0.192834[br]Argument too small in __ellint_rj[br]-68.8751, 0.814724, 0.198[br]Argument too small in __ellint_rj[br]-68.8751, 0.835009, 0.198896[br]Argument too small in __ellint_rj[br]-68.8751, 0.905792, 0.203226[br]Argument too small in __ellint_rj[br]-68.8751, 0.913376, 0.203871[br]Argument too small in __ellint_rj[br]-68.8751, 0.968868, 0.211615[br]Argument too small in __ellint_rj[br]-36.1317, 0.126987, 0.258074[br]Argument too small in __ellint_rj[br]-36.1317, 0.135477, 0.258115[br]Argument too small in __ellint_rj[br]-36.1317, 0.221034, 0.258686[br]Argument too small in __ellint_rj[br]-36.1317, 0.308167, 0.259579[br]Argument too small in __ellint_rj[br]-36.1317, 0.632359, 0.266738[br]Argument too small in __ellint_rj[br]-36.1317, 0.814724, 0.276242[br]Argument too small in __ellint_rj[br]-36.1317, 0.835009, 0.2779[br]Argument too small in __ellint_rj[br]-36.1317, 0.905792, 0.285938[br]Argument too small in __ellint_rj[br]-36.1317, 0.913376, 0.287139[br]Argument too small in __ellint_rj[br]-36.1317, 0.968868, 0.301608[br]Argument too small in __ellint_rj[br]-17.7129, 0.126987, 0.363673[br]Argument too small in __ellint_rj[br]-17.7129, 0.135477, 0.36375[br]Argument too small in __ellint_rj[br]-17.7129, 0.221034, 0.364822[br]Argument too small in __ellint_rj[br]-17.7129, 0.308167, 0.366503[br]Argument too small in __ellint_rj[br]-17.7129, 0.632359, 0.380066[br]Argument too small in __ellint_rj[br]-17.7129, 0.814724, 0.398311[br]Argument too small in __ellint_rj[br]-17.7129, 0.835009, 0.401518[br]Argument too small in __ellint_rj[br]-17.7129, 0.905792, 0.417145[br]Argument too small in __ellint_rj[br]-17.7129, 0.913376, 0.41949[br]Argument too small in __ellint_rj[br]-17.7129, 0.968868, 0.447893[br]Argument too small in __ellint_rj[br]-15.6641, 0.126987, 0.385409[br]Argument too small in __ellint_rj[br]-15.6641, 0.135477, 0.385495[br]Argument too small in __ellint_rj[br]-15.6641, 0.221034, 0.386686[br]Argument too small in __ellint_rj[br]-15.6641, 0.308167, 0.388553[br]Argument too small in __ellint_rj[br]-15.6641, 0.632359, 0.403643[br]Argument too small in __ellint_rj[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3516. ]
  3517. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data[]
  3518. [h4 Error Output For ellint_3 (complete) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Complete Elliptic Integral PI: Mathworld Data]
  3519. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]
  3520. CAUTION: Gross error found at entry 3.[br]Found: 1.28255 Expected 2.22144 Error: 0.732051[br]0.5, 0, 2.22144[br]Argument too small in __ellint_rj[br]-4, 0.3, 0.712709[br]Argument too small in __ellint_rj[br]-100000, -0.5, 0.00496945[br]Argument too small in __ellint_rj[br]-1e+10, -0.75, 1.5708e-05[br]CAUTION: Gross error found at entry 8.[br]Found: 1.45615 Expected 101.045 Error: 68.3919[br]0.999023, -0.875, 101.045[br]Argument too small in __ellint_rj[br]-4.14952e+180, 0.5, 7.71119e-91[br]
  3521. ]
  3522. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data[]
  3523. [h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Large Random Data]
  3524. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]
  3525. Argument too small in __ellint_rj[br]-88.2952, -8.04919, 0.814724, -0.874724[br]Argument too small in __ellint_rj[br]-88.2952, -7.46026, 0.135477, -0.827189[br]Argument too small in __ellint_rj[br]-88.2952, -7.29046, 0.905792, -0.877476[br]Argument too small in __ellint_rj[br]-88.2952, -6.23236, 0.835009, -0.652152[br]Argument too small in __ellint_rj[br]-88.2952, -5.57932, 0.126987, -0.512276[br]Argument too small in __ellint_rj[br]-88.2952, -4.43004, 0.968868, -0.543324[br]Argument too small in __ellint_rj[br]-88.2952, -3.83666, 0.913376, -0.513389[br]Argument too small in __ellint_rj[br]-88.2952, 0.93763, 0.221034, 0.158243[br]Argument too small in __ellint_rj[br]-88.2952, 0.944412, 0.632359, 0.160101[br]Argument too small in __ellint_rj[br]-88.2952, 2.64719, 0.308167, 0.188127[br]Argument too small in __ellint_rj[br]-88.2952, 6.29447, 0.0975404, 0.676465[br]Argument too small in __ellint_rj[br]-88.2952, 6.70017, 0.547221, 0.817785[br]Argument too small in __ellint_rj[br]-88.2952, 8.11584, 0.278498, 0.837452[br]Argument too small in __ellint_rj[br]-88.2952, 8.26752, 0.188382, 0.837571[br]Argument too small in __ellint_rj[br]-88.2952, 9.15014, 0.546881, 0.885365[br]Argument too small in __ellint_rj[br]-88.2952, 9.29777, 0.992881, 1.06701[br]Argument too small in __ellint_rj[br]-88.2952, 9.3539, 0.957507, 1.03573[br]Argument too small in __ellint_rj[br]-88.2952, 9.37736, 0.996461, 1.13933[br]Argument too small in __ellint_rj[br]-88.2952, 9.85763, 0.964889, 1.24906[br]Argument too small in __ellint_rj[br]-88.2952, 9.92923, 0.967695, 1.25621[br]Argument too small in __ellint_rj[br]-86.8166, -8.04919, 0.157613, -0.841405[br]Argument too small in __ellint_rj[br]-86.8166, -7.46026, 0.725839, -0.859877[br]Argument too small in __ellint_rj[br]-86.8166, -7.29046, 0.970593, -0.914439[br]Argument too small in __ellint_rj[br]-86.8166, -6.23236, 0.98111, -0.710627[br]Argument too small in __ellint_rj[br]-86.8166, -5.57932, 0.957167, -0.58106[br]Argument too small in __ellint_rj[br]-86.8166, -4.43004, 0.109862, -0.499839[br]Argument too small in __ellint_rj[br]-86.8166, -3.83666, 0.485376, -0.494286[br]Argument too small in __ellint_rj[br]-86.8166, 0.93763, 0.798106, 0.162644[br]Argument too small in __ellint_rj[br]-86.8166, 0.944412, 0.80028, 0.16282[br]Argument too small in __ellint_rj[br]-86.8166, 2.64719, 0.297029, 0.18978[br]Argument too small in __ellint_rj[br]-86.8166, 6.29447, 0.141886, 0.682392[br]Argument too small in __ellint_rj[br]-86.8166, 6.70017, 0.00478348, 0.812885[br]Argument too small in __ellint_rj[br]-86.8166, 8.11584, 0.421761, 0.849249[br]Argument too small in __ellint_rj[br]-86.8166, 8.26752, 0.112465, 0.843648[br]Argument too small in __ellint_rj[br]-86.8166, 9.15014, 0.915736, 0.953733[br]Argument too small in __ellint_rj[br]-86.8166, 9.29777, 0.639763, 0.936743[br]Argument too small in __ellint_rj[br]-86.8166, 9.3539, 0.792207, 0.987359[br]Argument too small in __ellint_rj[br]-86.8166, 9.37736, 0.878431, 1.02525[br]Argument too small in __ellint_rj[br]-86.8166, 9.85763, 0.959492, 1.25508[br]Argument too small in __ellint_rj[br]-86.8166, 9.92923, 0.503663, 1.16735[br]Argument too small in __ellint_rj[br]-84.7616, -8.04919, 0.655741, -0.873305[br]Argument too small in __ellint_rj[br]-84.7616, -7.46026, 0.797929, -0.879044[br]Argument too small in __ellint_rj[br]-84.7616, -7.29046, 0.0357117, -0.840785[br]Argument too small in __ellint_rj[br]-84.7616, -6.23236, 0.361294, -0.635502[br]Argument too small in __ellint_rj[br]-84.7616, -5.57932, 0.849129, -0.558231[br]Argument too small in __ellint_rj[br]-84.7616, -4.43004, 0.211924, -0.506533[br]Argument too small in __ellint_rj[br]-84.7616, -3.83666, 0.933993, -0.527681[br]Argument too small in __ellint_rj[br]-84.7616, 0.93763, 0.68136, 0.163458[br]Argument too small in __ellint_rj[br]-84.7616, 0.944412, 0.678735, 0.163582[br]Argument too small in __ellint_rj[br]-84.7616, 2.64719, 0.398739, 0.193458[br]Argument too small in __ellint_rj[br]-84.7616, 6.29447, 0.75774, 0.716086[br]Argument too small in __ellint_rj[br]-84.7616, 6.70017, 0.740647, 0.847849[br]Argument too small in __ellint_rj[br]-84.7616, 8.11584, 0.743132, 0.883827[br]Argument too small in __ellint_rj[br]-84.7616, 8.26752, 0.474759, 0.864181[br]Argument too small in __ellint_rj[br]-84.7616, 9.15014, 0.392227, 0.895646[br]Argument too small in __ellint_rj[br]-84.7616, 9.29777, 0.422088, 0.933423[br]Argument too small in __ellint_rj[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3526. ]
  3527. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data[]
  3528. [h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Random Data]
  3529. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]
  3530. CAUTION: Gross error found at entry 150.[br]Found: 1.09748 Expected 1.76311 Error: 0.606506[br]0.546881, 1.27977, 0.349984, 1.76311[br]CAUTION: Gross error found at entry 151.[br]Found: 1.39529 Expected 2.4686 Error: 0.769232[br]0.546881, 1.31163, 0.907365, 2.4686[br]CAUTION: Gross error found at entry 152.[br]Found: 1.17627 Expected 2.03097 Error: 0.726615[br]0.546881, 1.42281, 0.196595, 2.03097[br]CAUTION: Gross error found at entry 153.[br]Found: 1.47192 Expected 2.76894 Error: 0.881179[br]0.546881, 1.43473, 0.848468, 2.76894[br]CAUTION: Gross error found at entry 154.[br]Found: 1.23674 Expected 2.22733 Error: 0.800966[br]0.546881, 1.50405, 0.251084, 2.22733[br]CAUTION: Gross error found at entry 155.[br]Found: 1.87704 Expected 3.98415 Error: 1.12257[br]0.546881, 1.51564, 0.955018, 3.98415[br]CAUTION: Gross error found at entry 156.[br]Found: 1.35817 Expected 2.53989 Error: 0.870091[br]0.546881, 1.52005, 0.616045, 2.53989[br]CAUTION: Gross error found at entry 157.[br]Found: 1.48427 Expected 2.87082 Error: 0.934166[br]0.546881, 1.52189, 0.778898, 2.87082[br]CAUTION: Gross error found at entry 158.[br]Found: 1.32687 Expected 2.48679 Error: 0.874176[br]0.546881, 1.55961, 0.473289, 2.48679[br]CAUTION: Gross error found at entry 159.[br]Found: 2.37485 Expected 5.58805 Error: 1.35301[br]0.546881, 1.56524, 0.98746, 5.58805[br]CAUTION: Gross error found at entry 170.[br]Found: 1.08889 Expected 1.74565 Error: 0.603142[br]0.547221, 1.27977, 0.285839, 1.74565[br]CAUTION: Gross error found at entry 171.[br]Found: 1.21346 Expected 2.03956 Error: 0.680778[br]0.547221, 1.31163, 0.67982, 2.03956[br]CAUTION: Gross error found at entry 172.[br]Found: 1.36407 Expected 2.48392 Error: 0.820965[br]0.547221, 1.42281, 0.7572, 2.48392[br]CAUTION: Gross error found at entry 173.[br]Found: 1.21442 Expected 2.12881 Error: 0.752947[br]0.547221, 1.43473, 0.39232, 2.12881[br]CAUTION: Gross error found at entry 174.[br]Found: 1.4409 Expected 2.74399 Error: 0.904352[br]0.547221, 1.50405, 0.753729, 2.74399[br]CAUTION: Gross error found at entry 175.[br]Found: 1.32796 Expected 2.46156 Error: 0.853642[br]0.547221, 1.51564, 0.561557, 2.46156[br]CAUTION: Gross error found at entry 176.[br]Found: 1.27163 Expected 2.32413 Error: 0.82767[br]0.547221, 1.52005, 0.380446, 2.32413[br]CAUTION: Gross error found at entry 177.[br]Found: 1.24298 Expected 2.25511 Error: 0.814274[br]0.547221, 1.52189, 0.208068, 2.25511[br]CAUTION: Gross error found at entry 178.[br]Found: 1.36528 Expected 2.58635 Error: 0.894379[br]0.547221, 1.55961, 0.567822, 2.58635[br]CAUTION: Gross error found at entry 179.[br]Found: 1.35151 Expected 2.55463 Error: 0.890206[br]0.547221, 1.56524, 0.527371, 2.55463[br]CAUTION: Gross error found at entry 189.[br]Found: 1.01047 Expected 1.52344 Error: 0.507658[br]0.632359, 0.993308, 0.964966, 1.52344[br]CAUTION: Gross error found at entry 190.[br]Found: 1.05231 Expected 1.84135 Error: 0.749817[br]0.632359, 1.27977, 0.129906, 1.84135[br]CAUTION: Gross error found at entry 191.[br]Found: 1.07393 Expected 1.92224 Error: 0.789918[br]0.632359, 1.31163, 0.154438, 1.92224[br]CAUTION: Gross error found at entry 192.[br]Found: 1.22616 Expected 2.43657 Error: 0.987156[br]0.632359, 1.42281, 0.568824, 2.43657[br]CAUTION: Gross error found at entry 193.[br]Found: 1.18462 Expected 2.33142 Error: 0.968083[br]0.632359, 1.43473, 0.394908, 2.33142[br]CAUTION: Gross error found at entry 194.[br]Found: 1.25094 Expected 2.59169 Error: 1.0718[br]0.632359, 1.50405, 0.469391, 2.59169[br]CAUTION: Gross error found at entry 195.[br]Found: 1.23693 Expected 2.56158 Error: 1.07091[br]0.632359, 1.51564, 0.387296, 2.56158[br]CAUTION: Gross error found at entry 196.[br]Found: 1.19839 Expected 2.45293 Error: 1.04685[br]0.632359, 1.52005, 0.0119021, 2.45293[br]CAUTION: Gross error found at entry 197.[br]Found: 1.39415 Expected 3.05228 Error: 1.18935[br]0.632359, 1.52189, 0.726955, 3.05228[br]CAUTION: Gross error found at entry 198.[br]Found: 1.25489 Expected 2.6569 Error: 1.11723[br]0.632359, 1.55961, 0.337123, 2.6569[br]CAUTION: Gross error found at entry 199.[br]Found: 1.27021 Expected 2.70857 Error: 1.13237[br]0.632359, 1.56524, 0.38857, 2.70857[br]CAUTION: Gross error found at entry 209.[br]Found: 0.83304 Expected 1.35947 Error: 0.631944[br]0.814724, 0.993308, 0.119547, 1.35947[br]CAUTION: Gross error found at entry 210.[br]Found: 1.07764 Expected 2.50291 Error: 1.32258[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3531. ]
  3532. [template errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data[]
  3533. [h4 Error Output For ellint_3 with compiler GNU C++ version 7.1.0 and library <cmath> and test data Elliptic Integral PI: Mathworld Data]
  3534. [#errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]
  3535. CAUTION: Gross error found at entry 0.[br]Found: -0.809353 Expected -1.55741 Error: 0.924263[br]1, -1, 0, -1.55741[br]CAUTION: Gross error found at entry 11.[br]Found: 1.07555 Expected 13.2822 Error: 11.3492[br]0.999023, 1.5, 0, 13.2822[br]CAUTION: Gross error found at entry 13.[br]Found: -5.86896e+09 Expected 1.53659e+10 Error: 1.18973e+4932[br]0.5, 1e+10, 0.5, 1.53659e+10[br]Argument too small in __ellint_rj[br]-100000, 10, 0.75, 0.0347926[br]Argument too small in __ellint_rj[br]-1e+10, 10, 0.875, 0.000109956[br]Argument too small in __ellint_rj[br]-1e+10, 1e+20, 0.875, 1.00001e+15[br]Argument too small in __ellint_rj[br]-1e+10, 1.57031, 0.875, 1.57081e-05[br]CAUTION: Gross error found at entry 18.[br]Found: -6.25413e+09 Expected 6.43274e+21 Error: 1.18973e+4932[br]0.999023, 1e+20, 0.875, 6.43274e+21[br]CAUTION: Gross error found at entry 19.[br]Found: 0.102424 Expected 0.196321 Error: 0.916748[br]50, 0.125, 0.25, 0.196321[br]CAUTION: Gross error found at entry 20.[br]Found: 0.798807 Expected 1.773 Error: 1.21956[br]1.125, 1, 0.25, 1.773[br]CAUTION: Gross error found at entry 21.[br]Found: 7.07138 Expected 0.662468 Error: 9.6743[br]1.125, 10, 0.25, 0.662468[br]CAUTION: Gross error found at entry 22.[br]Found: 2.04288 Expected -0.142697 Error: 1.18973e+4932[br]1.125, 3, 0.25, -0.142697[br]CAUTION: Gross error found at entry 23.[br]Found: 1.07762 Expected 22.2699 Error: 19.6659[br]1.00391, 1.5, 0.125, 22.2699[br]CAUTION: Gross error found at entry 24.[br]Found: 15.1275 Expected -0.535406 Error: 1.18973e+4932[br]1.00391, 21.5, 0.125, -0.535406[br]CAUTION: Gross error found at entry 41.[br]Found: 1.57454 Expected 3.0338 Error: 0.926787[br]0.5, 2, 0, 3.0338[br]CAUTION: Gross error found at entry 42.[br]Found: 3.0338 Expected 1.57454 Error: 0.926787[br]-0.5, 2, 0, 1.57454[br]CAUTION: Gross error found at entry 43.[br]Found: -1.57454 Expected -3.0338 Error: 0.926787[br]0.5, -2, 0, -3.0338[br]CAUTION: Gross error found at entry 44.[br]Found: -3.0338 Expected -1.57454 Error: 0.926787[br]-0.5, -2, 0, -1.57454[br]CAUTION: Found non-finite result, when a finite value was expected at entry 51[br]Found: inf Expected -2.87535 Error: 1.18973e+4932[br]1, 2, 0.5, -2.87535[br]CAUTION: Gross error found at entry 51.[br]Found: inf Expected -2.87535 Error: 1.18973e+4932[br]1, 2, 0.5, -2.87535[br]CAUTION: Found non-finite result, when a finite value was expected at entry 52[br]Found: -inf Expected 2.87535 Error: 1.18973e+4932[br]1, -2, 0.5, 2.87535[br]CAUTION: Gross error found at entry 52.[br]Found: -inf Expected 2.87535 Error: 1.18973e+4932[br]1, -2, 0.5, 2.87535[br]CAUTION: Found non-finite result, when a finite value was expected at entry 53[br]Found: inf Expected -2.18504 Error: 1.18973e+4932[br]1, 2, 6.22302e-61, -2.18504[br]CAUTION: Gross error found at entry 53.[br]Found: inf Expected -2.18504 Error: 1.18973e+4932[br]1, 2, 6.22302e-61, -2.18504[br]CAUTION: Found non-finite result, when a finite value was expected at entry 54[br]Found: -inf Expected 2.18504 Error: 1.18973e+4932[br]1, -2, 6.22302e-61, 2.18504[br]CAUTION: Gross error found at entry 54.[br]Found: -inf Expected 2.18504 Error: 1.18973e+4932[br]1, -2, 6.22302e-61, 2.18504[br]CAUTION: Gross error found at entry 57.[br]Found: 0.703907 Expected 0.000975941 Error: 720.259[br]20, 3.14257, 0.5, 0.000975941[br]CAUTION: Gross error found at entry 58.[br]Found: -0.703907 Expected -0.000975941 Error: 720.259[br]20, -3.14257, 0.5, -0.000975941[br]CAUTION: Gross error found at entry 59.[br]Found: 1.24445 Expected -27.1647 Error: 1.18973e+4932[br]1.01562, 1.6958, 0.5, -27.1647[br]CAUTION: Gross error found at entry 60.[br]Found: -1.24445 Expected 27.1647 Error: 1.18973e+4932[br]1.01562, -1.6958, 0.5, 27.1647[br]
  3536. ]
  3537. [template errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei[]
  3538. [h4 Error Output For expint (Ei) with compiler GNU C++ version 7.1.0 and library <cmath> and test data Exponential Integral Ei]
  3539. [#errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]
  3540. Continued fraction failed in __expint_En_cont_frac.[br]-1.30539, -0.134326[br]
  3541. ]
  3542. [template errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values[]
  3543. [h4 Error Output For ibeta with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Incomplete Beta Function: Large and Diverse Values]
  3544. [#errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values]
  3545. underflow[br]1.04761e-05, 39078.2, 0.913384, 95444.4, 0, 1, 0[br]underflow[br]1.2158e-05, 24110.5, 0.135563, 82239.7, 0, 1, 0[br]underflow[br]1.30342e-05, 26168.3, 0.127074, 76710.7, 0, 1, 0[br]underflow[br]1.51962e-05, 16177.5, 0.814742, 65795.4, 0, 1, 0[br]underflow[br]1.64873e-05, 470997, 0.127074, 60639.1, 0, 1, 0[br]underflow[br]1.66259e-05, 147819, 0.632396, 60134.5, 0, 1, 0[br]underflow[br]1.78638e-05, 439.387, 0.835025, 55972.4, 0, 1, 0[br]underflow[br]2.00434e-05, 482.007, 0.905801, 49885.1, 0, 1, 0[br]underflow[br]2.05189e-05, 236088, 0.835025, 48722.7, 0, 1, 0[br]underflow[br]2.14336e-05, 3719.28, 0.814742, 46647, 0, 1, 0[br]underflow[br]2.24486e-05, 445071, 0.221112, 44532.6, 0, 1, 0[br]underflow[br]2.34849e-05, 25542.8, 0.968871, 42569.8, 0, 1, 0[br]underflow[br]2.39993e-05, 462.946, 0.814742, 41661.1, 0, 1, 0[br]underflow[br]2.52178e-05, 1832.27, 0.913384, 39646.4, 0, 1, 0[br]underflow[br]2.87756e-05, 25491.8, 0.905801, 34740.9, 0, 1, 0[br]underflow[br]2.89316e-05, 494.984, 0.968871, 34557.6, 0, 1, 0[br]underflow[br]3.11413e-05, 348144, 0.308236, 32098.3, 0, 1, 0[br]underflow[br]3.12319e-05, 33713, 0.221112, 32007.5, 0, 1, 0[br]underflow[br]3.19889e-05, 3931.19, 0.308236, 31251.9, 0, 1, 0[br]underflow[br]3.27129e-05, 3109.49, 0.968871, 30560.4, 0, 1, 0[br]underflow[br]3.27529e-05, 25796.3, 0.835025, 30520.9, 0, 1, 0[br]underflow[br]3.34106e-05, 3378.01, 0.221112, 29922, 0, 1, 0[br]underflow[br]3.40793e-05, 288783, 0.814742, 29330.2, 0, 1, 0[br]underflow[br]3.46418e-05, 411.559, 0.913384, 28860.3, 0, 1, 0[br]underflow[br]3.61632e-05, 311937, 0.905801, 27639.2, 0, 1, 0[br]underflow[br]3.75686e-05, 386440, 0.913384, 26604.5, 0, 1, 0[br]underflow[br]3.99261e-05, 495352, 0.968871, 25032.6, 0, 1, 0[br]underflow[br]4.01492e-05, 3246.23, 0.905801, 24898.5, 0, 1, 0[br]underflow[br]4.0288e-05, 2569.28, 0.835025, 24812.9, 0, 1, 0[br]underflow[br]4.11667e-05, 24253.8, 0.308236, 24280.8, 0, 1, 0[br]underflow[br]4.17714e-05, 274447, 0.135563, 23926.7, 0, 1, 0[br]underflow[br]4.66877e-05, 3780.93, 0.632396, 21410.1, 0, 1, 0[br]underflow[br]4.73604e-05, 48598.7, 0.632396, 21103.3, 0, 1, 0[br]underflow[br]0.00013245, 251.768, 0.968871, 7543.9, 0, 1, 0[br]underflow[br]0.000168283, 195801, 0.905801, 5929.61, 0, 1, 0[br]underflow[br]0.000177906, 276489, 0.814742, 5607.86, 0, 1, 0[br]underflow[br]0.000183097, 316055, 0.127074, 5448.36, 0, 1, 0[br]underflow[br]0.000190369, 159132, 0.835025, 5240.42, 0, 1, 0[br]underflow[br]0.000191066, 419861, 0.913384, 5220.29, 0, 1, 0[br]underflow[br]0.000192195, 177798, 0.308236, 5190.39, 0, 1, 0[br]underflow[br]0.000220499, 107380, 0.135563, 4523.03, 0, 1, 0[br]underflow[br]0.00022254, 1432.25, 0.814742, 4485.74, 0, 1, 0[br]underflow[br]0.000240291, 49604.4, 0.632396, 4150.25, 0, 1, 0[br]underflow[br]0.000251444, 15605.8, 0.135563, 3966.81, 0, 1, 0[br]underflow[br]0.000274279, 289206, 0.968871, 3632.79, 0, 1, 0[br]underflow[br]0.000274343, 2954.47, 0.308236, 3636.51, 0, 1, 0[br]underflow[br]0.000278714, 4023.16, 0.632396, 3579.05, 0, 1, 0[br]underflow[br]0.000288369, 460073, 0.221112, 3454.19, 0, 1, 0[br]underflow[br]0.000294717, 4642.26, 0.221112, 3384.08, 0, 1, 0[br]underflow[br]0.000303403, 2574.36, 0.835025, 3287.52, 0, 1, 0[br]underflow[br]0.000304309, 4480.75, 0.905801, 3277.17, 0, 1, 0[br]underflow[br]0.00031313, 47957, 0.308236, 3182.22, 0, 1, 0[br]underflow[br]0.000320063, 25544.6, 0.905801, 3113.68, 0, 1, 0[br]underflow[br]0.000334818, 29065.5, 0.968871, 2975.86, 0, 1, 0[br]underflow[br]0.00034899, 41187.6, 0.913384, 2854.23, 0, 1, 0[br]underflow[br]0.000350247, 426.308, 0.905801, 2848.5, 0, 1, 0[br]underflow[br]0.000357727, 31752.2, 0.127074, 2784.5, 0, 1, 0[br]underflow[br]0.000412091, 367.714, 0.913384, 2420.17, 0, 1, 0[br]underflow[br]0.000417933, 4668.47, 0.968871, 2383.72, 0, 1, 0[br]underflow[br]0.000424632, 17994.9, 0.221112, 2344.63, 0, 1, 0[br]underflow[br]0.000427051, 2443.44, 0.913384, 2333.28, 0, 1, 0[br]underflow[br]0.000437724, 454399, 0.632396, 2270.98, 0, 1, 0[br]underflow[br]0.000450377, 10660.8, 0.835025, 2210.53, 0, 1, 0[br]underflow[br]0.000475601, 19603, 0.814742, 2092.17, 0, 1, 0[br]underflow[br]0.00116972, 4487.22, 0.221112, 845.964, 0, 1, 0[br]underflow[br]0.00124188, 211066, 0.632396, 792.493, 0, 1, 0[br]underflow[br]0.00128578, 4738.41, 0.308236, 768.75, 0, 1, 0[br]underflow[br]0.00133388, 46277.8, 0.913384, 738.46, 0, 1, 0[br]underflow[br]0.00138692, 2158.76, 0.814742, 712.816, 0, 1, 0[br]underflow[br]0.00153268, 13060.2, 0.968871, 642.474, 0, 1, 0[br]underflow[br]0.00159946, 1780.43, 0.968871, 617.202, 0, 1, 0[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3546. ]
  3547. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
  3548. [h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
  3549. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3550. |m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3551. ]
  3552. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
  3553. [h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
  3554. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3555. |m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3556. ]
  3557. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1[]
  3558. [h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Modulus near 1]
  3559. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3560. |m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357365, 0.0357231[br]|m| > 1.0[br]-4.0246, 1, -0.999361, 0.0357497, 0.0357097[br]|m| > 1.0[br]-4.0246, 1, -0.99936, 0.0357762, 0.0356829[br]|m| > 1.0[br]-4.0246, 1, -0.999359, 0.0357895, 0.0356695[br]|m| > 1.0[br]-4.0246, 1.00001, -0.999354, 0.0359354, 0.0355222[br]|m| > 1.0[br]-4.0246, 1.00003, -0.999347, 0.0361343, 0.0353212[br]|m| > 1.0[br]-4.0246, 1.00004, -0.999343, 0.036247, 0.0352073[br]|m| > 1.0[br]-4.0246, 1.0001, -0.999311, 0.0371157, 0.0343296[br]|m| > 1.0[br]-4.0246, 1.00016, -0.99928, 0.0379513, 0.0334851[br]|m| > 1.0[br]-4.0246, 1.00027, -0.999221, 0.0394571, 0.0319634[br]|m| > 1.0[br]-4.0246, 1.00076, -0.99893, 0.0462407, 0.0251046[br]|m| > 1.0[br]-4.0246, 1.00125, -0.998589, 0.0531109, 0.0181532[br]|m| > 1.0[br]-4.0246, 1.00232, -0.99768, 0.0680761, 0.0029944[br]|m| > 1.0[br]-4.0246, 1.00604, -0.992752, 0.120179, -0.049966[br]|m| > 1.0[br]-4.0246, 1.01557, -0.967356, 0.25342, -0.186698[br]|m| > 1.0[br]-4.0246, 1.03059, -0.890373, 0.455232, -0.397492[br]|m| > 1.0[br]-4.0246, 1.06239, -0.607191, 0.794556, -0.76412[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479567, 0.0479467[br]|m| > 1.0[br]-3.73013, 1, -0.998849, 0.0479665, 0.0479367[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.0479862, 0.0479167[br]|m| > 1.0[br]-3.73013, 1, -0.998848, 0.047996, 0.0479067[br]|m| > 1.0[br]-3.73013, 1.00001, -0.998842, 0.0481042, 0.0477966[br]|m| > 1.0[br]-3.73013, 1.00003, -0.998835, 0.0482517, 0.0476465[br]|m| > 1.0[br]-3.73013, 1.00004, -0.998831, 0.0483354, 0.0475615[br]|m| > 1.0[br]-3.73013, 1.0001, -0.9988, 0.0489797, 0.0469059[br]|m| > 1.0[br]-3.73013, 1.00016, -0.998769, 0.0495995, 0.0462752[br]|m| > 1.0[br]-3.73013, 1.00027, -0.998713, 0.0507164, 0.0451386[br]|m| > 1.0[br]-3.73013, 1.00076, -0.998445, 0.0557477, 0.0400164[br]|m| > 1.0[br]-3.73013, 1.00125, -0.998147, 0.0608429, 0.0348257[br]|m| > 1.0[br]-3.73013, 1.00232, -0.997409, 0.0719406, 0.0235071[br]|m| > 1.0[br]-3.73013, 1.00604, -0.993866, 0.110593, -0.016048[br]|m| > 1.0[br]-3.73013, 1.01557, -0.977708, 0.209971, -0.118704[br]|m| > 1.0[br]-3.73013, 1.03059, -0.931162, 0.364606, -0.281224[br]|m| > 1.0[br]-3.73013, 1.06239, -0.753495, 0.657453, -0.599326[br]|m| > 1.0[br]-3.64523, 1, -0.998637, 0.0521997, 0.0521906[br]|m| > 1.0[br]-3.64523, 1, -0.998636, 0.0522087, 0.0521814[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522268, 0.052163[br]|m| > 1.0[br]-3.64523, 1, -0.998635, 0.0522358, 0.0521538[br]|m| > 1.0[br]-3.64523, 1.00001, -0.99863, 0.052335, 0.0520526[br]|m| > 1.0[br]-3.64523, 1.00003, -0.998622, 0.0524703, 0.0519145[br]|m| > 1.0[br]-3.64523, 1.00004, -0.998618, 0.052547, 0.0518363[br]|m| > 1.0[br]-3.64523, 1.0001, -0.998587, 0.0531379, 0.0512335[br]|m| > 1.0[br]-3.64523, 1.00016, -0.998557, 0.0537063, 0.0506536[br]|m| > 1.0[br]-3.64523, 1.00027, -0.998501, 0.0547305, 0.0496084[br]|m| > 1.0[br]-3.64523, 1.00076, -0.998238, 0.0593443, 0.0448986[br]|m| > 1.0[br]-3.64523, 1.00125, -0.997949, 0.0640165, 0.0401258[br]|m| > 1.0[br]-3.64523, 1.00232, -0.997244, 0.0741927, 0.0297191[br]|m| > 1.0[br]-3.64523, 1.00604, -0.993972, 0.109636, -0.00664888[br]|m| > 1.0[br]-3.64523, 1.01557, -0.979623, 0.200844, -0.101111[br]|m| > 1.0[br]-3.64523, 1.03059, -0.939163, 0.343472, -0.251382[br]|m| > 1.0[br]-3.64523, 1.06239, -0.784719, 0.619852, -0.552253[br]|m| > 1.0[br]-3.11618, 1, -0.996078, 0.0884811, 0.0884757[br]|m| > 1.0[br]-3.11618, 1, -0.996077, 0.0884863, 0.0884702[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0884967, 0.0884593[br]|m| > 1.0[br]-3.11618, 1, -0.996076, 0.0885019, 0.0884538[br]|m| > 1.0[br]-3.11618, 1.00001, -0.996071, 0.0885593, 0.0883936[br]|m| > 1.0[br]-3.11618, 1.00003, -0.996064, 0.0886376, 0.0883114[br]|m| > 1.0[br]-3.11618, 1.00004, -0.99606, 0.0886819, 0.0882648[br]|m| > 1.0[br]-3.11618, 1.0001, -0.99603, 0.0890236, 0.0879059[br]|m| > 1.0[br]-3.11618, 1.00016, -0.996, 0.0893523, 0.0875607[br]|m| > 1.0[br]-3.11618, 1.00027, -0.995947, 0.0899445, 0.0869386[br]|m| > 1.0[br]-3.11618, 1.00076, -0.995702, 0.092612, 0.0841353[br]|m| > 1.0[br]-3.11618, 1.00125, -0.995447, 0.0953126, 0.0812953[br]|m| > 1.0[br]-3.11618, 1.00232, -0.994867, 0.101193, 0.0751049[br]|m| > 1.0[br]-3.11618, 1.00604, -0.992571, 0.121667, 0.0534858[br]|m| > 1.0[br]-3.11618, 1.01557, -0.984666, 0.174451, -0.00273723[br]|m| > 1.0[br]-3.11618, 1.03059, -0.966077, 0.258253, -0.0934336[br]|m| > 1.0[br]-3.11618, 1.06239, -0.901067, 0.433681, -0.289151[br]|m| > 1.0[br]-2.78966, 1, -0.992478, 0.122424, 0.12242[br]|m| > 1.0[br]-2.78966, 1, -0.992477, 0.122428, 0.122416[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3561. ]
  3562. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
  3563. [h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
  3564. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3565. |m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
  3566. ]
  3567. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
  3568. [h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
  3569. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3570. |m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
  3571. ]
  3572. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values[]
  3573. [h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Random Small Values]
  3574. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3575. |m| > 1.0[br]1.65048e-12, 1.65574, 1.65048e-12, 1, 1[br]|m| > 1.0[br]2.06542e-12, 1.65574, 2.06542e-12, 1, 1[br]|m| > 1.0[br]6.93323e-12, 1.65574, 6.93323e-12, 1, 1[br]|m| > 1.0[br]1.33514e-11, 1.65574, 1.33514e-11, 1, 1[br]|m| > 1.0[br]1.63998e-11, 1.65574, 1.63998e-11, 1, 1[br]|m| > 1.0[br]5.73016e-11, 1.65574, 5.73016e-11, 1, 1[br]|m| > 1.0[br]1.11373e-10, 1.65574, 1.11373e-10, 1, 1[br]|m| > 1.0[br]1.42147e-10, 1.65574, 1.42147e-10, 1, 1[br]|m| > 1.0[br]3.80063e-10, 1.65574, 3.80063e-10, 1, 1[br]|m| > 1.0[br]6.09163e-10, 1.65574, 6.09163e-10, 1, 1[br]|m| > 1.0[br]1.02216e-09, 1.65574, 1.02216e-09, 1, 1[br]|m| > 1.0[br]2.88192e-09, 1.65574, 2.88192e-09, 1, 1[br]|m| > 1.0[br]4.76278e-09, 1.65574, 4.76278e-09, 1, 1[br]|m| > 1.0[br]8.85413e-09, 1.65574, 8.85413e-09, 1, 1[br]|m| > 1.0[br]2.30503e-08, 1.65574, 2.30503e-08, 1, 1[br]|m| > 1.0[br]5.93925e-08, 1.65574, 5.93925e-08, 1, 1[br]|m| > 1.0[br]1.16676e-07, 1.65574, 1.16676e-07, 1, 1[br]|m| > 1.0[br]2.37997e-07, 1.65574, 2.37997e-07, 1, 1[br]|m| > 1.0[br]4.68466e-07, 1.65574, 4.68466e-07, 1, 1[br]|m| > 1.0[br]9.3827e-07, 1.65574, 9.3827e-07, 1, 1[br]|m| > 1.0[br]1.10399e-06, 1.65574, 1.10399e-06, 1, 1[br]|m| > 1.0[br]3.29178e-06, 1.65574, 3.29178e-06, 1, 1[br]|m| > 1.0[br]7.51721e-06, 1.65574, 7.51721e-06, 1, 1[br]|m| > 1.0[br]1.51147e-05, 1.65574, 1.51147e-05, 1, 1[br]|m| > 1.0[br]2.9864e-05, 1.65574, 2.9864e-05, 1, 1[br]|m| > 1.0[br]3.38703e-05, 1.65574, 3.38703e-05, 1, 1[br]|m| > 1.0[br]9.06601e-05, 1.65574, 9.06601e-05, 1, 1[br]|m| > 1.0[br]0.000219495, 1.65574, 0.000219495, 1, 1[br]|m| > 1.0[br]0.000439522, 1.65574, 0.000439521, 1, 1[br]|m| > 1.0[br]0.000633315, 1.65574, 0.000633315, 1, 0.999999[br]|m| > 1.0[br]0.00111512, 1.65574, 0.00111512, 0.999999, 0.999998[br]|m| > 1.0[br]0.00196247, 1.65574, 0.00196246, 0.999998, 0.999995[br]|m| > 1.0[br]0.00555375, 1.65574, 0.00555365, 0.999985, 0.999958[br]|m| > 1.0[br]0.00869113, 1.65574, 0.00869072, 0.999962, 0.999896[br]|m| > 1.0[br]0.0299334, 1.65574, 0.0299166, 0.999552, 0.998772[br]|m| > 1.0[br]0.0512426, 1.65574, 0.0511588, 0.998691, 0.996406[br]|m| > 1.0[br]0.112013, 1.65574, 0.111143, 0.993804, 0.982922[br]|m| > 1.0[br]0.234804, 1.65574, 0.227, 0.973895, 0.926679[br]|m| > 1.0[br]0.489873, 1.65574, 0.425971, 0.904737, 0.708912[br]|m| > 1.0[br]0.751831, 1.65574, 0.553446, 0.832885, 0.400346[br]|m| > 1.0[br]1.65574, 1.65574, 0.408154, 0.912913, -0.737088[br]
  3576. ]
  3577. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
  3578. [h4 Error Output For jacobi_dn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
  3579. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3580. |m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
  3581. ]
  3582. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
  3583. [h4 Error Output For jacobi_cn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
  3584. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3585. |m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
  3586. ]
  3587. [template errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data[]
  3588. [h4 Error Output For jacobi_sn with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Jacobi Elliptic: Mathworld Data]
  3589. [#errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3590. |m| > 1.0[br]2.98023e-08, 1.5, 2.98023e-08, 1, 1[br]|m| > 1.0[br]-2.98023e-08, 1.5, -2.98023e-08, 1, 1[br]|m| > 1.0[br]0.25, 1.5, 0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]-0.25, 1.5, -0.24183, 0.970319, 0.931888[br]|m| > 1.0[br]1.25, 1.5, 0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]-1.25, 1.5, -0.665876, 0.746063, -0.0486921[br]|m| > 1.0[br]25, 1.5, 0.618665, 0.785655, 0.372585[br]|m| > 1.0[br]-25, 1.5, -0.618665, 0.785655, 0.372585[br]
  3591. ]
  3592. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases[]
  3593. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - Large orders and other bug cases]
  3594. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases]
  3595. underflow[br]168, 150, -6.52661e-66[br]underflow[br]169, 202, 9.2734e-88[br]domain error[br]20, -9.5, -0.00103076[br]domain error[br]21, -9.5, 4.28582e+26[br]domain error[br]22, -9.5, -0.00419144[br]domain error[br]23, -9.5, 8.6745e+29[br]domain error[br]24, -9.5, -0.0204825[br]domain error[br]25, -9.5, 2.08188e+33[br]domain error[br]26, -9.5, -0.118403[br]domain error[br]27, -9.5, 5.84592e+36[br]domain error[br]28, -9.5, -0.798969[br]domain error[br]29, -9.5, 1.89875e+40[br]domain error[br]30, -9.5, -6.22245[br]underflow[br]10, 1.32923e+36, -0[br]underflow[br]15, 1.32923e+36, 0[br]
  3596. ]
  3597. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments[]
  3598. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - large negative arguments]
  3599. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments]
  3600. domain error[br]124, -1.5, 7.63705e+240[br]domain error[br]124, -2.5, 7.63705e+240[br]domain error[br]124, -3.5, 7.63705e+240[br]domain error[br]124, -4.5, 7.63705e+240[br]domain error[br]124, -5.5, 7.63705e+240[br]domain error[br]124, -6.5, 7.63705e+240[br]domain error[br]124, -7.5, 7.63705e+240[br]domain error[br]124, -8.5, 7.63705e+240[br]domain error[br]124, -9.5, 7.63705e+240[br]domain error[br]124, -10.5, 7.63705e+240[br]domain error[br]124, -11.5, 7.63705e+240[br]domain error[br]124, -12.5, 7.63705e+240[br]domain error[br]124, -13.5, 7.63705e+240[br]domain error[br]124, -14.5, 7.63705e+240[br]domain error[br]124, -15.5, 7.63705e+240[br]domain error[br]124, -16.5, 7.63705e+240[br]domain error[br]124, -17.5, 7.63705e+240[br]domain error[br]124, -18.5, 7.63705e+240[br]domain error[br]124, -19.5, 7.63705e+240[br]domain error[br]124, -20.5, 7.63705e+240[br]domain error[br]124, -1.5, -7.63705e+240[br]domain error[br]124, -2.5, -7.63705e+240[br]domain error[br]124, -3.5, -7.63705e+240[br]domain error[br]124, -4.5, -7.63705e+240[br]domain error[br]124, -5.5, -7.63705e+240[br]domain error[br]124, -6.5, -7.63705e+240[br]domain error[br]124, -7.5, -7.63705e+240[br]domain error[br]124, -8.5, -7.63705e+240[br]domain error[br]124, -9.5, -7.63705e+240[br]domain error[br]124, -10.5, -7.63705e+240[br]domain error[br]124, -11.5, -7.63705e+240[br]domain error[br]124, -12.5, -7.63705e+240[br]domain error[br]124, -13.5, -7.63705e+240[br]domain error[br]124, -14.5, -7.63705e+240[br]domain error[br]124, -15.5, -7.63705e+240[br]domain error[br]124, -16.5, -7.63705e+240[br]domain error[br]124, -17.5, -7.63705e+240[br]domain error[br]124, -18.5, -7.63705e+240[br]domain error[br]124, -19.5, -7.63705e+240[br]domain error[br]124, -20.5, -7.63705e+240[br]domain error[br]2, -0.5, -0.828797[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47425[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -43.4579[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -1059.96[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, -42108.9[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, -2.46448e+06[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, -1.9918e+08[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, -2.12394e+10[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, -2.88824e+12[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, -4.87773e+14[br]domain error[br]21, -0.5, 4.28582e+26[br]domain error[br]2, -0.5, -0.828843[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47791[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -44.0732[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -1237.15[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, -120071[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, -5.11131e+07[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, -4.1064e+10[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, -4.44822e+13[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, -6.08254e+16[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, -1.02182e+20[br]domain error[br]21, -0.5, 4.28582e+26[br]domain error[br]2, -0.5, -0.828751[br]domain error[br]3, -0.5, 193.409[br]domain error[br]4, -0.5, -3.47059[br]domain error[br]5, -0.5, 15371.1[br]domain error[br]6, -0.5, -42.8426[br]domain error[br]7, -0.5, 2.58068e+06[br]domain error[br]8, -0.5, -882.773[br]domain error[br]9, -0.5, 7.43185e+08[br]domain error[br]10, -0.5, 35853.7[br]domain error[br]11, -0.5, 3.26999e+11[br]domain error[br]12, -0.5, 4.61841e+07[br]domain error[br]13, -0.5, 2.04047e+14[br]domain error[br]14, -0.5, 4.06656e+10[br]domain error[br]15, -0.5, 1.71399e+17[br]domain error[br]16, -0.5, 4.44397e+13[br]domain error[br]17, -0.5, 1.86483e+20[br]domain error[br]18, -0.5, 6.08197e+16[br]domain error[br]19, -0.5, 2.55108e+23[br]domain error[br]20, -0.5, 1.02181e+20[br]domain error[br]21, -0.5, 4.28582e+26[br]
  3601. ]
  3602. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments[]
  3603. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - negative arguments]
  3604. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments]
  3605. domain error[br]2, -12.75, -124.031[br]domain error[br]2, -12.25, 124.019[br]domain error[br]2, -11.75, -124.032[br]domain error[br]2, -11.25, 124.018[br]domain error[br]2, -10.75, -124.033[br]domain error[br]2, -10.25, 124.016[br]domain error[br]2, -9.75, -124.035[br]domain error[br]2, -9.25, 124.015[br]domain error[br]2, -8.75, -124.037[br]domain error[br]2, -8.25, 124.012[br]domain error[br]2, -7.75, -124.04[br]domain error[br]2, -7.25, 124.009[br]domain error[br]2, -6.75, -124.044[br]domain error[br]2, -6.25, 124.003[br]domain error[br]2, -5.75, -124.051[br]domain error[br]2, -5.25, 123.995[br]domain error[br]2, -4.75, -124.061[br]domain error[br]2, -4.25, 123.981[br]domain error[br]2, -3.75, -124.08[br]domain error[br]2, -3.25, 123.955[br]domain error[br]2, -2.75, -124.118[br]domain error[br]2, -2.25, 123.897[br]domain error[br]2, -1.75, -124.214[br]domain error[br]2, -1.25, 123.721[br]domain error[br]2, -0.75, -124.587[br]domain error[br]2, -0.25, 122.697[br]domain error[br]3, -12.75, 1558.54[br]domain error[br]3, -12.25, 1558.54[br]domain error[br]3, -11.75, 1558.54[br]domain error[br]3, -11.25, 1558.54[br]domain error[br]3, -10.75, 1558.54[br]domain error[br]3, -10.25, 1558.54[br]domain error[br]3, -9.75, 1558.54[br]domain error[br]3, -9.25, 1558.54[br]domain error[br]3, -8.75, 1558.54[br]domain error[br]3, -8.25, 1558.54[br]domain error[br]3, -7.75, 1558.54[br]domain error[br]3, -7.25, 1558.54[br]domain error[br]3, -6.75, 1558.54[br]domain error[br]3, -6.25, 1558.54[br]domain error[br]3, -5.75, 1558.54[br]domain error[br]3, -5.25, 1558.54[br]domain error[br]3, -4.75, 1558.53[br]domain error[br]3, -4.25, 1558.53[br]domain error[br]3, -3.75, 1558.52[br]domain error[br]3, -3.25, 1558.51[br]domain error[br]3, -2.75, 1558.49[br]domain error[br]3, -2.25, 1558.46[br]domain error[br]3, -1.75, 1558.38[br]domain error[br]3, -1.25, 1558.22[br]domain error[br]3, -0.75, 1557.75[br]domain error[br]3, -0.25, 1555.76[br]domain error[br]4, -12.75, -24481.6[br]domain error[br]4, -12.25, 24481.6[br]domain error[br]4, -11.75, -24481.6[br]domain error[br]4, -11.25, 24481.6[br]domain error[br]4, -10.75, -24481.6[br]domain error[br]4, -10.25, 24481.6[br]domain error[br]4, -9.75, -24481.6[br]domain error[br]4, -9.25, 24481.6[br]domain error[br]4, -8.75, -24481.6[br]domain error[br]4, -8.25, 24481.6[br]domain error[br]4, -7.75, -24481.6[br]domain error[br]4, -7.25, 24481.6[br]domain error[br]4, -6.75, -24481.6[br]domain error[br]4, -6.25, 24481.6[br]domain error[br]4, -5.75, -24481.6[br]domain error[br]4, -5.25, 24481.6[br]domain error[br]4, -4.75, -24481.6[br]domain error[br]4, -4.25, 24481.6[br]domain error[br]4, -3.75, -24481.6[br]domain error[br]4, -3.25, 24481.5[br]domain error[br]4, -2.75, -24481.6[br]domain error[br]4, -2.25, 24481.5[br]domain error[br]4, -1.75, -24481.8[br]domain error[br]4, -1.25, 24481.1[br]domain error[br]4, -0.75, -24483.2[br]domain error[br]4, -0.25, 24473.2[br]domain error[br]5, -12.75, 492231[br]domain error[br]5, -12.25, 492231[br]domain error[br]5, -11.75, 492231[br]domain error[br]5, -11.25, 492231[br]domain error[br]5, -10.75, 492231[br]domain error[br]5, -10.25, 492231[br]domain error[br]5, -9.75, 492231[br]domain error[br]5, -9.25, 492231[br]domain error[br]5, -8.75, 492231[br]domain error[br]5, -8.25, 492231[br]domain error[br]5, -7.75, 492231[br]domain error[br]5, -7.25, 492231[br]domain error[br]5, -6.75, 492231[br]domain error[br]5, -6.25, 492231[br]domain error[br]5, -5.75, 492231[br]domain error[br]5, -5.25, 492231[br]domain error[br]5, -4.75, 492231[br]domain error[br]5, -4.25, 492231[br]domain error[br]5, -3.75, 492231[br]domain error[br]5, -3.25, 492231[br]domain error[br]5, -2.75, 492231[br]domain error[br]5, -2.25, 492231[br]domain error[br]5, -1.75, 492231[br]domain error[br]5, -1.25, 492230[br]domain error[br]5, -0.75, 492227[br]domain error[br]5, -0.25, 492199[br]domain error[br]6, -12.75, -1.17912e+07[br]domain error[br]6, -12.25, 1.17912e+07[br]domain error[br]6, -11.75, -1.17912e+07[br]domain error[br]6, -11.25, 1.17912e+07[br]domain error[br]6, -10.75, -1.17912e+07[br]domain error[br]6, -10.25, 1.17912e+07[br]domain error[br]6, -9.75, -1.17912e+07[br]domain error[br]6, -9.25, 1.17912e+07[br]domain error[br]6, -8.75, -1.17912e+07[br]domain error[br]6, -8.25, 1.17912e+07[br]domain error[br]6, -7.75, -1.17912e+07[br]domain error[br]6, -7.25, 1.17912e+07[br]domain error[br]6, -6.75, -1.17912e+07[br]domain error[br]6, -6.25, 1.17912e+07[br]domain error[br]6, -5.75, -1.17912e+07[br]domain error[br]6, -5.25, 1.17912e+07[br]domain error[br]6, -4.75, -1.17912e+07[br]domain error[br]6, -4.25, 1.17912e+07[br]domain error[br]6, -3.75, -1.17912e+07[br]domain error[br]6, -3.25, 1.17912e+07[br]domain error[br]6, -2.75, -1.17912e+07[br]domain error[br]6, -2.25, 1.17912e+07[br]domain error[br]6, -1.75, -1.17912e+07[br]domain error[br]6, -1.25, 1.17912e+07[br]*** FURTHER CONTENT HAS BEEN TRUNCATED FOR BREVITY ***[br]
  3606. ]
  3607. [template errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments[]
  3608. [h4 Error Output For polygamma with compiler GNU C++ version 7.1.0 and library GSL 2.1 and test data Mathematica Data - large arguments]
  3609. [#errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments]
  3610. underflow[br]30, 8.58993e+09, -8.44974e-268[br]underflow[br]30, 1.71799e+10, -7.86943e-277[br]underflow[br]30, 3.43597e+10, -7.32898e-286[br]underflow[br]30, 6.87195e+10, -6.82564e-295[br]underflow[br]30, 1.37439e+11, -6.35687e-304[br]underflow[br]30, 2.74878e+11, -5.9203e-313[br]underflow[br]30, 5.49756e+11, -5.53354e-322[br]underflow[br]30, 1.09951e+12, -0[br]underflow[br]30, 2.19902e+12, -0[br]underflow[br]30, 4.39805e+12, -0[br]underflow[br]30, 8.79609e+12, -0[br]underflow[br]30, 1.75922e+13, -0[br]underflow[br]30, 3.51844e+13, -0[br]underflow[br]30, 7.03687e+13, -0[br]underflow[br]30, 1.40737e+14, -0[br]underflow[br]30, 2.81475e+14, -0[br]underflow[br]30, 5.6295e+14, -0[br]underflow[br]30, 1.1259e+15, -0[br]underflow[br]30, 2.2518e+15, -0[br]underflow[br]30, 4.5036e+15, -0[br]underflow[br]30, 9.0072e+15, -0[br]underflow[br]30, 1.80144e+16, -0[br]underflow[br]30, 3.60288e+16, -0[br]underflow[br]30, 7.20576e+16, -0[br]underflow[br]30, 1.44115e+17, -0[br]underflow[br]30, 2.8823e+17, -0[br]underflow[br]30, 5.76461e+17, -0[br]underflow[br]30, 1.15292e+18, -0[br]underflow[br]30, 2.30584e+18, -0[br]underflow[br]30, 4.61169e+18, -0[br]underflow[br]30, 9.22337e+18, -0[br]underflow[br]30, 1.84467e+19, -0[br]underflow[br]30, 3.68935e+19, -0[br]underflow[br]30, 7.3787e+19, -0[br]underflow[br]30, 1.47574e+20, -0[br]underflow[br]30, 2.95148e+20, -0[br]underflow[br]30, 5.90296e+20, -0[br]underflow[br]30, 1.18059e+21, -0[br]underflow[br]30, 2.36118e+21, -0[br]underflow[br]30, 4.72237e+21, -0[br]underflow[br]30, 9.44473e+21, -0[br]underflow[br]30, 1.88895e+22, -0[br]underflow[br]30, 3.77789e+22, -0[br]underflow[br]30, 7.55579e+22, -0[br]underflow[br]30, 1.51116e+23, -0[br]underflow[br]30, 3.02231e+23, -0[br]underflow[br]30, 6.04463e+23, -0[br]underflow[br]30, 1.20893e+24, -0[br]underflow[br]30, 2.41785e+24, -0[br]underflow[br]30, 4.8357e+24, -0[br]underflow[br]30, 9.67141e+24, -0[br]underflow[br]30, 1.93428e+25, -0[br]underflow[br]30, 3.86856e+25, -0[br]underflow[br]30, 7.73713e+25, -0[br]underflow[br]30, 1.54743e+26, -0[br]underflow[br]30, 3.09485e+26, -0[br]underflow[br]30, 6.1897e+26, -0[br]underflow[br]30, 1.23794e+27, -0[br]underflow[br]30, 2.47588e+27, -0[br]underflow[br]30, 4.95176e+27, -0[br]underflow[br]30, 9.90352e+27, -0[br]underflow[br]30, 1.9807e+28, -0[br]underflow[br]30, 3.96141e+28, -0[br]underflow[br]30, 7.92282e+28, -0[br]underflow[br]30, 1.58456e+29, -0[br]underflow[br]30, 3.16913e+29, -0[br]underflow[br]30, 6.33825e+29, -0[br]underflow[br]30, 1.26765e+30, -0[br]
  3611. ]
  3612. [template all_errors[]
  3613. [errors_Microsoft_Visual_C_version_14_1_Win32_double_cyl_bessel_j_integer_orders___math_h__Bessel_JN_Mathworld_Data_Integer_Version_]
  3614. [errors_GNU_C_version_7_1_0_linux_double_legendre_p_associated__GSL_2_1_Associated_Legendre_Polynomials_Small_Values]
  3615. [errors_GNU_C_version_7_1_0_linux_long_double_legendre_p_associated___cmath__Associated_Legendre_Polynomials_Small_Values]
  3616. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_Iv_Mathworld_Data_large_values_]
  3617. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_In_Mathworld_Data_Integer_Version_]
  3618. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I1_Mathworld_Data_Integer_Version_]
  3619. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__Rmath_3_2_3_Bessel_I0_Mathworld_Data_Integer_Version_]
  3620. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_In_Mathworld_Data]
  3621. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I1_Mathworld_Data]
  3622. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_Rmath_3_2_3_Bessel_I0_Mathworld_Data]
  3623. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J_Mathworld_Data]
  3624. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_JN_Mathworld_Data_Integer_Version_]
  3625. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J1_Mathworld_Data_Integer_Version_]
  3626. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__Rmath_3_2_3_Bessel_J0_Mathworld_Data_Integer_Version_]
  3627. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_JN_Mathworld_Data]
  3628. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J1_Mathworld_Data]
  3629. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_Rmath_3_2_3_Bessel_J0_Mathworld_Data]
  3630. [errors_GNU_C_version_7_1_0_linux_double_ibetac_inv_Rmath_3_2_3_Inverse_incomplete_beta]
  3631. [errors_GNU_C_version_7_1_0_linux_double_ibeta_inv_Rmath_3_2_3_Inverse_incomplete_beta]
  3632. [errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_large_parameters]
  3633. [errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_large_parameters]
  3634. [errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_complement_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
  3635. [errors_GNU_C_version_7_1_0_linux_double_non_central_beta_CDF_Rmath_3_2_3_Non_Central_Beta_medium_parameters]
  3636. [errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_large_parameters]
  3637. [errors_GNU_C_version_7_1_0_linux_double_non_central_chi_squared_CDF_complement_Rmath_3_2_3_Non_Central_Chi_Squared_medium_parameters]
  3638. [errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_complement_Rmath_3_2_3_Non_Central_T]
  3639. [errors_GNU_C_version_7_1_0_linux_double_non_central_t_CDF_Rmath_3_2_3_Non_Central_T]
  3640. [errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_Large_orders_and_other_bug_cases]
  3641. [errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_negative_arguments]
  3642. [errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_negative_arguments]
  3643. [errors_GNU_C_version_7_1_0_linux_double_polygamma_Rmath_3_2_3_Mathematica_Data_large_arguments]
  3644. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data_large_values_]
  3645. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Random_Data]
  3646. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Random_Data]
  3647. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_Iv_Mathworld_Data]
  3648. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_integer_orders__GSL_2_1_Bessel_In_Mathworld_Data_Integer_Version_]
  3649. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_In_Mathworld_Data]
  3650. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I1_Mathworld_Data]
  3651. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_i_GSL_2_1_Bessel_I0_Mathworld_Data]
  3652. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data_large_values_]
  3653. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Random_Data]
  3654. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_Iv_Mathworld_Data]
  3655. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_In_Mathworld_Data_Integer_Version_]
  3656. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I1_Mathworld_Data_Integer_Version_]
  3657. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i_integer_orders___cmath__Bessel_I0_Mathworld_Data_Integer_Version_]
  3658. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_In_Mathworld_Data]
  3659. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I1_Mathworld_Data]
  3660. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_i__cmath__Bessel_I0_Mathworld_Data]
  3661. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Random_Data]
  3662. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data_large_values_]
  3663. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J_Mathworld_Data]
  3664. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_integer_orders__GSL_2_1_Bessel_JN_Mathworld_Data_Integer_Version_]
  3665. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_JN_Mathworld_Data]
  3666. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J1_Mathworld_Data]
  3667. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_j_GSL_2_1_Bessel_J0_Mathworld_Data]
  3668. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data_large_values_]
  3669. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J_Mathworld_Data]
  3670. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_JN_Mathworld_Data_Integer_Version_]
  3671. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J1_Mathworld_Data_Integer_Version_]
  3672. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j_integer_orders___cmath__Bessel_J0_Mathworld_Data_Integer_Version_]
  3673. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_JN_Mathworld_Data]
  3674. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J1_Mathworld_Data]
  3675. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_j__cmath__Bessel_J0_Mathworld_Data]
  3676. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Random_Data]
  3677. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Random_Data]
  3678. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data_large_values_]
  3679. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kv_Mathworld_Data]
  3680. [errors_GNU_C_version_7_1_0_linux_double_cyl_bessel_k_GSL_2_1_Bessel_Kn_Mathworld_Data]
  3681. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Random_Data]
  3682. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data_large_values_]
  3683. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kv_Mathworld_Data]
  3684. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k_integer_orders___cmath__Bessel_Kn_Mathworld_Data_Integer_Version_]
  3685. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_bessel_k__cmath__Bessel_Kn_Mathworld_Data]
  3686. [errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data_large_values_]
  3687. [errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yv_Mathworld_Data]
  3688. [errors_GNU_C_version_7_1_0_linux_double_cyl_neumann_GSL_2_1_Yn_Mathworld_Data]
  3689. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Random_Data]
  3690. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data_large_values_]
  3691. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yv_Mathworld_Data]
  3692. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann_integer_orders___cmath__Yn_Mathworld_Data_Integer_Version_]
  3693. [errors_GNU_C_version_7_1_0_linux_long_double_cyl_neumann__cmath__Yn_Mathworld_Data]
  3694. [errors_GNU_C_version_7_1_0_linux_double_beta_GSL_2_1_Beta_Function_Small_Values]
  3695. [errors_GNU_C_version_7_1_0_linux_double_ellint_rj_GSL_2_1_RJ_Random_data]
  3696. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_1__cmath__Elliptic_Integral_F_Mathworld_Data]
  3697. [errors_GNU_C_version_7_1_0_linux_double_ellint_2_complete__GSL_2_1_Elliptic_Integral_E_Mathworld_Data]
  3698. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_2__cmath__Elliptic_Integral_E_Mathworld_Data]
  3699. [errors_GNU_C_version_7_1_0_linux_double_ellint_3_complete__GSL_2_1_Complete_Elliptic_Integral_PI_Mathworld_Data]
  3700. [errors_GNU_C_version_7_1_0_linux_double_ellint_3_GSL_2_1_Elliptic_Integral_PI_Mathworld_Data]
  3701. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Random_Data]
  3702. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_3_complete___cmath__Complete_Elliptic_Integral_PI_Mathworld_Data]
  3703. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Large_Random_Data]
  3704. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Random_Data]
  3705. [errors_GNU_C_version_7_1_0_linux_long_double_ellint_3__cmath__Elliptic_Integral_PI_Mathworld_Data]
  3706. [errors_GNU_C_version_7_1_0_linux_long_double_expint_Ei___cmath__Exponential_Integral_Ei]
  3707. [errors_GNU_C_version_7_1_0_linux_double_ibeta_GSL_2_1_Incomplete_Beta_Function_Large_and_Diverse_Values]
  3708. [errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3709. [errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3710. [errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Modulus_near_1]
  3711. [errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3712. [errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3713. [errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Random_Small_Values]
  3714. [errors_GNU_C_version_7_1_0_linux_double_jacobi_dn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3715. [errors_GNU_C_version_7_1_0_linux_double_jacobi_cn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3716. [errors_GNU_C_version_7_1_0_linux_double_jacobi_sn_GSL_2_1_Jacobi_Elliptic_Mathworld_Data]
  3717. [errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_Large_orders_and_other_bug_cases]
  3718. [errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_negative_arguments]
  3719. [errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_negative_arguments]
  3720. [errors_GNU_C_version_7_1_0_linux_double_polygamma_GSL_2_1_Mathematica_Data_large_arguments]
  3721. ]
  3722. [/
  3723. Copyright 2015 John Maddock and Paul A. Bristow.
  3724. Distributed under the Boost Software License, Version 1.0.
  3725. (See accompanying file LICENSE_1_0.txt or copy at
  3726. http://www.boost.org/LICENSE_1_0.txt).
  3727. ]