scattnlay.cpp 565 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618
  1. /* Generated by Cython 0.27.3 */
  2. #define PY_SSIZE_T_CLEAN
  3. #include "Python.h"
  4. #ifndef Py_PYTHON_H
  5. #error Python headers needed to compile C extensions, please install development version of Python.
  6. #elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000)
  7. #error Cython requires Python 2.6+ or Python 3.3+.
  8. #else
  9. #define CYTHON_ABI "0_27_3"
  10. #define CYTHON_FUTURE_DIVISION 1
  11. #include <stddef.h>
  12. #ifndef offsetof
  13. #define offsetof(type, member) ( (size_t) & ((type*)0) -> member )
  14. #endif
  15. #if !defined(WIN32) && !defined(MS_WINDOWS)
  16. #ifndef __stdcall
  17. #define __stdcall
  18. #endif
  19. #ifndef __cdecl
  20. #define __cdecl
  21. #endif
  22. #ifndef __fastcall
  23. #define __fastcall
  24. #endif
  25. #endif
  26. #ifndef DL_IMPORT
  27. #define DL_IMPORT(t) t
  28. #endif
  29. #ifndef DL_EXPORT
  30. #define DL_EXPORT(t) t
  31. #endif
  32. #define __PYX_COMMA ,
  33. #ifndef HAVE_LONG_LONG
  34. #if PY_VERSION_HEX >= 0x02070000
  35. #define HAVE_LONG_LONG
  36. #endif
  37. #endif
  38. #ifndef PY_LONG_LONG
  39. #define PY_LONG_LONG LONG_LONG
  40. #endif
  41. #ifndef Py_HUGE_VAL
  42. #define Py_HUGE_VAL HUGE_VAL
  43. #endif
  44. #ifdef PYPY_VERSION
  45. #define CYTHON_COMPILING_IN_PYPY 1
  46. #define CYTHON_COMPILING_IN_PYSTON 0
  47. #define CYTHON_COMPILING_IN_CPYTHON 0
  48. #undef CYTHON_USE_TYPE_SLOTS
  49. #define CYTHON_USE_TYPE_SLOTS 0
  50. #undef CYTHON_USE_PYTYPE_LOOKUP
  51. #define CYTHON_USE_PYTYPE_LOOKUP 0
  52. #if PY_VERSION_HEX < 0x03050000
  53. #undef CYTHON_USE_ASYNC_SLOTS
  54. #define CYTHON_USE_ASYNC_SLOTS 0
  55. #elif !defined(CYTHON_USE_ASYNC_SLOTS)
  56. #define CYTHON_USE_ASYNC_SLOTS 1
  57. #endif
  58. #undef CYTHON_USE_PYLIST_INTERNALS
  59. #define CYTHON_USE_PYLIST_INTERNALS 0
  60. #undef CYTHON_USE_UNICODE_INTERNALS
  61. #define CYTHON_USE_UNICODE_INTERNALS 0
  62. #undef CYTHON_USE_UNICODE_WRITER
  63. #define CYTHON_USE_UNICODE_WRITER 0
  64. #undef CYTHON_USE_PYLONG_INTERNALS
  65. #define CYTHON_USE_PYLONG_INTERNALS 0
  66. #undef CYTHON_AVOID_BORROWED_REFS
  67. #define CYTHON_AVOID_BORROWED_REFS 1
  68. #undef CYTHON_ASSUME_SAFE_MACROS
  69. #define CYTHON_ASSUME_SAFE_MACROS 0
  70. #undef CYTHON_UNPACK_METHODS
  71. #define CYTHON_UNPACK_METHODS 0
  72. #undef CYTHON_FAST_THREAD_STATE
  73. #define CYTHON_FAST_THREAD_STATE 0
  74. #undef CYTHON_FAST_PYCALL
  75. #define CYTHON_FAST_PYCALL 0
  76. #undef CYTHON_PEP489_MULTI_PHASE_INIT
  77. #define CYTHON_PEP489_MULTI_PHASE_INIT 0
  78. #undef CYTHON_USE_TP_FINALIZE
  79. #define CYTHON_USE_TP_FINALIZE 0
  80. #elif defined(PYSTON_VERSION)
  81. #define CYTHON_COMPILING_IN_PYPY 0
  82. #define CYTHON_COMPILING_IN_PYSTON 1
  83. #define CYTHON_COMPILING_IN_CPYTHON 0
  84. #ifndef CYTHON_USE_TYPE_SLOTS
  85. #define CYTHON_USE_TYPE_SLOTS 1
  86. #endif
  87. #undef CYTHON_USE_PYTYPE_LOOKUP
  88. #define CYTHON_USE_PYTYPE_LOOKUP 0
  89. #undef CYTHON_USE_ASYNC_SLOTS
  90. #define CYTHON_USE_ASYNC_SLOTS 0
  91. #undef CYTHON_USE_PYLIST_INTERNALS
  92. #define CYTHON_USE_PYLIST_INTERNALS 0
  93. #ifndef CYTHON_USE_UNICODE_INTERNALS
  94. #define CYTHON_USE_UNICODE_INTERNALS 1
  95. #endif
  96. #undef CYTHON_USE_UNICODE_WRITER
  97. #define CYTHON_USE_UNICODE_WRITER 0
  98. #undef CYTHON_USE_PYLONG_INTERNALS
  99. #define CYTHON_USE_PYLONG_INTERNALS 0
  100. #ifndef CYTHON_AVOID_BORROWED_REFS
  101. #define CYTHON_AVOID_BORROWED_REFS 0
  102. #endif
  103. #ifndef CYTHON_ASSUME_SAFE_MACROS
  104. #define CYTHON_ASSUME_SAFE_MACROS 1
  105. #endif
  106. #ifndef CYTHON_UNPACK_METHODS
  107. #define CYTHON_UNPACK_METHODS 1
  108. #endif
  109. #undef CYTHON_FAST_THREAD_STATE
  110. #define CYTHON_FAST_THREAD_STATE 0
  111. #undef CYTHON_FAST_PYCALL
  112. #define CYTHON_FAST_PYCALL 0
  113. #undef CYTHON_PEP489_MULTI_PHASE_INIT
  114. #define CYTHON_PEP489_MULTI_PHASE_INIT 0
  115. #undef CYTHON_USE_TP_FINALIZE
  116. #define CYTHON_USE_TP_FINALIZE 0
  117. #else
  118. #define CYTHON_COMPILING_IN_PYPY 0
  119. #define CYTHON_COMPILING_IN_PYSTON 0
  120. #define CYTHON_COMPILING_IN_CPYTHON 1
  121. #ifndef CYTHON_USE_TYPE_SLOTS
  122. #define CYTHON_USE_TYPE_SLOTS 1
  123. #endif
  124. #if PY_VERSION_HEX < 0x02070000
  125. #undef CYTHON_USE_PYTYPE_LOOKUP
  126. #define CYTHON_USE_PYTYPE_LOOKUP 0
  127. #elif !defined(CYTHON_USE_PYTYPE_LOOKUP)
  128. #define CYTHON_USE_PYTYPE_LOOKUP 1
  129. #endif
  130. #if PY_MAJOR_VERSION < 3
  131. #undef CYTHON_USE_ASYNC_SLOTS
  132. #define CYTHON_USE_ASYNC_SLOTS 0
  133. #elif !defined(CYTHON_USE_ASYNC_SLOTS)
  134. #define CYTHON_USE_ASYNC_SLOTS 1
  135. #endif
  136. #if PY_VERSION_HEX < 0x02070000
  137. #undef CYTHON_USE_PYLONG_INTERNALS
  138. #define CYTHON_USE_PYLONG_INTERNALS 0
  139. #elif !defined(CYTHON_USE_PYLONG_INTERNALS)
  140. #define CYTHON_USE_PYLONG_INTERNALS 1
  141. #endif
  142. #ifndef CYTHON_USE_PYLIST_INTERNALS
  143. #define CYTHON_USE_PYLIST_INTERNALS 1
  144. #endif
  145. #ifndef CYTHON_USE_UNICODE_INTERNALS
  146. #define CYTHON_USE_UNICODE_INTERNALS 1
  147. #endif
  148. #if PY_VERSION_HEX < 0x030300F0
  149. #undef CYTHON_USE_UNICODE_WRITER
  150. #define CYTHON_USE_UNICODE_WRITER 0
  151. #elif !defined(CYTHON_USE_UNICODE_WRITER)
  152. #define CYTHON_USE_UNICODE_WRITER 1
  153. #endif
  154. #ifndef CYTHON_AVOID_BORROWED_REFS
  155. #define CYTHON_AVOID_BORROWED_REFS 0
  156. #endif
  157. #ifndef CYTHON_ASSUME_SAFE_MACROS
  158. #define CYTHON_ASSUME_SAFE_MACROS 1
  159. #endif
  160. #ifndef CYTHON_UNPACK_METHODS
  161. #define CYTHON_UNPACK_METHODS 1
  162. #endif
  163. #ifndef CYTHON_FAST_THREAD_STATE
  164. #define CYTHON_FAST_THREAD_STATE 1
  165. #endif
  166. #ifndef CYTHON_FAST_PYCALL
  167. #define CYTHON_FAST_PYCALL 1
  168. #endif
  169. #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
  170. #define CYTHON_PEP489_MULTI_PHASE_INIT (0 && PY_VERSION_HEX >= 0x03050000)
  171. #endif
  172. #ifndef CYTHON_USE_TP_FINALIZE
  173. #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1)
  174. #endif
  175. #endif
  176. #if !defined(CYTHON_FAST_PYCCALL)
  177. #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
  178. #endif
  179. #if CYTHON_USE_PYLONG_INTERNALS
  180. #include "longintrepr.h"
  181. #undef SHIFT
  182. #undef BASE
  183. #undef MASK
  184. #endif
  185. #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag)
  186. #define Py_OptimizeFlag 0
  187. #endif
  188. #define __PYX_BUILD_PY_SSIZE_T "n"
  189. #define CYTHON_FORMAT_SSIZE_T "z"
  190. #if PY_MAJOR_VERSION < 3
  191. #define __Pyx_BUILTIN_MODULE_NAME "__builtin__"
  192. #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\
  193. PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
  194. #define __Pyx_DefaultClassType PyClass_Type
  195. #else
  196. #define __Pyx_BUILTIN_MODULE_NAME "builtins"
  197. #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\
  198. PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
  199. #define __Pyx_DefaultClassType PyType_Type
  200. #endif
  201. #ifndef Py_TPFLAGS_CHECKTYPES
  202. #define Py_TPFLAGS_CHECKTYPES 0
  203. #endif
  204. #ifndef Py_TPFLAGS_HAVE_INDEX
  205. #define Py_TPFLAGS_HAVE_INDEX 0
  206. #endif
  207. #ifndef Py_TPFLAGS_HAVE_NEWBUFFER
  208. #define Py_TPFLAGS_HAVE_NEWBUFFER 0
  209. #endif
  210. #ifndef Py_TPFLAGS_HAVE_FINALIZE
  211. #define Py_TPFLAGS_HAVE_FINALIZE 0
  212. #endif
  213. #if PY_VERSION_HEX < 0x030700A0 || !defined(METH_FASTCALL)
  214. #ifndef METH_FASTCALL
  215. #define METH_FASTCALL 0x80
  216. #endif
  217. typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject **args, Py_ssize_t nargs);
  218. typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject **args,
  219. Py_ssize_t nargs, PyObject *kwnames);
  220. #else
  221. #define __Pyx_PyCFunctionFast _PyCFunctionFast
  222. #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
  223. #endif
  224. #if CYTHON_FAST_PYCCALL
  225. #define __Pyx_PyFastCFunction_Check(func)\
  226. ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS)))))
  227. #else
  228. #define __Pyx_PyFastCFunction_Check(func) 0
  229. #endif
  230. #if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000
  231. #define __Pyx_PyThreadState_Current PyThreadState_GET()
  232. #elif PY_VERSION_HEX >= 0x03060000
  233. #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet()
  234. #elif PY_VERSION_HEX >= 0x03000000
  235. #define __Pyx_PyThreadState_Current PyThreadState_GET()
  236. #else
  237. #define __Pyx_PyThreadState_Current _PyThreadState_Current
  238. #endif
  239. #if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized)
  240. #define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n))
  241. #else
  242. #define __Pyx_PyDict_NewPresized(n) PyDict_New()
  243. #endif
  244. #if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION
  245. #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y)
  246. #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y)
  247. #else
  248. #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y)
  249. #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y)
  250. #endif
  251. #if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND)
  252. #define CYTHON_PEP393_ENABLED 1
  253. #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\
  254. 0 : _PyUnicode_Ready((PyObject *)(op)))
  255. #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u)
  256. #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i)
  257. #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u)
  258. #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u)
  259. #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u)
  260. #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i)
  261. #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch)
  262. #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u)))
  263. #else
  264. #define CYTHON_PEP393_ENABLED 0
  265. #define PyUnicode_1BYTE_KIND 1
  266. #define PyUnicode_2BYTE_KIND 2
  267. #define PyUnicode_4BYTE_KIND 4
  268. #define __Pyx_PyUnicode_READY(op) (0)
  269. #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u)
  270. #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i]))
  271. #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111)
  272. #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE))
  273. #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u))
  274. #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i]))
  275. #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch)
  276. #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u))
  277. #endif
  278. #if CYTHON_COMPILING_IN_PYPY
  279. #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b)
  280. #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b)
  281. #else
  282. #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b)
  283. #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\
  284. PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b))
  285. #endif
  286. #if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains)
  287. #define PyUnicode_Contains(u, s) PySequence_Contains(u, s)
  288. #endif
  289. #if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check)
  290. #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type)
  291. #endif
  292. #if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format)
  293. #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt)
  294. #endif
  295. #if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc)
  296. #define PyObject_Malloc(s) PyMem_Malloc(s)
  297. #define PyObject_Free(p) PyMem_Free(p)
  298. #define PyObject_Realloc(p) PyMem_Realloc(p)
  299. #endif
  300. #if CYTHON_COMPILING_IN_PYSTON
  301. #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co)
  302. #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno)
  303. #else
  304. #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0)
  305. #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno)
  306. #endif
  307. #define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None)) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b))
  308. #define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None)) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b))
  309. #if PY_MAJOR_VERSION >= 3
  310. #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b)
  311. #else
  312. #define __Pyx_PyString_Format(a, b) PyString_Format(a, b)
  313. #endif
  314. #if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII)
  315. #define PyObject_ASCII(o) PyObject_Repr(o)
  316. #endif
  317. #if PY_MAJOR_VERSION >= 3
  318. #define PyBaseString_Type PyUnicode_Type
  319. #define PyStringObject PyUnicodeObject
  320. #define PyString_Type PyUnicode_Type
  321. #define PyString_Check PyUnicode_Check
  322. #define PyString_CheckExact PyUnicode_CheckExact
  323. #endif
  324. #if PY_MAJOR_VERSION >= 3
  325. #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj)
  326. #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj)
  327. #else
  328. #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj))
  329. #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj))
  330. #endif
  331. #ifndef PySet_CheckExact
  332. #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type)
  333. #endif
  334. #define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception)
  335. #if PY_MAJOR_VERSION >= 3
  336. #define PyIntObject PyLongObject
  337. #define PyInt_Type PyLong_Type
  338. #define PyInt_Check(op) PyLong_Check(op)
  339. #define PyInt_CheckExact(op) PyLong_CheckExact(op)
  340. #define PyInt_FromString PyLong_FromString
  341. #define PyInt_FromUnicode PyLong_FromUnicode
  342. #define PyInt_FromLong PyLong_FromLong
  343. #define PyInt_FromSize_t PyLong_FromSize_t
  344. #define PyInt_FromSsize_t PyLong_FromSsize_t
  345. #define PyInt_AsLong PyLong_AsLong
  346. #define PyInt_AS_LONG PyLong_AS_LONG
  347. #define PyInt_AsSsize_t PyLong_AsSsize_t
  348. #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask
  349. #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask
  350. #define PyNumber_Int PyNumber_Long
  351. #endif
  352. #if PY_MAJOR_VERSION >= 3
  353. #define PyBoolObject PyLongObject
  354. #endif
  355. #if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY
  356. #ifndef PyUnicode_InternFromString
  357. #define PyUnicode_InternFromString(s) PyUnicode_FromString(s)
  358. #endif
  359. #endif
  360. #if PY_VERSION_HEX < 0x030200A4
  361. typedef long Py_hash_t;
  362. #define __Pyx_PyInt_FromHash_t PyInt_FromLong
  363. #define __Pyx_PyInt_AsHash_t PyInt_AsLong
  364. #else
  365. #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t
  366. #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t
  367. #endif
  368. #if PY_MAJOR_VERSION >= 3
  369. #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func))
  370. #else
  371. #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass)
  372. #endif
  373. #ifndef __has_attribute
  374. #define __has_attribute(x) 0
  375. #endif
  376. #ifndef __has_cpp_attribute
  377. #define __has_cpp_attribute(x) 0
  378. #endif
  379. #if CYTHON_USE_ASYNC_SLOTS
  380. #if PY_VERSION_HEX >= 0x030500B1
  381. #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods
  382. #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async)
  383. #else
  384. #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved))
  385. #endif
  386. #else
  387. #define __Pyx_PyType_AsAsync(obj) NULL
  388. #endif
  389. #ifndef __Pyx_PyAsyncMethodsStruct
  390. typedef struct {
  391. unaryfunc am_await;
  392. unaryfunc am_aiter;
  393. unaryfunc am_anext;
  394. } __Pyx_PyAsyncMethodsStruct;
  395. #endif
  396. #ifndef CYTHON_RESTRICT
  397. #if defined(__GNUC__)
  398. #define CYTHON_RESTRICT __restrict__
  399. #elif defined(_MSC_VER) && _MSC_VER >= 1400
  400. #define CYTHON_RESTRICT __restrict
  401. #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  402. #define CYTHON_RESTRICT restrict
  403. #else
  404. #define CYTHON_RESTRICT
  405. #endif
  406. #endif
  407. #ifndef CYTHON_UNUSED
  408. # if defined(__GNUC__)
  409. # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
  410. # define CYTHON_UNUSED __attribute__ ((__unused__))
  411. # else
  412. # define CYTHON_UNUSED
  413. # endif
  414. # elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER))
  415. # define CYTHON_UNUSED __attribute__ ((__unused__))
  416. # else
  417. # define CYTHON_UNUSED
  418. # endif
  419. #endif
  420. #ifndef CYTHON_MAYBE_UNUSED_VAR
  421. # if defined(__cplusplus)
  422. template<class T> void CYTHON_MAYBE_UNUSED_VAR( const T& ) { }
  423. # else
  424. # define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x)
  425. # endif
  426. #endif
  427. #ifndef CYTHON_NCP_UNUSED
  428. # if CYTHON_COMPILING_IN_CPYTHON
  429. # define CYTHON_NCP_UNUSED
  430. # else
  431. # define CYTHON_NCP_UNUSED CYTHON_UNUSED
  432. # endif
  433. #endif
  434. #define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None)
  435. #ifdef _MSC_VER
  436. #ifndef _MSC_STDINT_H_
  437. #if _MSC_VER < 1300
  438. typedef unsigned char uint8_t;
  439. typedef unsigned int uint32_t;
  440. #else
  441. typedef unsigned __int8 uint8_t;
  442. typedef unsigned __int32 uint32_t;
  443. #endif
  444. #endif
  445. #else
  446. #include <stdint.h>
  447. #endif
  448. #ifndef CYTHON_FALLTHROUGH
  449. #if defined(__cplusplus) && __cplusplus >= 201103L
  450. #if __has_cpp_attribute(fallthrough)
  451. #define CYTHON_FALLTHROUGH [[fallthrough]]
  452. #elif __has_cpp_attribute(clang::fallthrough)
  453. #define CYTHON_FALLTHROUGH [[clang::fallthrough]]
  454. #elif __has_cpp_attribute(gnu::fallthrough)
  455. #define CYTHON_FALLTHROUGH [[gnu::fallthrough]]
  456. #endif
  457. #endif
  458. #ifndef CYTHON_FALLTHROUGH
  459. #if __has_attribute(fallthrough)
  460. #define CYTHON_FALLTHROUGH __attribute__((fallthrough))
  461. #else
  462. #define CYTHON_FALLTHROUGH
  463. #endif
  464. #endif
  465. #if defined(__clang__ ) && defined(__apple_build_version__)
  466. #if __apple_build_version__ < 7000000
  467. #undef CYTHON_FALLTHROUGH
  468. #define CYTHON_FALLTHROUGH
  469. #endif
  470. #endif
  471. #endif
  472. #ifndef __cplusplus
  473. #error "Cython files generated with the C++ option must be compiled with a C++ compiler."
  474. #endif
  475. #ifndef CYTHON_INLINE
  476. #if defined(__clang__)
  477. #define CYTHON_INLINE __inline__ __attribute__ ((__unused__))
  478. #else
  479. #define CYTHON_INLINE inline
  480. #endif
  481. #endif
  482. template<typename T>
  483. void __Pyx_call_destructor(T& x) {
  484. x.~T();
  485. }
  486. template<typename T>
  487. class __Pyx_FakeReference {
  488. public:
  489. __Pyx_FakeReference() : ptr(NULL) { }
  490. __Pyx_FakeReference(const T& ref) : ptr(const_cast<T*>(&ref)) { }
  491. T *operator->() { return ptr; }
  492. T *operator&() { return ptr; }
  493. operator T&() { return *ptr; }
  494. template<typename U> bool operator ==(U other) { return *ptr == other; }
  495. template<typename U> bool operator !=(U other) { return *ptr != other; }
  496. private:
  497. T *ptr;
  498. };
  499. #if defined(WIN32) || defined(MS_WINDOWS)
  500. #define _USE_MATH_DEFINES
  501. #endif
  502. #include <math.h>
  503. #ifdef NAN
  504. #define __PYX_NAN() ((float) NAN)
  505. #else
  506. static CYTHON_INLINE float __PYX_NAN() {
  507. float value;
  508. memset(&value, 0xFF, sizeof(value));
  509. return value;
  510. }
  511. #endif
  512. #if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL)
  513. #define __Pyx_truncl trunc
  514. #else
  515. #define __Pyx_truncl truncl
  516. #endif
  517. #define __PYX_ERR(f_index, lineno, Ln_error) \
  518. { \
  519. __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \
  520. }
  521. #ifndef __PYX_EXTERN_C
  522. #ifdef __cplusplus
  523. #define __PYX_EXTERN_C extern "C"
  524. #else
  525. #define __PYX_EXTERN_C extern
  526. #endif
  527. #endif
  528. #define __PYX_HAVE__scattnlay
  529. #define __PYX_HAVE_API__scattnlay
  530. #include <string.h>
  531. #include <stdio.h>
  532. #include "numpy/arrayobject.h"
  533. #include "numpy/ufuncobject.h"
  534. #include <vector>
  535. #include "ios"
  536. #include "new"
  537. #include "stdexcept"
  538. #include "typeinfo"
  539. #include "py_nmie.h"
  540. #ifdef _OPENMP
  541. #include <omp.h>
  542. #endif /* _OPENMP */
  543. #if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS)
  544. #define CYTHON_WITHOUT_ASSERTIONS
  545. #endif
  546. typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding;
  547. const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;
  548. #define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0
  549. #define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT 0
  550. #define __PYX_DEFAULT_STRING_ENCODING ""
  551. #define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString
  552. #define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize
  553. #define __Pyx_uchar_cast(c) ((unsigned char)c)
  554. #define __Pyx_long_cast(x) ((long)x)
  555. #define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\
  556. (sizeof(type) < sizeof(Py_ssize_t)) ||\
  557. (sizeof(type) > sizeof(Py_ssize_t) &&\
  558. likely(v < (type)PY_SSIZE_T_MAX ||\
  559. v == (type)PY_SSIZE_T_MAX) &&\
  560. (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\
  561. v == (type)PY_SSIZE_T_MIN))) ||\
  562. (sizeof(type) == sizeof(Py_ssize_t) &&\
  563. (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\
  564. v == (type)PY_SSIZE_T_MAX))) )
  565. #if defined (__cplusplus) && __cplusplus >= 201103L
  566. #include <cstdlib>
  567. #define __Pyx_sst_abs(value) std::abs(value)
  568. #elif SIZEOF_INT >= SIZEOF_SIZE_T
  569. #define __Pyx_sst_abs(value) abs(value)
  570. #elif SIZEOF_LONG >= SIZEOF_SIZE_T
  571. #define __Pyx_sst_abs(value) labs(value)
  572. #elif defined (_MSC_VER)
  573. #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value))
  574. #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  575. #define __Pyx_sst_abs(value) llabs(value)
  576. #elif defined (__GNUC__)
  577. #define __Pyx_sst_abs(value) __builtin_llabs(value)
  578. #else
  579. #define __Pyx_sst_abs(value) ((value<0) ? -value : value)
  580. #endif
  581. static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*);
  582. static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length);
  583. #define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s))
  584. #define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l)
  585. #define __Pyx_PyBytes_FromString PyBytes_FromString
  586. #define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize
  587. static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
  588. #if PY_MAJOR_VERSION < 3
  589. #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString
  590. #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize
  591. #else
  592. #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString
  593. #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize
  594. #endif
  595. #define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s))
  596. #define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s))
  597. #define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s))
  598. #define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s))
  599. #define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s))
  600. #define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s))
  601. #define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s))
  602. #define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s))
  603. #define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s))
  604. #define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s))
  605. #define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s))
  606. #define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s)
  607. #define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s)
  608. #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
  609. #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
  610. #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
  611. static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {
  612. const Py_UNICODE *u_end = u;
  613. while (*u_end++) ;
  614. return (size_t)(u_end - u - 1);
  615. }
  616. #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
  617. #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
  618. #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
  619. #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
  620. #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
  621. #define __Pyx_PyBool_FromLong(b) ((b) ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False))
  622. static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
  623. static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x);
  624. #define __Pyx_PySequence_Tuple(obj)\
  625. (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj))
  626. static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
  627. static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t);
  628. #if CYTHON_ASSUME_SAFE_MACROS
  629. #define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x))
  630. #else
  631. #define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x)
  632. #endif
  633. #define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x))
  634. #if PY_MAJOR_VERSION >= 3
  635. #define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x))
  636. #else
  637. #define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x))
  638. #endif
  639. #define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x))
  640. #if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
  641. static int __Pyx_sys_getdefaultencoding_not_ascii;
  642. static int __Pyx_init_sys_getdefaultencoding_params(void) {
  643. PyObject* sys;
  644. PyObject* default_encoding = NULL;
  645. PyObject* ascii_chars_u = NULL;
  646. PyObject* ascii_chars_b = NULL;
  647. const char* default_encoding_c;
  648. sys = PyImport_ImportModule("sys");
  649. if (!sys) goto bad;
  650. default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL);
  651. Py_DECREF(sys);
  652. if (!default_encoding) goto bad;
  653. default_encoding_c = PyBytes_AsString(default_encoding);
  654. if (!default_encoding_c) goto bad;
  655. if (strcmp(default_encoding_c, "ascii") == 0) {
  656. __Pyx_sys_getdefaultencoding_not_ascii = 0;
  657. } else {
  658. char ascii_chars[128];
  659. int c;
  660. for (c = 0; c < 128; c++) {
  661. ascii_chars[c] = c;
  662. }
  663. __Pyx_sys_getdefaultencoding_not_ascii = 1;
  664. ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL);
  665. if (!ascii_chars_u) goto bad;
  666. ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL);
  667. if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) {
  668. PyErr_Format(
  669. PyExc_ValueError,
  670. "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.",
  671. default_encoding_c);
  672. goto bad;
  673. }
  674. Py_DECREF(ascii_chars_u);
  675. Py_DECREF(ascii_chars_b);
  676. }
  677. Py_DECREF(default_encoding);
  678. return 0;
  679. bad:
  680. Py_XDECREF(default_encoding);
  681. Py_XDECREF(ascii_chars_u);
  682. Py_XDECREF(ascii_chars_b);
  683. return -1;
  684. }
  685. #endif
  686. #if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3
  687. #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL)
  688. #else
  689. #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL)
  690. #if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT
  691. static char* __PYX_DEFAULT_STRING_ENCODING;
  692. static int __Pyx_init_sys_getdefaultencoding_params(void) {
  693. PyObject* sys;
  694. PyObject* default_encoding = NULL;
  695. char* default_encoding_c;
  696. sys = PyImport_ImportModule("sys");
  697. if (!sys) goto bad;
  698. default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL);
  699. Py_DECREF(sys);
  700. if (!default_encoding) goto bad;
  701. default_encoding_c = PyBytes_AsString(default_encoding);
  702. if (!default_encoding_c) goto bad;
  703. __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c));
  704. if (!__PYX_DEFAULT_STRING_ENCODING) goto bad;
  705. strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c);
  706. Py_DECREF(default_encoding);
  707. return 0;
  708. bad:
  709. Py_XDECREF(default_encoding);
  710. return -1;
  711. }
  712. #endif
  713. #endif
  714. /* Test for GCC > 2.95 */
  715. #if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)))
  716. #define likely(x) __builtin_expect(!!(x), 1)
  717. #define unlikely(x) __builtin_expect(!!(x), 0)
  718. #else /* !__GNUC__ or GCC < 2.95 */
  719. #define likely(x) (x)
  720. #define unlikely(x) (x)
  721. #endif /* __GNUC__ */
  722. static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; }
  723. static PyObject *__pyx_m = NULL;
  724. static PyObject *__pyx_d;
  725. static PyObject *__pyx_b;
  726. static PyObject *__pyx_cython_runtime;
  727. static PyObject *__pyx_empty_tuple;
  728. static PyObject *__pyx_empty_bytes;
  729. static PyObject *__pyx_empty_unicode;
  730. static int __pyx_lineno;
  731. static int __pyx_clineno = 0;
  732. static const char * __pyx_cfilenm= __FILE__;
  733. static const char *__pyx_filename;
  734. /* Header.proto */
  735. #if !defined(CYTHON_CCOMPLEX)
  736. #if defined(__cplusplus)
  737. #define CYTHON_CCOMPLEX 1
  738. #elif defined(_Complex_I)
  739. #define CYTHON_CCOMPLEX 1
  740. #else
  741. #define CYTHON_CCOMPLEX 0
  742. #endif
  743. #endif
  744. #if CYTHON_CCOMPLEX
  745. #ifdef __cplusplus
  746. #include <complex>
  747. #else
  748. #include <complex.h>
  749. #endif
  750. #endif
  751. #if CYTHON_CCOMPLEX && !defined(__cplusplus) && defined(__sun__) && defined(__GNUC__)
  752. #undef _Complex_I
  753. #define _Complex_I 1.0fj
  754. #endif
  755. static const char *__pyx_f[] = {
  756. "scattnlay.pyx",
  757. "__init__.pxd",
  758. "stringsource",
  759. "type.pxd",
  760. };
  761. /* BufferFormatStructs.proto */
  762. #define IS_UNSIGNED(type) (((type) -1) > 0)
  763. struct __Pyx_StructField_;
  764. #define __PYX_BUF_FLAGS_PACKED_STRUCT (1 << 0)
  765. typedef struct {
  766. const char* name;
  767. struct __Pyx_StructField_* fields;
  768. size_t size;
  769. size_t arraysize[8];
  770. int ndim;
  771. char typegroup;
  772. char is_unsigned;
  773. int flags;
  774. } __Pyx_TypeInfo;
  775. typedef struct __Pyx_StructField_ {
  776. __Pyx_TypeInfo* type;
  777. const char* name;
  778. size_t offset;
  779. } __Pyx_StructField;
  780. typedef struct {
  781. __Pyx_StructField* field;
  782. size_t parent_offset;
  783. } __Pyx_BufFmt_StackElem;
  784. typedef struct {
  785. __Pyx_StructField root;
  786. __Pyx_BufFmt_StackElem* head;
  787. size_t fmt_offset;
  788. size_t new_count, enc_count;
  789. size_t struct_alignment;
  790. int is_complex;
  791. char enc_type;
  792. char new_packmode;
  793. char enc_packmode;
  794. char is_valid_array;
  795. } __Pyx_BufFmt_Context;
  796. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":743
  797. * # in Cython to enable them only on the right systems.
  798. *
  799. * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
  800. * ctypedef npy_int16 int16_t
  801. * ctypedef npy_int32 int32_t
  802. */
  803. typedef npy_int8 __pyx_t_5numpy_int8_t;
  804. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":744
  805. *
  806. * ctypedef npy_int8 int8_t
  807. * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
  808. * ctypedef npy_int32 int32_t
  809. * ctypedef npy_int64 int64_t
  810. */
  811. typedef npy_int16 __pyx_t_5numpy_int16_t;
  812. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":745
  813. * ctypedef npy_int8 int8_t
  814. * ctypedef npy_int16 int16_t
  815. * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
  816. * ctypedef npy_int64 int64_t
  817. * #ctypedef npy_int96 int96_t
  818. */
  819. typedef npy_int32 __pyx_t_5numpy_int32_t;
  820. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":746
  821. * ctypedef npy_int16 int16_t
  822. * ctypedef npy_int32 int32_t
  823. * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
  824. * #ctypedef npy_int96 int96_t
  825. * #ctypedef npy_int128 int128_t
  826. */
  827. typedef npy_int64 __pyx_t_5numpy_int64_t;
  828. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":750
  829. * #ctypedef npy_int128 int128_t
  830. *
  831. * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
  832. * ctypedef npy_uint16 uint16_t
  833. * ctypedef npy_uint32 uint32_t
  834. */
  835. typedef npy_uint8 __pyx_t_5numpy_uint8_t;
  836. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":751
  837. *
  838. * ctypedef npy_uint8 uint8_t
  839. * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
  840. * ctypedef npy_uint32 uint32_t
  841. * ctypedef npy_uint64 uint64_t
  842. */
  843. typedef npy_uint16 __pyx_t_5numpy_uint16_t;
  844. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":752
  845. * ctypedef npy_uint8 uint8_t
  846. * ctypedef npy_uint16 uint16_t
  847. * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
  848. * ctypedef npy_uint64 uint64_t
  849. * #ctypedef npy_uint96 uint96_t
  850. */
  851. typedef npy_uint32 __pyx_t_5numpy_uint32_t;
  852. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":753
  853. * ctypedef npy_uint16 uint16_t
  854. * ctypedef npy_uint32 uint32_t
  855. * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
  856. * #ctypedef npy_uint96 uint96_t
  857. * #ctypedef npy_uint128 uint128_t
  858. */
  859. typedef npy_uint64 __pyx_t_5numpy_uint64_t;
  860. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":757
  861. * #ctypedef npy_uint128 uint128_t
  862. *
  863. * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
  864. * ctypedef npy_float64 float64_t
  865. * #ctypedef npy_float80 float80_t
  866. */
  867. typedef npy_float32 __pyx_t_5numpy_float32_t;
  868. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":758
  869. *
  870. * ctypedef npy_float32 float32_t
  871. * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
  872. * #ctypedef npy_float80 float80_t
  873. * #ctypedef npy_float128 float128_t
  874. */
  875. typedef npy_float64 __pyx_t_5numpy_float64_t;
  876. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":767
  877. * # The int types are mapped a bit surprising --
  878. * # numpy.int corresponds to 'l' and numpy.long to 'q'
  879. * ctypedef npy_long int_t # <<<<<<<<<<<<<<
  880. * ctypedef npy_longlong long_t
  881. * ctypedef npy_longlong longlong_t
  882. */
  883. typedef npy_long __pyx_t_5numpy_int_t;
  884. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":768
  885. * # numpy.int corresponds to 'l' and numpy.long to 'q'
  886. * ctypedef npy_long int_t
  887. * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
  888. * ctypedef npy_longlong longlong_t
  889. *
  890. */
  891. typedef npy_longlong __pyx_t_5numpy_long_t;
  892. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":769
  893. * ctypedef npy_long int_t
  894. * ctypedef npy_longlong long_t
  895. * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
  896. *
  897. * ctypedef npy_ulong uint_t
  898. */
  899. typedef npy_longlong __pyx_t_5numpy_longlong_t;
  900. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":771
  901. * ctypedef npy_longlong longlong_t
  902. *
  903. * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
  904. * ctypedef npy_ulonglong ulong_t
  905. * ctypedef npy_ulonglong ulonglong_t
  906. */
  907. typedef npy_ulong __pyx_t_5numpy_uint_t;
  908. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":772
  909. *
  910. * ctypedef npy_ulong uint_t
  911. * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
  912. * ctypedef npy_ulonglong ulonglong_t
  913. *
  914. */
  915. typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
  916. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":773
  917. * ctypedef npy_ulong uint_t
  918. * ctypedef npy_ulonglong ulong_t
  919. * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
  920. *
  921. * ctypedef npy_intp intp_t
  922. */
  923. typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
  924. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":775
  925. * ctypedef npy_ulonglong ulonglong_t
  926. *
  927. * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
  928. * ctypedef npy_uintp uintp_t
  929. *
  930. */
  931. typedef npy_intp __pyx_t_5numpy_intp_t;
  932. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":776
  933. *
  934. * ctypedef npy_intp intp_t
  935. * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
  936. *
  937. * ctypedef npy_double float_t
  938. */
  939. typedef npy_uintp __pyx_t_5numpy_uintp_t;
  940. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":778
  941. * ctypedef npy_uintp uintp_t
  942. *
  943. * ctypedef npy_double float_t # <<<<<<<<<<<<<<
  944. * ctypedef npy_double double_t
  945. * ctypedef npy_longdouble longdouble_t
  946. */
  947. typedef npy_double __pyx_t_5numpy_float_t;
  948. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":779
  949. *
  950. * ctypedef npy_double float_t
  951. * ctypedef npy_double double_t # <<<<<<<<<<<<<<
  952. * ctypedef npy_longdouble longdouble_t
  953. *
  954. */
  955. typedef npy_double __pyx_t_5numpy_double_t;
  956. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":780
  957. * ctypedef npy_double float_t
  958. * ctypedef npy_double double_t
  959. * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
  960. *
  961. * ctypedef npy_cfloat cfloat_t
  962. */
  963. typedef npy_longdouble __pyx_t_5numpy_longdouble_t;
  964. /* Declarations.proto */
  965. #if CYTHON_CCOMPLEX
  966. #ifdef __cplusplus
  967. typedef ::std::complex< double > __pyx_t_double_complex;
  968. #else
  969. typedef double _Complex __pyx_t_double_complex;
  970. #endif
  971. #else
  972. typedef struct { double real, imag; } __pyx_t_double_complex;
  973. #endif
  974. static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double, double);
  975. /* Declarations.proto */
  976. #if CYTHON_CCOMPLEX
  977. #ifdef __cplusplus
  978. typedef ::std::complex< float > __pyx_t_float_complex;
  979. #else
  980. typedef float _Complex __pyx_t_float_complex;
  981. #endif
  982. #else
  983. typedef struct { float real, imag; } __pyx_t_float_complex;
  984. #endif
  985. static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float, float);
  986. /*--- Type declarations ---*/
  987. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":782
  988. * ctypedef npy_longdouble longdouble_t
  989. *
  990. * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
  991. * ctypedef npy_cdouble cdouble_t
  992. * ctypedef npy_clongdouble clongdouble_t
  993. */
  994. typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
  995. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":783
  996. *
  997. * ctypedef npy_cfloat cfloat_t
  998. * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
  999. * ctypedef npy_clongdouble clongdouble_t
  1000. *
  1001. */
  1002. typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
  1003. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":784
  1004. * ctypedef npy_cfloat cfloat_t
  1005. * ctypedef npy_cdouble cdouble_t
  1006. * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
  1007. *
  1008. * ctypedef npy_cdouble complex_t
  1009. */
  1010. typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
  1011. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":786
  1012. * ctypedef npy_clongdouble clongdouble_t
  1013. *
  1014. * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
  1015. *
  1016. * cdef inline object PyArray_MultiIterNew1(a):
  1017. */
  1018. typedef npy_cdouble __pyx_t_5numpy_complex_t;
  1019. /* --- Runtime support code (head) --- */
  1020. /* Refnanny.proto */
  1021. #ifndef CYTHON_REFNANNY
  1022. #define CYTHON_REFNANNY 0
  1023. #endif
  1024. #if CYTHON_REFNANNY
  1025. typedef struct {
  1026. void (*INCREF)(void*, PyObject*, int);
  1027. void (*DECREF)(void*, PyObject*, int);
  1028. void (*GOTREF)(void*, PyObject*, int);
  1029. void (*GIVEREF)(void*, PyObject*, int);
  1030. void* (*SetupContext)(const char*, int, const char*);
  1031. void (*FinishContext)(void**);
  1032. } __Pyx_RefNannyAPIStruct;
  1033. static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL;
  1034. static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname);
  1035. #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL;
  1036. #ifdef WITH_THREAD
  1037. #define __Pyx_RefNannySetupContext(name, acquire_gil)\
  1038. if (acquire_gil) {\
  1039. PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\
  1040. __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\
  1041. PyGILState_Release(__pyx_gilstate_save);\
  1042. } else {\
  1043. __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\
  1044. }
  1045. #else
  1046. #define __Pyx_RefNannySetupContext(name, acquire_gil)\
  1047. __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__)
  1048. #endif
  1049. #define __Pyx_RefNannyFinishContext()\
  1050. __Pyx_RefNanny->FinishContext(&__pyx_refnanny)
  1051. #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
  1052. #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
  1053. #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
  1054. #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__)
  1055. #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0)
  1056. #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0)
  1057. #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0)
  1058. #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0)
  1059. #else
  1060. #define __Pyx_RefNannyDeclarations
  1061. #define __Pyx_RefNannySetupContext(name, acquire_gil)
  1062. #define __Pyx_RefNannyFinishContext()
  1063. #define __Pyx_INCREF(r) Py_INCREF(r)
  1064. #define __Pyx_DECREF(r) Py_DECREF(r)
  1065. #define __Pyx_GOTREF(r)
  1066. #define __Pyx_GIVEREF(r)
  1067. #define __Pyx_XINCREF(r) Py_XINCREF(r)
  1068. #define __Pyx_XDECREF(r) Py_XDECREF(r)
  1069. #define __Pyx_XGOTREF(r)
  1070. #define __Pyx_XGIVEREF(r)
  1071. #endif
  1072. #define __Pyx_XDECREF_SET(r, v) do {\
  1073. PyObject *tmp = (PyObject *) r;\
  1074. r = v; __Pyx_XDECREF(tmp);\
  1075. } while (0)
  1076. #define __Pyx_DECREF_SET(r, v) do {\
  1077. PyObject *tmp = (PyObject *) r;\
  1078. r = v; __Pyx_DECREF(tmp);\
  1079. } while (0)
  1080. #define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0)
  1081. #define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0)
  1082. /* PyObjectGetAttrStr.proto */
  1083. #if CYTHON_USE_TYPE_SLOTS
  1084. static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) {
  1085. PyTypeObject* tp = Py_TYPE(obj);
  1086. if (likely(tp->tp_getattro))
  1087. return tp->tp_getattro(obj, attr_name);
  1088. #if PY_MAJOR_VERSION < 3
  1089. if (likely(tp->tp_getattr))
  1090. return tp->tp_getattr(obj, PyString_AS_STRING(attr_name));
  1091. #endif
  1092. return PyObject_GetAttr(obj, attr_name);
  1093. }
  1094. #else
  1095. #define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n)
  1096. #endif
  1097. /* GetBuiltinName.proto */
  1098. static PyObject *__Pyx_GetBuiltinName(PyObject *name);
  1099. /* GetModuleGlobalName.proto */
  1100. static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name);
  1101. /* PyObjectCall.proto */
  1102. #if CYTHON_COMPILING_IN_CPYTHON
  1103. static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw);
  1104. #else
  1105. #define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw)
  1106. #endif
  1107. /* ExtTypeTest.proto */
  1108. static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type);
  1109. /* PyThreadStateGet.proto */
  1110. #if CYTHON_FAST_THREAD_STATE
  1111. #define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate;
  1112. #define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current;
  1113. #define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type
  1114. #else
  1115. #define __Pyx_PyThreadState_declare
  1116. #define __Pyx_PyThreadState_assign
  1117. #define __Pyx_PyErr_Occurred() PyErr_Occurred()
  1118. #endif
  1119. /* PyErrFetchRestore.proto */
  1120. #if CYTHON_FAST_THREAD_STATE
  1121. #define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL)
  1122. #define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb)
  1123. #define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb)
  1124. #define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb)
  1125. #define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb)
  1126. static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb);
  1127. static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb);
  1128. #if CYTHON_COMPILING_IN_CPYTHON
  1129. #define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL))
  1130. #else
  1131. #define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc)
  1132. #endif
  1133. #else
  1134. #define __Pyx_PyErr_Clear() PyErr_Clear()
  1135. #define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc)
  1136. #define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb)
  1137. #define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb)
  1138. #define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb)
  1139. #define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb)
  1140. #define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb)
  1141. #define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb)
  1142. #endif
  1143. /* WriteUnraisableException.proto */
  1144. static void __Pyx_WriteUnraisable(const char *name, int clineno,
  1145. int lineno, const char *filename,
  1146. int full_traceback, int nogil);
  1147. /* RaiseArgTupleInvalid.proto */
  1148. static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
  1149. Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found);
  1150. /* RaiseDoubleKeywords.proto */
  1151. static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name);
  1152. /* ParseKeywords.proto */
  1153. static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\
  1154. PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\
  1155. const char* function_name);
  1156. /* ArgTypeTest.proto */
  1157. #define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\
  1158. ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\
  1159. __Pyx__ArgTypeTest(obj, type, name, exact))
  1160. static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact);
  1161. /* IsLittleEndian.proto */
  1162. static CYTHON_INLINE int __Pyx_Is_Little_Endian(void);
  1163. /* BufferFormatCheck.proto */
  1164. static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts);
  1165. static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx,
  1166. __Pyx_BufFmt_StackElem* stack,
  1167. __Pyx_TypeInfo* type);
  1168. /* BufferGetAndValidate.proto */
  1169. #define __Pyx_GetBufferAndValidate(buf, obj, dtype, flags, nd, cast, stack)\
  1170. ((obj == Py_None || obj == NULL) ?\
  1171. (__Pyx_ZeroBuffer(buf), 0) :\
  1172. __Pyx__GetBufferAndValidate(buf, obj, dtype, flags, nd, cast, stack))
  1173. static int __Pyx__GetBufferAndValidate(Py_buffer* buf, PyObject* obj,
  1174. __Pyx_TypeInfo* dtype, int flags, int nd, int cast, __Pyx_BufFmt_StackElem* stack);
  1175. static void __Pyx_ZeroBuffer(Py_buffer* buf);
  1176. static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info);
  1177. static Py_ssize_t __Pyx_minusones[] = { -1, -1, -1, -1, -1, -1, -1, -1 };
  1178. static Py_ssize_t __Pyx_zeros[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  1179. /* BufferFallbackError.proto */
  1180. static void __Pyx_RaiseBufferFallbackError(void);
  1181. /* GetItemInt.proto */
  1182. #define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
  1183. (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
  1184. __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) :\
  1185. (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\
  1186. __Pyx_GetItemInt_Generic(o, to_py_func(i))))
  1187. #define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
  1188. (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
  1189. __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\
  1190. (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL))
  1191. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i,
  1192. int wraparound, int boundscheck);
  1193. #define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
  1194. (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
  1195. __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) :\
  1196. (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL))
  1197. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i,
  1198. int wraparound, int boundscheck);
  1199. static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j);
  1200. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i,
  1201. int is_list, int wraparound, int boundscheck);
  1202. /* BufferIndexError.proto */
  1203. static void __Pyx_RaiseBufferIndexError(int axis);
  1204. #define __Pyx_BufPtrStrided1d(type, buf, i0, s0) (type)((char*)buf + i0 * s0)
  1205. /* SetItemInt.proto */
  1206. #define __Pyx_SetItemInt(o, i, v, type, is_signed, to_py_func, is_list, wraparound, boundscheck)\
  1207. (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\
  1208. __Pyx_SetItemInt_Fast(o, (Py_ssize_t)i, v, is_list, wraparound, boundscheck) :\
  1209. (is_list ? (PyErr_SetString(PyExc_IndexError, "list assignment index out of range"), -1) :\
  1210. __Pyx_SetItemInt_Generic(o, to_py_func(i), v)))
  1211. static int __Pyx_SetItemInt_Generic(PyObject *o, PyObject *j, PyObject *v);
  1212. static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v,
  1213. int is_list, int wraparound, int boundscheck);
  1214. /* PyCFunctionFastCall.proto */
  1215. #if CYTHON_FAST_PYCCALL
  1216. static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs);
  1217. #else
  1218. #define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL)
  1219. #endif
  1220. /* PyFunctionFastCall.proto */
  1221. #if CYTHON_FAST_PYCALL
  1222. #define __Pyx_PyFunction_FastCall(func, args, nargs)\
  1223. __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL)
  1224. #if 1 || PY_VERSION_HEX < 0x030600B1
  1225. static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs);
  1226. #else
  1227. #define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs)
  1228. #endif
  1229. #endif
  1230. /* PyObjectCallMethO.proto */
  1231. #if CYTHON_COMPILING_IN_CPYTHON
  1232. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg);
  1233. #endif
  1234. /* PyObjectCallOneArg.proto */
  1235. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg);
  1236. /* PyObjectCallNoArg.proto */
  1237. #if CYTHON_COMPILING_IN_CPYTHON
  1238. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func);
  1239. #else
  1240. #define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL)
  1241. #endif
  1242. /* RaiseException.proto */
  1243. static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause);
  1244. /* DictGetItem.proto */
  1245. #if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY
  1246. static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
  1247. PyObject *value;
  1248. value = PyDict_GetItemWithError(d, key);
  1249. if (unlikely(!value)) {
  1250. if (!PyErr_Occurred()) {
  1251. PyObject* args = PyTuple_Pack(1, key);
  1252. if (likely(args))
  1253. PyErr_SetObject(PyExc_KeyError, args);
  1254. Py_XDECREF(args);
  1255. }
  1256. return NULL;
  1257. }
  1258. Py_INCREF(value);
  1259. return value;
  1260. }
  1261. #else
  1262. #define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key)
  1263. #endif
  1264. /* RaiseTooManyValuesToUnpack.proto */
  1265. static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected);
  1266. /* RaiseNeedMoreValuesToUnpack.proto */
  1267. static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index);
  1268. /* RaiseNoneIterError.proto */
  1269. static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void);
  1270. /* SaveResetException.proto */
  1271. #if CYTHON_FAST_THREAD_STATE
  1272. #define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb)
  1273. static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb);
  1274. #define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb)
  1275. static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb);
  1276. #else
  1277. #define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb)
  1278. #define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb)
  1279. #endif
  1280. /* PyErrExceptionMatches.proto */
  1281. #if CYTHON_FAST_THREAD_STATE
  1282. #define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err)
  1283. static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err);
  1284. #else
  1285. #define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err)
  1286. #endif
  1287. /* GetException.proto */
  1288. #if CYTHON_FAST_THREAD_STATE
  1289. #define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb)
  1290. static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb);
  1291. #else
  1292. static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb);
  1293. #endif
  1294. /* Import.proto */
  1295. static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level);
  1296. /* CLineInTraceback.proto */
  1297. #ifdef CYTHON_CLINE_IN_TRACEBACK
  1298. #define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0)
  1299. #else
  1300. static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line);
  1301. #endif
  1302. /* CodeObjectCache.proto */
  1303. typedef struct {
  1304. PyCodeObject* code_object;
  1305. int code_line;
  1306. } __Pyx_CodeObjectCacheEntry;
  1307. struct __Pyx_CodeObjectCache {
  1308. int count;
  1309. int max_count;
  1310. __Pyx_CodeObjectCacheEntry* entries;
  1311. };
  1312. static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL};
  1313. static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line);
  1314. static PyCodeObject *__pyx_find_code_object(int code_line);
  1315. static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object);
  1316. /* AddTraceback.proto */
  1317. static void __Pyx_AddTraceback(const char *funcname, int c_line,
  1318. int py_line, const char *filename);
  1319. /* BufferStructDeclare.proto */
  1320. typedef struct {
  1321. Py_ssize_t shape, strides, suboffsets;
  1322. } __Pyx_Buf_DimInfo;
  1323. typedef struct {
  1324. size_t refcount;
  1325. Py_buffer pybuffer;
  1326. } __Pyx_Buffer;
  1327. typedef struct {
  1328. __Pyx_Buffer *rcbuffer;
  1329. char *data;
  1330. __Pyx_Buf_DimInfo diminfo[8];
  1331. } __Pyx_LocalBuf_ND;
  1332. #if PY_MAJOR_VERSION < 3
  1333. static int __Pyx_GetBuffer(PyObject *obj, Py_buffer *view, int flags);
  1334. static void __Pyx_ReleaseBuffer(Py_buffer *view);
  1335. #else
  1336. #define __Pyx_GetBuffer PyObject_GetBuffer
  1337. #define __Pyx_ReleaseBuffer PyBuffer_Release
  1338. #endif
  1339. /* CIntToPy.proto */
  1340. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_Py_intptr_t(Py_intptr_t value);
  1341. /* CIntToPy.proto */
  1342. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_npy_long(npy_long value);
  1343. /* FromPy.proto */
  1344. static __pyx_t_double_complex __Pyx_PyComplex_As___pyx_t_double_complex(PyObject*);
  1345. /* RealImag.proto */
  1346. #if CYTHON_CCOMPLEX
  1347. #ifdef __cplusplus
  1348. #define __Pyx_CREAL(z) ((z).real())
  1349. #define __Pyx_CIMAG(z) ((z).imag())
  1350. #else
  1351. #define __Pyx_CREAL(z) (__real__(z))
  1352. #define __Pyx_CIMAG(z) (__imag__(z))
  1353. #endif
  1354. #else
  1355. #define __Pyx_CREAL(z) ((z).real)
  1356. #define __Pyx_CIMAG(z) ((z).imag)
  1357. #endif
  1358. #if defined(__cplusplus) && CYTHON_CCOMPLEX\
  1359. && (defined(_WIN32) || defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 5 || __GNUC__ == 4 && __GNUC_MINOR__ >= 4 )) || __cplusplus >= 201103)
  1360. #define __Pyx_SET_CREAL(z,x) ((z).real(x))
  1361. #define __Pyx_SET_CIMAG(z,y) ((z).imag(y))
  1362. #else
  1363. #define __Pyx_SET_CREAL(z,x) __Pyx_CREAL(z) = (x)
  1364. #define __Pyx_SET_CIMAG(z,y) __Pyx_CIMAG(z) = (y)
  1365. #endif
  1366. /* Arithmetic.proto */
  1367. #if CYTHON_CCOMPLEX
  1368. #define __Pyx_c_eq_double(a, b) ((a)==(b))
  1369. #define __Pyx_c_sum_double(a, b) ((a)+(b))
  1370. #define __Pyx_c_diff_double(a, b) ((a)-(b))
  1371. #define __Pyx_c_prod_double(a, b) ((a)*(b))
  1372. #define __Pyx_c_quot_double(a, b) ((a)/(b))
  1373. #define __Pyx_c_neg_double(a) (-(a))
  1374. #ifdef __cplusplus
  1375. #define __Pyx_c_is_zero_double(z) ((z)==(double)0)
  1376. #define __Pyx_c_conj_double(z) (::std::conj(z))
  1377. #if 1
  1378. #define __Pyx_c_abs_double(z) (::std::abs(z))
  1379. #define __Pyx_c_pow_double(a, b) (::std::pow(a, b))
  1380. #endif
  1381. #else
  1382. #define __Pyx_c_is_zero_double(z) ((z)==0)
  1383. #define __Pyx_c_conj_double(z) (conj(z))
  1384. #if 1
  1385. #define __Pyx_c_abs_double(z) (cabs(z))
  1386. #define __Pyx_c_pow_double(a, b) (cpow(a, b))
  1387. #endif
  1388. #endif
  1389. #else
  1390. static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1391. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1392. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1393. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1394. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1395. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex);
  1396. static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex);
  1397. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex);
  1398. #if 1
  1399. static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex);
  1400. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex, __pyx_t_double_complex);
  1401. #endif
  1402. #endif
  1403. /* Arithmetic.proto */
  1404. #if CYTHON_CCOMPLEX
  1405. #define __Pyx_c_eq_float(a, b) ((a)==(b))
  1406. #define __Pyx_c_sum_float(a, b) ((a)+(b))
  1407. #define __Pyx_c_diff_float(a, b) ((a)-(b))
  1408. #define __Pyx_c_prod_float(a, b) ((a)*(b))
  1409. #define __Pyx_c_quot_float(a, b) ((a)/(b))
  1410. #define __Pyx_c_neg_float(a) (-(a))
  1411. #ifdef __cplusplus
  1412. #define __Pyx_c_is_zero_float(z) ((z)==(float)0)
  1413. #define __Pyx_c_conj_float(z) (::std::conj(z))
  1414. #if 1
  1415. #define __Pyx_c_abs_float(z) (::std::abs(z))
  1416. #define __Pyx_c_pow_float(a, b) (::std::pow(a, b))
  1417. #endif
  1418. #else
  1419. #define __Pyx_c_is_zero_float(z) ((z)==0)
  1420. #define __Pyx_c_conj_float(z) (conjf(z))
  1421. #if 1
  1422. #define __Pyx_c_abs_float(z) (cabsf(z))
  1423. #define __Pyx_c_pow_float(a, b) (cpowf(a, b))
  1424. #endif
  1425. #endif
  1426. #else
  1427. static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1428. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1429. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1430. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1431. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1432. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex);
  1433. static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex);
  1434. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex);
  1435. #if 1
  1436. static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex);
  1437. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex, __pyx_t_float_complex);
  1438. #endif
  1439. #endif
  1440. /* CIntToPy.proto */
  1441. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value);
  1442. /* CIntToPy.proto */
  1443. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value);
  1444. /* CIntFromPy.proto */
  1445. static CYTHON_INLINE npy_long __Pyx_PyInt_As_npy_long(PyObject *);
  1446. /* CIntFromPy.proto */
  1447. static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *);
  1448. /* CIntToPy.proto */
  1449. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value);
  1450. /* CIntFromPy.proto */
  1451. static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *);
  1452. /* FastTypeChecks.proto */
  1453. #if CYTHON_COMPILING_IN_CPYTHON
  1454. #define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type)
  1455. static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b);
  1456. static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type);
  1457. static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2);
  1458. #else
  1459. #define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type)
  1460. #define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type)
  1461. #define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2))
  1462. #endif
  1463. /* CheckBinaryVersion.proto */
  1464. static int __Pyx_check_binary_version(void);
  1465. /* PyIdentifierFromString.proto */
  1466. #if !defined(__Pyx_PyIdentifier_FromString)
  1467. #if PY_MAJOR_VERSION < 3
  1468. #define __Pyx_PyIdentifier_FromString(s) PyString_FromString(s)
  1469. #else
  1470. #define __Pyx_PyIdentifier_FromString(s) PyUnicode_FromString(s)
  1471. #endif
  1472. #endif
  1473. /* ModuleImport.proto */
  1474. static PyObject *__Pyx_ImportModule(const char *name);
  1475. /* TypeImport.proto */
  1476. static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict);
  1477. /* InitStrings.proto */
  1478. static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
  1479. /* Module declarations from 'cpython.buffer' */
  1480. /* Module declarations from 'libc.string' */
  1481. /* Module declarations from 'libc.stdio' */
  1482. /* Module declarations from '__builtin__' */
  1483. /* Module declarations from 'cpython.type' */
  1484. static PyTypeObject *__pyx_ptype_7cpython_4type_type = 0;
  1485. /* Module declarations from 'cpython' */
  1486. /* Module declarations from 'cpython.object' */
  1487. /* Module declarations from 'cpython.ref' */
  1488. /* Module declarations from 'cpython.mem' */
  1489. /* Module declarations from 'numpy' */
  1490. /* Module declarations from 'numpy' */
  1491. static PyTypeObject *__pyx_ptype_5numpy_dtype = 0;
  1492. static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0;
  1493. static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0;
  1494. static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0;
  1495. static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0;
  1496. static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *, char *, char *, int *); /*proto*/
  1497. /* Module declarations from 'libcpp.vector' */
  1498. /* Module declarations from 'scattnlay' */
  1499. static CYTHON_INLINE double *__pyx_f_9scattnlay_npy2c(PyArrayObject *); /*proto*/
  1500. static std::vector<double> __pyx_convert_vector_from_py_double(PyObject *); /*proto*/
  1501. static std::vector<__pyx_t_double_complex> __pyx_convert_vector_from_py___pyx_t_double_complex(PyObject *); /*proto*/
  1502. static __Pyx_TypeInfo __Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t = { "float64_t", NULL, sizeof(__pyx_t_5numpy_float64_t), { 0 }, 0, 'R', 0, 0 };
  1503. static __Pyx_TypeInfo __Pyx_TypeInfo___pyx_t_double_complex = { "double complex", NULL, sizeof(__pyx_t_double_complex), { 0 }, 0, 'C', 0, 0 };
  1504. static __Pyx_TypeInfo __Pyx_TypeInfo_nn___pyx_t_5numpy_int_t = { "int_t", NULL, sizeof(__pyx_t_5numpy_int_t), { 0 }, 0, IS_UNSIGNED(__pyx_t_5numpy_int_t) ? 'U' : 'I', IS_UNSIGNED(__pyx_t_5numpy_int_t), 0 };
  1505. #define __Pyx_MODULE_NAME "scattnlay"
  1506. extern int __pyx_module_is_main_scattnlay;
  1507. int __pyx_module_is_main_scattnlay = 0;
  1508. /* Implementation of 'scattnlay' */
  1509. static PyObject *__pyx_builtin_range;
  1510. static PyObject *__pyx_builtin_ValueError;
  1511. static PyObject *__pyx_builtin_RuntimeError;
  1512. static PyObject *__pyx_builtin_ImportError;
  1513. static const char __pyx_k_C[] = "C";
  1514. static const char __pyx_k_E[] = "E";
  1515. static const char __pyx_k_H[] = "H";
  1516. static const char __pyx_k_g[] = "g";
  1517. static const char __pyx_k_i[] = "i";
  1518. static const char __pyx_k_m[] = "m";
  1519. static const char __pyx_k_x[] = "x";
  1520. static const char __pyx_k_S1[] = "S1";
  1521. static const char __pyx_k_S2[] = "S2";
  1522. static const char __pyx_k_an[] = "an";
  1523. static const char __pyx_k_bn[] = "bn";
  1524. static const char __pyx_k_np[] = "np";
  1525. static const char __pyx_k_pl[] = "pl";
  1526. static const char __pyx_k_Eix[] = "Eix";
  1527. static const char __pyx_k_Eiy[] = "Eiy";
  1528. static const char __pyx_k_Eiz[] = "Eiz";
  1529. static const char __pyx_k_Erx[] = "Erx";
  1530. static const char __pyx_k_Ery[] = "Ery";
  1531. static const char __pyx_k_Erz[] = "Erz";
  1532. static const char __pyx_k_Hix[] = "Hix";
  1533. static const char __pyx_k_Hiy[] = "Hiy";
  1534. static const char __pyx_k_Hiz[] = "Hiz";
  1535. static const char __pyx_k_Hrx[] = "Hrx";
  1536. static const char __pyx_k_Hry[] = "Hry";
  1537. static const char __pyx_k_Hrz[] = "Hrz";
  1538. static const char __pyx_k_Qbk[] = "Qbk";
  1539. static const char __pyx_k_Qpr[] = "Qpr";
  1540. static const char __pyx_k_S1i[] = "S1i";
  1541. static const char __pyx_k_S1r[] = "S1r";
  1542. static const char __pyx_k_S2i[] = "S2i";
  1543. static const char __pyx_k_S2r[] = "S2r";
  1544. static const char __pyx_k_ani[] = "ani";
  1545. static const char __pyx_k_anr[] = "anr";
  1546. static const char __pyx_k_bni[] = "bni";
  1547. static const char __pyx_k_bnr[] = "bnr";
  1548. static const char __pyx_k_int[] = "int";
  1549. static const char __pyx_k_Qabs[] = "Qabs";
  1550. static const char __pyx_k_Qext[] = "Qext";
  1551. static const char __pyx_k_Qsca[] = "Qsca";
  1552. static const char __pyx_k_copy[] = "copy";
  1553. static const char __pyx_k_main[] = "__main__";
  1554. static const char __pyx_k_nmax[] = "nmax";
  1555. static const char __pyx_k_test[] = "__test__";
  1556. static const char __pyx_k_dtype[] = "dtype";
  1557. static const char __pyx_k_flags[] = "flags";
  1558. static const char __pyx_k_numpy[] = "numpy";
  1559. static const char __pyx_k_range[] = "range";
  1560. static const char __pyx_k_terms[] = "terms";
  1561. static const char __pyx_k_theta[] = "theta";
  1562. static const char __pyx_k_zeros[] = "zeros";
  1563. static const char __pyx_k_Albedo[] = "Albedo";
  1564. static const char __pyx_k_coords[] = "coords";
  1565. static const char __pyx_k_import[] = "__import__";
  1566. static const char __pyx_k_mode_n[] = "mode_n";
  1567. static const char __pyx_k_vstack[] = "vstack";
  1568. static const char __pyx_k_float64[] = "float64";
  1569. static const char __pyx_k_fieldnlay[] = "fieldnlay";
  1570. static const char __pyx_k_mode_type[] = "mode_type";
  1571. static const char __pyx_k_scattnlay[] = "scattnlay";
  1572. static const char __pyx_k_transpose[] = "transpose";
  1573. static const char __pyx_k_ValueError[] = "ValueError";
  1574. static const char __pyx_k_complex128[] = "complex128";
  1575. static const char __pyx_k_ImportError[] = "ImportError";
  1576. static const char __pyx_k_scattcoeffs[] = "scattcoeffs";
  1577. static const char __pyx_k_C_CONTIGUOUS[] = "C_CONTIGUOUS";
  1578. static const char __pyx_k_RuntimeError[] = "RuntimeError";
  1579. static const char __pyx_k_scattnlay_pyx[] = "scattnlay.pyx";
  1580. static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback";
  1581. static const char __pyx_k_ndarray_is_not_C_contiguous[] = "ndarray is not C contiguous";
  1582. static const char __pyx_k_numpy_core_multiarray_failed_to[] = "numpy.core.multiarray failed to import";
  1583. static const char __pyx_k_unknown_dtype_code_in_numpy_pxd[] = "unknown dtype code in numpy.pxd (%d)";
  1584. static const char __pyx_k_Format_string_allocated_too_shor[] = "Format string allocated too short, see comment in numpy.pxd";
  1585. static const char __pyx_k_Non_native_byte_order_not_suppor[] = "Non-native byte order not supported";
  1586. static const char __pyx_k_ndarray_is_not_Fortran_contiguou[] = "ndarray is not Fortran contiguous";
  1587. static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import";
  1588. static const char __pyx_k_Format_string_allocated_too_shor_2[] = "Format string allocated too short.";
  1589. static PyObject *__pyx_n_s_Albedo;
  1590. static PyObject *__pyx_n_s_C;
  1591. static PyObject *__pyx_n_s_C_CONTIGUOUS;
  1592. static PyObject *__pyx_n_s_E;
  1593. static PyObject *__pyx_n_s_Eix;
  1594. static PyObject *__pyx_n_s_Eiy;
  1595. static PyObject *__pyx_n_s_Eiz;
  1596. static PyObject *__pyx_n_s_Erx;
  1597. static PyObject *__pyx_n_s_Ery;
  1598. static PyObject *__pyx_n_s_Erz;
  1599. static PyObject *__pyx_kp_u_Format_string_allocated_too_shor;
  1600. static PyObject *__pyx_kp_u_Format_string_allocated_too_shor_2;
  1601. static PyObject *__pyx_n_s_H;
  1602. static PyObject *__pyx_n_s_Hix;
  1603. static PyObject *__pyx_n_s_Hiy;
  1604. static PyObject *__pyx_n_s_Hiz;
  1605. static PyObject *__pyx_n_s_Hrx;
  1606. static PyObject *__pyx_n_s_Hry;
  1607. static PyObject *__pyx_n_s_Hrz;
  1608. static PyObject *__pyx_n_s_ImportError;
  1609. static PyObject *__pyx_kp_u_Non_native_byte_order_not_suppor;
  1610. static PyObject *__pyx_n_s_Qabs;
  1611. static PyObject *__pyx_n_s_Qbk;
  1612. static PyObject *__pyx_n_s_Qext;
  1613. static PyObject *__pyx_n_s_Qpr;
  1614. static PyObject *__pyx_n_s_Qsca;
  1615. static PyObject *__pyx_n_s_RuntimeError;
  1616. static PyObject *__pyx_n_s_S1;
  1617. static PyObject *__pyx_n_s_S1i;
  1618. static PyObject *__pyx_n_s_S1r;
  1619. static PyObject *__pyx_n_s_S2;
  1620. static PyObject *__pyx_n_s_S2i;
  1621. static PyObject *__pyx_n_s_S2r;
  1622. static PyObject *__pyx_n_s_ValueError;
  1623. static PyObject *__pyx_n_s_an;
  1624. static PyObject *__pyx_n_s_ani;
  1625. static PyObject *__pyx_n_s_anr;
  1626. static PyObject *__pyx_n_s_bn;
  1627. static PyObject *__pyx_n_s_bni;
  1628. static PyObject *__pyx_n_s_bnr;
  1629. static PyObject *__pyx_n_s_cline_in_traceback;
  1630. static PyObject *__pyx_n_s_complex128;
  1631. static PyObject *__pyx_n_s_coords;
  1632. static PyObject *__pyx_n_s_copy;
  1633. static PyObject *__pyx_n_s_dtype;
  1634. static PyObject *__pyx_n_s_fieldnlay;
  1635. static PyObject *__pyx_n_s_flags;
  1636. static PyObject *__pyx_n_s_float64;
  1637. static PyObject *__pyx_n_s_g;
  1638. static PyObject *__pyx_n_s_i;
  1639. static PyObject *__pyx_n_s_import;
  1640. static PyObject *__pyx_n_s_int;
  1641. static PyObject *__pyx_n_s_m;
  1642. static PyObject *__pyx_n_s_main;
  1643. static PyObject *__pyx_n_s_mode_n;
  1644. static PyObject *__pyx_n_s_mode_type;
  1645. static PyObject *__pyx_kp_u_ndarray_is_not_C_contiguous;
  1646. static PyObject *__pyx_kp_u_ndarray_is_not_Fortran_contiguou;
  1647. static PyObject *__pyx_n_s_nmax;
  1648. static PyObject *__pyx_n_s_np;
  1649. static PyObject *__pyx_n_s_numpy;
  1650. static PyObject *__pyx_kp_s_numpy_core_multiarray_failed_to;
  1651. static PyObject *__pyx_kp_s_numpy_core_umath_failed_to_impor;
  1652. static PyObject *__pyx_n_s_pl;
  1653. static PyObject *__pyx_n_s_range;
  1654. static PyObject *__pyx_n_s_scattcoeffs;
  1655. static PyObject *__pyx_n_s_scattnlay;
  1656. static PyObject *__pyx_kp_s_scattnlay_pyx;
  1657. static PyObject *__pyx_n_s_terms;
  1658. static PyObject *__pyx_n_s_test;
  1659. static PyObject *__pyx_n_s_theta;
  1660. static PyObject *__pyx_n_s_transpose;
  1661. static PyObject *__pyx_kp_u_unknown_dtype_code_in_numpy_pxd;
  1662. static PyObject *__pyx_n_s_vstack;
  1663. static PyObject *__pyx_n_s_x;
  1664. static PyObject *__pyx_n_s_zeros;
  1665. static PyObject *__pyx_pf_9scattnlay_scattcoeffs(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_pl); /* proto */
  1666. static PyObject *__pyx_pf_9scattnlay_2scattnlay(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, PyArrayObject *__pyx_v_theta, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_pl); /* proto */
  1667. static PyObject *__pyx_pf_9scattnlay_4fieldnlay(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, PyArrayObject *__pyx_v_coords, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_mode_n, __pyx_t_5numpy_int_t __pyx_v_mode_type, __pyx_t_5numpy_int_t __pyx_v_pl); /* proto */
  1668. static int __pyx_pf_5numpy_7ndarray___getbuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /* proto */
  1669. static void __pyx_pf_5numpy_7ndarray_2__releasebuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info); /* proto */
  1670. static PyObject *__pyx_int_0;
  1671. static PyObject *__pyx_int_1;
  1672. static PyObject *__pyx_int_2;
  1673. static PyObject *__pyx_int_3;
  1674. static PyArrayObject *__pyx_k__8;
  1675. static PyObject *__pyx_tuple_;
  1676. static PyObject *__pyx_tuple__2;
  1677. static PyObject *__pyx_tuple__3;
  1678. static PyObject *__pyx_tuple__4;
  1679. static PyObject *__pyx_tuple__5;
  1680. static PyObject *__pyx_tuple__6;
  1681. static PyObject *__pyx_tuple__7;
  1682. static PyObject *__pyx_tuple__9;
  1683. static PyObject *__pyx_slice__18;
  1684. static PyObject *__pyx_slice__21;
  1685. static PyObject *__pyx_slice__24;
  1686. static PyObject *__pyx_tuple__10;
  1687. static PyObject *__pyx_tuple__11;
  1688. static PyObject *__pyx_tuple__12;
  1689. static PyObject *__pyx_tuple__13;
  1690. static PyObject *__pyx_tuple__14;
  1691. static PyObject *__pyx_tuple__15;
  1692. static PyObject *__pyx_tuple__16;
  1693. static PyObject *__pyx_tuple__17;
  1694. static PyObject *__pyx_tuple__19;
  1695. static PyObject *__pyx_tuple__20;
  1696. static PyObject *__pyx_tuple__22;
  1697. static PyObject *__pyx_tuple__23;
  1698. static PyObject *__pyx_tuple__25;
  1699. static PyObject *__pyx_tuple__26;
  1700. static PyObject *__pyx_tuple__27;
  1701. static PyObject *__pyx_tuple__28;
  1702. static PyObject *__pyx_tuple__29;
  1703. static PyObject *__pyx_tuple__30;
  1704. static PyObject *__pyx_tuple__31;
  1705. static PyObject *__pyx_tuple__32;
  1706. static PyObject *__pyx_tuple__33;
  1707. static PyObject *__pyx_tuple__34;
  1708. static PyObject *__pyx_tuple__35;
  1709. static PyObject *__pyx_tuple__36;
  1710. static PyObject *__pyx_tuple__37;
  1711. static PyObject *__pyx_tuple__38;
  1712. static PyObject *__pyx_tuple__39;
  1713. static PyObject *__pyx_tuple__40;
  1714. static PyObject *__pyx_tuple__41;
  1715. static PyObject *__pyx_tuple__42;
  1716. static PyObject *__pyx_tuple__43;
  1717. static PyObject *__pyx_tuple__44;
  1718. static PyObject *__pyx_tuple__45;
  1719. static PyObject *__pyx_tuple__46;
  1720. static PyObject *__pyx_tuple__47;
  1721. static PyObject *__pyx_tuple__48;
  1722. static PyObject *__pyx_tuple__50;
  1723. static PyObject *__pyx_tuple__51;
  1724. static PyObject *__pyx_tuple__53;
  1725. static PyObject *__pyx_codeobj__49;
  1726. static PyObject *__pyx_codeobj__52;
  1727. static PyObject *__pyx_codeobj__54;
  1728. /* "scattnlay.pyx":35
  1729. * from libcpp.vector cimport complex
  1730. *
  1731. * cdef inline double *npy2c(np.ndarray a): # <<<<<<<<<<<<<<
  1732. * assert a.dtype == np.float64
  1733. *
  1734. */
  1735. static CYTHON_INLINE double *__pyx_f_9scattnlay_npy2c(PyArrayObject *__pyx_v_a) {
  1736. double *__pyx_r;
  1737. __Pyx_RefNannyDeclarations
  1738. PyObject *__pyx_t_1 = NULL;
  1739. PyObject *__pyx_t_2 = NULL;
  1740. PyObject *__pyx_t_3 = NULL;
  1741. int __pyx_t_4;
  1742. int __pyx_t_5;
  1743. __Pyx_RefNannySetupContext("npy2c", 0);
  1744. __Pyx_INCREF((PyObject *)__pyx_v_a);
  1745. /* "scattnlay.pyx":36
  1746. *
  1747. * cdef inline double *npy2c(np.ndarray a):
  1748. * assert a.dtype == np.float64 # <<<<<<<<<<<<<<
  1749. *
  1750. * if not (<object>a).flags["C_CONTIGUOUS"]: # Array is not contiguous, need to make contiguous copy
  1751. */
  1752. #ifndef CYTHON_WITHOUT_ASSERTIONS
  1753. if (unlikely(!Py_OptimizeFlag)) {
  1754. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_a), __pyx_n_s_dtype); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 36, __pyx_L1_error)
  1755. __Pyx_GOTREF(__pyx_t_1);
  1756. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error)
  1757. __Pyx_GOTREF(__pyx_t_2);
  1758. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 36, __pyx_L1_error)
  1759. __Pyx_GOTREF(__pyx_t_3);
  1760. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  1761. __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 36, __pyx_L1_error)
  1762. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  1763. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  1764. __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 36, __pyx_L1_error)
  1765. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  1766. if (unlikely(!__pyx_t_4)) {
  1767. PyErr_SetNone(PyExc_AssertionError);
  1768. __PYX_ERR(0, 36, __pyx_L1_error)
  1769. }
  1770. }
  1771. #endif
  1772. /* "scattnlay.pyx":38
  1773. * assert a.dtype == np.float64
  1774. *
  1775. * if not (<object>a).flags["C_CONTIGUOUS"]: # Array is not contiguous, need to make contiguous copy # <<<<<<<<<<<<<<
  1776. * a = a.copy('C')
  1777. *
  1778. */
  1779. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_a), __pyx_n_s_flags); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 38, __pyx_L1_error)
  1780. __Pyx_GOTREF(__pyx_t_2);
  1781. __pyx_t_3 = PyObject_GetItem(__pyx_t_2, __pyx_n_s_C_CONTIGUOUS); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 38, __pyx_L1_error)
  1782. __Pyx_GOTREF(__pyx_t_3);
  1783. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  1784. __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 38, __pyx_L1_error)
  1785. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  1786. __pyx_t_5 = ((!__pyx_t_4) != 0);
  1787. if (__pyx_t_5) {
  1788. /* "scattnlay.pyx":39
  1789. *
  1790. * if not (<object>a).flags["C_CONTIGUOUS"]: # Array is not contiguous, need to make contiguous copy
  1791. * a = a.copy('C') # <<<<<<<<<<<<<<
  1792. *
  1793. * # Return data pointer
  1794. */
  1795. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_a), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 39, __pyx_L1_error)
  1796. __Pyx_GOTREF(__pyx_t_3);
  1797. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple_, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 39, __pyx_L1_error)
  1798. __Pyx_GOTREF(__pyx_t_2);
  1799. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  1800. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 39, __pyx_L1_error)
  1801. __Pyx_DECREF_SET(__pyx_v_a, ((PyArrayObject *)__pyx_t_2));
  1802. __pyx_t_2 = 0;
  1803. /* "scattnlay.pyx":38
  1804. * assert a.dtype == np.float64
  1805. *
  1806. * if not (<object>a).flags["C_CONTIGUOUS"]: # Array is not contiguous, need to make contiguous copy # <<<<<<<<<<<<<<
  1807. * a = a.copy('C')
  1808. *
  1809. */
  1810. }
  1811. /* "scattnlay.pyx":42
  1812. *
  1813. * # Return data pointer
  1814. * return <double *>(a.data) # <<<<<<<<<<<<<<
  1815. *
  1816. * cdef extern from "py_nmie.h":
  1817. */
  1818. __pyx_r = ((double *)__pyx_v_a->data);
  1819. goto __pyx_L0;
  1820. /* "scattnlay.pyx":35
  1821. * from libcpp.vector cimport complex
  1822. *
  1823. * cdef inline double *npy2c(np.ndarray a): # <<<<<<<<<<<<<<
  1824. * assert a.dtype == np.float64
  1825. *
  1826. */
  1827. /* function exit code */
  1828. __pyx_L1_error:;
  1829. __Pyx_XDECREF(__pyx_t_1);
  1830. __Pyx_XDECREF(__pyx_t_2);
  1831. __Pyx_XDECREF(__pyx_t_3);
  1832. __Pyx_WriteUnraisable("scattnlay.npy2c", __pyx_clineno, __pyx_lineno, __pyx_filename, 1, 0);
  1833. __pyx_r = 0;
  1834. __pyx_L0:;
  1835. __Pyx_XDECREF((PyObject *)__pyx_v_a);
  1836. __Pyx_RefNannyFinishContext();
  1837. return __pyx_r;
  1838. }
  1839. /* "scattnlay.pyx":49
  1840. * cdef int nField(int L, int pl, vector[double] x, vector[complex] m, int nmax, int mode_n, int mode_type, int nCoords, vector[double] Xp, vector[double] Yp, vector[double] Zp, double Erx[], double Ery[], double Erz[], double Eix[], double Eiy[], double Eiz[], double Hrx[], double Hry[], double Hrz[], double Hix[], double Hiy[], double Hiz[])
  1841. *
  1842. * def scattcoeffs(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.int_t nmax, np.int_t pl = -1): # <<<<<<<<<<<<<<
  1843. * cdef Py_ssize_t i
  1844. *
  1845. */
  1846. /* Python wrapper */
  1847. static PyObject *__pyx_pw_9scattnlay_1scattcoeffs(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
  1848. static PyMethodDef __pyx_mdef_9scattnlay_1scattcoeffs = {"scattcoeffs", (PyCFunction)__pyx_pw_9scattnlay_1scattcoeffs, METH_VARARGS|METH_KEYWORDS, 0};
  1849. static PyObject *__pyx_pw_9scattnlay_1scattcoeffs(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
  1850. PyArrayObject *__pyx_v_x = 0;
  1851. PyArrayObject *__pyx_v_m = 0;
  1852. __pyx_t_5numpy_int_t __pyx_v_nmax;
  1853. __pyx_t_5numpy_int_t __pyx_v_pl;
  1854. PyObject *__pyx_r = 0;
  1855. __Pyx_RefNannyDeclarations
  1856. __Pyx_RefNannySetupContext("scattcoeffs (wrapper)", 0);
  1857. {
  1858. static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_x,&__pyx_n_s_m,&__pyx_n_s_nmax,&__pyx_n_s_pl,0};
  1859. PyObject* values[4] = {0,0,0,0};
  1860. if (unlikely(__pyx_kwds)) {
  1861. Py_ssize_t kw_args;
  1862. const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
  1863. switch (pos_args) {
  1864. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  1865. CYTHON_FALLTHROUGH;
  1866. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  1867. CYTHON_FALLTHROUGH;
  1868. case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  1869. CYTHON_FALLTHROUGH;
  1870. case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  1871. CYTHON_FALLTHROUGH;
  1872. case 0: break;
  1873. default: goto __pyx_L5_argtuple_error;
  1874. }
  1875. kw_args = PyDict_Size(__pyx_kwds);
  1876. switch (pos_args) {
  1877. case 0:
  1878. if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_x)) != 0)) kw_args--;
  1879. else goto __pyx_L5_argtuple_error;
  1880. CYTHON_FALLTHROUGH;
  1881. case 1:
  1882. if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_m)) != 0)) kw_args--;
  1883. else {
  1884. __Pyx_RaiseArgtupleInvalid("scattcoeffs", 0, 3, 4, 1); __PYX_ERR(0, 49, __pyx_L3_error)
  1885. }
  1886. CYTHON_FALLTHROUGH;
  1887. case 2:
  1888. if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_nmax)) != 0)) kw_args--;
  1889. else {
  1890. __Pyx_RaiseArgtupleInvalid("scattcoeffs", 0, 3, 4, 2); __PYX_ERR(0, 49, __pyx_L3_error)
  1891. }
  1892. CYTHON_FALLTHROUGH;
  1893. case 3:
  1894. if (kw_args > 0) {
  1895. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_pl);
  1896. if (value) { values[3] = value; kw_args--; }
  1897. }
  1898. }
  1899. if (unlikely(kw_args > 0)) {
  1900. if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "scattcoeffs") < 0)) __PYX_ERR(0, 49, __pyx_L3_error)
  1901. }
  1902. } else {
  1903. switch (PyTuple_GET_SIZE(__pyx_args)) {
  1904. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  1905. CYTHON_FALLTHROUGH;
  1906. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  1907. values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  1908. values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  1909. break;
  1910. default: goto __pyx_L5_argtuple_error;
  1911. }
  1912. }
  1913. __pyx_v_x = ((PyArrayObject *)values[0]);
  1914. __pyx_v_m = ((PyArrayObject *)values[1]);
  1915. __pyx_v_nmax = __Pyx_PyInt_As_npy_long(values[2]); if (unlikely((__pyx_v_nmax == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 49, __pyx_L3_error)
  1916. if (values[3]) {
  1917. __pyx_v_pl = __Pyx_PyInt_As_npy_long(values[3]); if (unlikely((__pyx_v_pl == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 49, __pyx_L3_error)
  1918. } else {
  1919. __pyx_v_pl = ((__pyx_t_5numpy_int_t)-1L);
  1920. }
  1921. }
  1922. goto __pyx_L4_argument_unpacking_done;
  1923. __pyx_L5_argtuple_error:;
  1924. __Pyx_RaiseArgtupleInvalid("scattcoeffs", 0, 3, 4, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 49, __pyx_L3_error)
  1925. __pyx_L3_error:;
  1926. __Pyx_AddTraceback("scattnlay.scattcoeffs", __pyx_clineno, __pyx_lineno, __pyx_filename);
  1927. __Pyx_RefNannyFinishContext();
  1928. return NULL;
  1929. __pyx_L4_argument_unpacking_done:;
  1930. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_x), __pyx_ptype_5numpy_ndarray, 1, "x", 0))) __PYX_ERR(0, 49, __pyx_L1_error)
  1931. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_5numpy_ndarray, 1, "m", 0))) __PYX_ERR(0, 49, __pyx_L1_error)
  1932. __pyx_r = __pyx_pf_9scattnlay_scattcoeffs(__pyx_self, __pyx_v_x, __pyx_v_m, __pyx_v_nmax, __pyx_v_pl);
  1933. /* function exit code */
  1934. goto __pyx_L0;
  1935. __pyx_L1_error:;
  1936. __pyx_r = NULL;
  1937. __pyx_L0:;
  1938. __Pyx_RefNannyFinishContext();
  1939. return __pyx_r;
  1940. }
  1941. static PyObject *__pyx_pf_9scattnlay_scattcoeffs(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_pl) {
  1942. Py_ssize_t __pyx_v_i;
  1943. PyArrayObject *__pyx_v_terms = 0;
  1944. PyArrayObject *__pyx_v_an = 0;
  1945. PyArrayObject *__pyx_v_bn = 0;
  1946. PyArrayObject *__pyx_v_anr = 0;
  1947. PyArrayObject *__pyx_v_ani = 0;
  1948. PyArrayObject *__pyx_v_bnr = 0;
  1949. PyArrayObject *__pyx_v_bni = 0;
  1950. __Pyx_LocalBuf_ND __pyx_pybuffernd_an;
  1951. __Pyx_Buffer __pyx_pybuffer_an;
  1952. __Pyx_LocalBuf_ND __pyx_pybuffernd_ani;
  1953. __Pyx_Buffer __pyx_pybuffer_ani;
  1954. __Pyx_LocalBuf_ND __pyx_pybuffernd_anr;
  1955. __Pyx_Buffer __pyx_pybuffer_anr;
  1956. __Pyx_LocalBuf_ND __pyx_pybuffernd_bn;
  1957. __Pyx_Buffer __pyx_pybuffer_bn;
  1958. __Pyx_LocalBuf_ND __pyx_pybuffernd_bni;
  1959. __Pyx_Buffer __pyx_pybuffer_bni;
  1960. __Pyx_LocalBuf_ND __pyx_pybuffernd_bnr;
  1961. __Pyx_Buffer __pyx_pybuffer_bnr;
  1962. __Pyx_LocalBuf_ND __pyx_pybuffernd_m;
  1963. __Pyx_Buffer __pyx_pybuffer_m;
  1964. __Pyx_LocalBuf_ND __pyx_pybuffernd_terms;
  1965. __Pyx_Buffer __pyx_pybuffer_terms;
  1966. __Pyx_LocalBuf_ND __pyx_pybuffernd_x;
  1967. __Pyx_Buffer __pyx_pybuffer_x;
  1968. PyObject *__pyx_r = NULL;
  1969. __Pyx_RefNannyDeclarations
  1970. PyObject *__pyx_t_1 = NULL;
  1971. PyObject *__pyx_t_2 = NULL;
  1972. PyObject *__pyx_t_3 = NULL;
  1973. PyObject *__pyx_t_4 = NULL;
  1974. PyObject *__pyx_t_5 = NULL;
  1975. PyArrayObject *__pyx_t_6 = NULL;
  1976. PyArrayObject *__pyx_t_7 = NULL;
  1977. PyArrayObject *__pyx_t_8 = NULL;
  1978. npy_intp __pyx_t_9;
  1979. Py_ssize_t __pyx_t_10;
  1980. PyArrayObject *__pyx_t_11 = NULL;
  1981. int __pyx_t_12;
  1982. PyObject *__pyx_t_13 = NULL;
  1983. PyObject *__pyx_t_14 = NULL;
  1984. PyObject *__pyx_t_15 = NULL;
  1985. PyArrayObject *__pyx_t_16 = NULL;
  1986. PyArrayObject *__pyx_t_17 = NULL;
  1987. PyArrayObject *__pyx_t_18 = NULL;
  1988. std::vector<double> __pyx_t_19;
  1989. std::vector<__pyx_t_double_complex> __pyx_t_20;
  1990. Py_ssize_t __pyx_t_21;
  1991. __Pyx_RefNannySetupContext("scattcoeffs", 0);
  1992. __pyx_pybuffer_terms.pybuffer.buf = NULL;
  1993. __pyx_pybuffer_terms.refcount = 0;
  1994. __pyx_pybuffernd_terms.data = NULL;
  1995. __pyx_pybuffernd_terms.rcbuffer = &__pyx_pybuffer_terms;
  1996. __pyx_pybuffer_an.pybuffer.buf = NULL;
  1997. __pyx_pybuffer_an.refcount = 0;
  1998. __pyx_pybuffernd_an.data = NULL;
  1999. __pyx_pybuffernd_an.rcbuffer = &__pyx_pybuffer_an;
  2000. __pyx_pybuffer_bn.pybuffer.buf = NULL;
  2001. __pyx_pybuffer_bn.refcount = 0;
  2002. __pyx_pybuffernd_bn.data = NULL;
  2003. __pyx_pybuffernd_bn.rcbuffer = &__pyx_pybuffer_bn;
  2004. __pyx_pybuffer_anr.pybuffer.buf = NULL;
  2005. __pyx_pybuffer_anr.refcount = 0;
  2006. __pyx_pybuffernd_anr.data = NULL;
  2007. __pyx_pybuffernd_anr.rcbuffer = &__pyx_pybuffer_anr;
  2008. __pyx_pybuffer_ani.pybuffer.buf = NULL;
  2009. __pyx_pybuffer_ani.refcount = 0;
  2010. __pyx_pybuffernd_ani.data = NULL;
  2011. __pyx_pybuffernd_ani.rcbuffer = &__pyx_pybuffer_ani;
  2012. __pyx_pybuffer_bnr.pybuffer.buf = NULL;
  2013. __pyx_pybuffer_bnr.refcount = 0;
  2014. __pyx_pybuffernd_bnr.data = NULL;
  2015. __pyx_pybuffernd_bnr.rcbuffer = &__pyx_pybuffer_bnr;
  2016. __pyx_pybuffer_bni.pybuffer.buf = NULL;
  2017. __pyx_pybuffer_bni.refcount = 0;
  2018. __pyx_pybuffernd_bni.data = NULL;
  2019. __pyx_pybuffernd_bni.rcbuffer = &__pyx_pybuffer_bni;
  2020. __pyx_pybuffer_x.pybuffer.buf = NULL;
  2021. __pyx_pybuffer_x.refcount = 0;
  2022. __pyx_pybuffernd_x.data = NULL;
  2023. __pyx_pybuffernd_x.rcbuffer = &__pyx_pybuffer_x;
  2024. __pyx_pybuffer_m.pybuffer.buf = NULL;
  2025. __pyx_pybuffer_m.refcount = 0;
  2026. __pyx_pybuffernd_m.data = NULL;
  2027. __pyx_pybuffernd_m.rcbuffer = &__pyx_pybuffer_m;
  2028. {
  2029. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2030. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_x.rcbuffer->pybuffer, (PyObject*)__pyx_v_x, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 49, __pyx_L1_error)
  2031. }
  2032. __pyx_pybuffernd_x.diminfo[0].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_x.diminfo[0].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_x.diminfo[1].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_x.diminfo[1].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[1];
  2033. {
  2034. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2035. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_m.rcbuffer->pybuffer, (PyObject*)__pyx_v_m, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 49, __pyx_L1_error)
  2036. }
  2037. __pyx_pybuffernd_m.diminfo[0].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_m.diminfo[0].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_m.diminfo[1].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_m.diminfo[1].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[1];
  2038. /* "scattnlay.pyx":52
  2039. * cdef Py_ssize_t i
  2040. *
  2041. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int) # <<<<<<<<<<<<<<
  2042. *
  2043. * cdef np.ndarray[np.complex128_t, ndim = 2] an = np.zeros((x.shape[0], nmax), dtype = np.complex128)
  2044. */
  2045. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error)
  2046. __Pyx_GOTREF(__pyx_t_1);
  2047. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 52, __pyx_L1_error)
  2048. __Pyx_GOTREF(__pyx_t_2);
  2049. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2050. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error)
  2051. __Pyx_GOTREF(__pyx_t_1);
  2052. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 52, __pyx_L1_error)
  2053. __Pyx_GOTREF(__pyx_t_3);
  2054. __Pyx_GIVEREF(__pyx_t_1);
  2055. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  2056. __pyx_t_1 = 0;
  2057. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 52, __pyx_L1_error)
  2058. __Pyx_GOTREF(__pyx_t_1);
  2059. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 52, __pyx_L1_error)
  2060. __Pyx_GOTREF(__pyx_t_4);
  2061. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_int); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 52, __pyx_L1_error)
  2062. __Pyx_GOTREF(__pyx_t_5);
  2063. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2064. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 52, __pyx_L1_error)
  2065. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2066. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 52, __pyx_L1_error)
  2067. __Pyx_GOTREF(__pyx_t_5);
  2068. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2069. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2070. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2071. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 52, __pyx_L1_error)
  2072. __pyx_t_6 = ((PyArrayObject *)__pyx_t_5);
  2073. {
  2074. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2075. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_terms.rcbuffer->pybuffer, (PyObject*)__pyx_t_6, &__Pyx_TypeInfo_nn___pyx_t_5numpy_int_t, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 1, 0, __pyx_stack) == -1)) {
  2076. __pyx_v_terms = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf = NULL;
  2077. __PYX_ERR(0, 52, __pyx_L1_error)
  2078. } else {__pyx_pybuffernd_terms.diminfo[0].strides = __pyx_pybuffernd_terms.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_terms.diminfo[0].shape = __pyx_pybuffernd_terms.rcbuffer->pybuffer.shape[0];
  2079. }
  2080. }
  2081. __pyx_t_6 = 0;
  2082. __pyx_v_terms = ((PyArrayObject *)__pyx_t_5);
  2083. __pyx_t_5 = 0;
  2084. /* "scattnlay.pyx":54
  2085. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int)
  2086. *
  2087. * cdef np.ndarray[np.complex128_t, ndim = 2] an = np.zeros((x.shape[0], nmax), dtype = np.complex128) # <<<<<<<<<<<<<<
  2088. * cdef np.ndarray[np.complex128_t, ndim = 2] bn = np.zeros((x.shape[0], nmax), dtype = np.complex128)
  2089. *
  2090. */
  2091. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error)
  2092. __Pyx_GOTREF(__pyx_t_5);
  2093. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 54, __pyx_L1_error)
  2094. __Pyx_GOTREF(__pyx_t_1);
  2095. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2096. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error)
  2097. __Pyx_GOTREF(__pyx_t_5);
  2098. __pyx_t_3 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 54, __pyx_L1_error)
  2099. __Pyx_GOTREF(__pyx_t_3);
  2100. __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 54, __pyx_L1_error)
  2101. __Pyx_GOTREF(__pyx_t_2);
  2102. __Pyx_GIVEREF(__pyx_t_5);
  2103. PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5);
  2104. __Pyx_GIVEREF(__pyx_t_3);
  2105. PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3);
  2106. __pyx_t_5 = 0;
  2107. __pyx_t_3 = 0;
  2108. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 54, __pyx_L1_error)
  2109. __Pyx_GOTREF(__pyx_t_3);
  2110. __Pyx_GIVEREF(__pyx_t_2);
  2111. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  2112. __pyx_t_2 = 0;
  2113. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 54, __pyx_L1_error)
  2114. __Pyx_GOTREF(__pyx_t_2);
  2115. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error)
  2116. __Pyx_GOTREF(__pyx_t_5);
  2117. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_complex128); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 54, __pyx_L1_error)
  2118. __Pyx_GOTREF(__pyx_t_4);
  2119. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2120. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 54, __pyx_L1_error)
  2121. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2122. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 54, __pyx_L1_error)
  2123. __Pyx_GOTREF(__pyx_t_4);
  2124. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2125. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2126. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2127. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 54, __pyx_L1_error)
  2128. __pyx_t_7 = ((PyArrayObject *)__pyx_t_4);
  2129. {
  2130. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2131. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_an.rcbuffer->pybuffer, (PyObject*)__pyx_t_7, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) {
  2132. __pyx_v_an = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_an.rcbuffer->pybuffer.buf = NULL;
  2133. __PYX_ERR(0, 54, __pyx_L1_error)
  2134. } else {__pyx_pybuffernd_an.diminfo[0].strides = __pyx_pybuffernd_an.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_an.diminfo[0].shape = __pyx_pybuffernd_an.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_an.diminfo[1].strides = __pyx_pybuffernd_an.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_an.diminfo[1].shape = __pyx_pybuffernd_an.rcbuffer->pybuffer.shape[1];
  2135. }
  2136. }
  2137. __pyx_t_7 = 0;
  2138. __pyx_v_an = ((PyArrayObject *)__pyx_t_4);
  2139. __pyx_t_4 = 0;
  2140. /* "scattnlay.pyx":55
  2141. *
  2142. * cdef np.ndarray[np.complex128_t, ndim = 2] an = np.zeros((x.shape[0], nmax), dtype = np.complex128)
  2143. * cdef np.ndarray[np.complex128_t, ndim = 2] bn = np.zeros((x.shape[0], nmax), dtype = np.complex128) # <<<<<<<<<<<<<<
  2144. *
  2145. * cdef np.ndarray[np.float64_t, ndim = 1] anr
  2146. */
  2147. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 55, __pyx_L1_error)
  2148. __Pyx_GOTREF(__pyx_t_4);
  2149. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 55, __pyx_L1_error)
  2150. __Pyx_GOTREF(__pyx_t_2);
  2151. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2152. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 55, __pyx_L1_error)
  2153. __Pyx_GOTREF(__pyx_t_4);
  2154. __pyx_t_3 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 55, __pyx_L1_error)
  2155. __Pyx_GOTREF(__pyx_t_3);
  2156. __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 55, __pyx_L1_error)
  2157. __Pyx_GOTREF(__pyx_t_1);
  2158. __Pyx_GIVEREF(__pyx_t_4);
  2159. PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_4);
  2160. __Pyx_GIVEREF(__pyx_t_3);
  2161. PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3);
  2162. __pyx_t_4 = 0;
  2163. __pyx_t_3 = 0;
  2164. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 55, __pyx_L1_error)
  2165. __Pyx_GOTREF(__pyx_t_3);
  2166. __Pyx_GIVEREF(__pyx_t_1);
  2167. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  2168. __pyx_t_1 = 0;
  2169. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 55, __pyx_L1_error)
  2170. __Pyx_GOTREF(__pyx_t_1);
  2171. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 55, __pyx_L1_error)
  2172. __Pyx_GOTREF(__pyx_t_4);
  2173. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_complex128); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error)
  2174. __Pyx_GOTREF(__pyx_t_5);
  2175. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2176. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 55, __pyx_L1_error)
  2177. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2178. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error)
  2179. __Pyx_GOTREF(__pyx_t_5);
  2180. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2181. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2182. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2183. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 55, __pyx_L1_error)
  2184. __pyx_t_8 = ((PyArrayObject *)__pyx_t_5);
  2185. {
  2186. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2187. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_bn.rcbuffer->pybuffer, (PyObject*)__pyx_t_8, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) {
  2188. __pyx_v_bn = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_bn.rcbuffer->pybuffer.buf = NULL;
  2189. __PYX_ERR(0, 55, __pyx_L1_error)
  2190. } else {__pyx_pybuffernd_bn.diminfo[0].strides = __pyx_pybuffernd_bn.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_bn.diminfo[0].shape = __pyx_pybuffernd_bn.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_bn.diminfo[1].strides = __pyx_pybuffernd_bn.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_bn.diminfo[1].shape = __pyx_pybuffernd_bn.rcbuffer->pybuffer.shape[1];
  2191. }
  2192. }
  2193. __pyx_t_8 = 0;
  2194. __pyx_v_bn = ((PyArrayObject *)__pyx_t_5);
  2195. __pyx_t_5 = 0;
  2196. /* "scattnlay.pyx":62
  2197. * cdef np.ndarray[np.float64_t, ndim = 1] bni
  2198. *
  2199. * for i in range(x.shape[0]): # <<<<<<<<<<<<<<
  2200. * anr = np.zeros(nmax, dtype = np.float64)
  2201. * ani = np.zeros(nmax, dtype = np.float64)
  2202. */
  2203. __pyx_t_9 = (__pyx_v_x->dimensions[0]);
  2204. for (__pyx_t_10 = 0; __pyx_t_10 < __pyx_t_9; __pyx_t_10+=1) {
  2205. __pyx_v_i = __pyx_t_10;
  2206. /* "scattnlay.pyx":63
  2207. *
  2208. * for i in range(x.shape[0]):
  2209. * anr = np.zeros(nmax, dtype = np.float64) # <<<<<<<<<<<<<<
  2210. * ani = np.zeros(nmax, dtype = np.float64)
  2211. * bnr = np.zeros(nmax, dtype = np.float64)
  2212. */
  2213. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error)
  2214. __Pyx_GOTREF(__pyx_t_5);
  2215. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 63, __pyx_L1_error)
  2216. __Pyx_GOTREF(__pyx_t_1);
  2217. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2218. __pyx_t_5 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error)
  2219. __Pyx_GOTREF(__pyx_t_5);
  2220. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 63, __pyx_L1_error)
  2221. __Pyx_GOTREF(__pyx_t_3);
  2222. __Pyx_GIVEREF(__pyx_t_5);
  2223. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  2224. __pyx_t_5 = 0;
  2225. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error)
  2226. __Pyx_GOTREF(__pyx_t_5);
  2227. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error)
  2228. __Pyx_GOTREF(__pyx_t_2);
  2229. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 63, __pyx_L1_error)
  2230. __Pyx_GOTREF(__pyx_t_4);
  2231. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2232. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 63, __pyx_L1_error)
  2233. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2234. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 63, __pyx_L1_error)
  2235. __Pyx_GOTREF(__pyx_t_4);
  2236. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2237. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2238. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2239. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 63, __pyx_L1_error)
  2240. __pyx_t_11 = ((PyArrayObject *)__pyx_t_4);
  2241. {
  2242. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2243. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_anr.rcbuffer->pybuffer);
  2244. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_anr.rcbuffer->pybuffer, (PyObject*)__pyx_t_11, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  2245. if (unlikely(__pyx_t_12 < 0)) {
  2246. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  2247. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_anr.rcbuffer->pybuffer, (PyObject*)__pyx_v_anr, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  2248. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  2249. __Pyx_RaiseBufferFallbackError();
  2250. } else {
  2251. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  2252. }
  2253. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  2254. }
  2255. __pyx_pybuffernd_anr.diminfo[0].strides = __pyx_pybuffernd_anr.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_anr.diminfo[0].shape = __pyx_pybuffernd_anr.rcbuffer->pybuffer.shape[0];
  2256. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 63, __pyx_L1_error)
  2257. }
  2258. __pyx_t_11 = 0;
  2259. __Pyx_XDECREF_SET(__pyx_v_anr, ((PyArrayObject *)__pyx_t_4));
  2260. __pyx_t_4 = 0;
  2261. /* "scattnlay.pyx":64
  2262. * for i in range(x.shape[0]):
  2263. * anr = np.zeros(nmax, dtype = np.float64)
  2264. * ani = np.zeros(nmax, dtype = np.float64) # <<<<<<<<<<<<<<
  2265. * bnr = np.zeros(nmax, dtype = np.float64)
  2266. * bni = np.zeros(nmax, dtype = np.float64)
  2267. */
  2268. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 64, __pyx_L1_error)
  2269. __Pyx_GOTREF(__pyx_t_4);
  2270. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 64, __pyx_L1_error)
  2271. __Pyx_GOTREF(__pyx_t_5);
  2272. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2273. __pyx_t_4 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 64, __pyx_L1_error)
  2274. __Pyx_GOTREF(__pyx_t_4);
  2275. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 64, __pyx_L1_error)
  2276. __Pyx_GOTREF(__pyx_t_3);
  2277. __Pyx_GIVEREF(__pyx_t_4);
  2278. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  2279. __pyx_t_4 = 0;
  2280. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 64, __pyx_L1_error)
  2281. __Pyx_GOTREF(__pyx_t_4);
  2282. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 64, __pyx_L1_error)
  2283. __Pyx_GOTREF(__pyx_t_1);
  2284. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 64, __pyx_L1_error)
  2285. __Pyx_GOTREF(__pyx_t_2);
  2286. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2287. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 64, __pyx_L1_error)
  2288. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2289. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 64, __pyx_L1_error)
  2290. __Pyx_GOTREF(__pyx_t_2);
  2291. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2292. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2293. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2294. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 64, __pyx_L1_error)
  2295. __pyx_t_16 = ((PyArrayObject *)__pyx_t_2);
  2296. {
  2297. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2298. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_ani.rcbuffer->pybuffer);
  2299. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_ani.rcbuffer->pybuffer, (PyObject*)__pyx_t_16, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  2300. if (unlikely(__pyx_t_12 < 0)) {
  2301. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  2302. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_ani.rcbuffer->pybuffer, (PyObject*)__pyx_v_ani, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  2303. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  2304. __Pyx_RaiseBufferFallbackError();
  2305. } else {
  2306. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  2307. }
  2308. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  2309. }
  2310. __pyx_pybuffernd_ani.diminfo[0].strides = __pyx_pybuffernd_ani.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_ani.diminfo[0].shape = __pyx_pybuffernd_ani.rcbuffer->pybuffer.shape[0];
  2311. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 64, __pyx_L1_error)
  2312. }
  2313. __pyx_t_16 = 0;
  2314. __Pyx_XDECREF_SET(__pyx_v_ani, ((PyArrayObject *)__pyx_t_2));
  2315. __pyx_t_2 = 0;
  2316. /* "scattnlay.pyx":65
  2317. * anr = np.zeros(nmax, dtype = np.float64)
  2318. * ani = np.zeros(nmax, dtype = np.float64)
  2319. * bnr = np.zeros(nmax, dtype = np.float64) # <<<<<<<<<<<<<<
  2320. * bni = np.zeros(nmax, dtype = np.float64)
  2321. *
  2322. */
  2323. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error)
  2324. __Pyx_GOTREF(__pyx_t_2);
  2325. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 65, __pyx_L1_error)
  2326. __Pyx_GOTREF(__pyx_t_4);
  2327. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2328. __pyx_t_2 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error)
  2329. __Pyx_GOTREF(__pyx_t_2);
  2330. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 65, __pyx_L1_error)
  2331. __Pyx_GOTREF(__pyx_t_3);
  2332. __Pyx_GIVEREF(__pyx_t_2);
  2333. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  2334. __pyx_t_2 = 0;
  2335. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 65, __pyx_L1_error)
  2336. __Pyx_GOTREF(__pyx_t_2);
  2337. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 65, __pyx_L1_error)
  2338. __Pyx_GOTREF(__pyx_t_5);
  2339. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error)
  2340. __Pyx_GOTREF(__pyx_t_1);
  2341. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2342. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 65, __pyx_L1_error)
  2343. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2344. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error)
  2345. __Pyx_GOTREF(__pyx_t_1);
  2346. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2347. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2348. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2349. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 65, __pyx_L1_error)
  2350. __pyx_t_17 = ((PyArrayObject *)__pyx_t_1);
  2351. {
  2352. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2353. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bnr.rcbuffer->pybuffer);
  2354. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_bnr.rcbuffer->pybuffer, (PyObject*)__pyx_t_17, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  2355. if (unlikely(__pyx_t_12 < 0)) {
  2356. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  2357. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_bnr.rcbuffer->pybuffer, (PyObject*)__pyx_v_bnr, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  2358. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  2359. __Pyx_RaiseBufferFallbackError();
  2360. } else {
  2361. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  2362. }
  2363. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  2364. }
  2365. __pyx_pybuffernd_bnr.diminfo[0].strides = __pyx_pybuffernd_bnr.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_bnr.diminfo[0].shape = __pyx_pybuffernd_bnr.rcbuffer->pybuffer.shape[0];
  2366. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 65, __pyx_L1_error)
  2367. }
  2368. __pyx_t_17 = 0;
  2369. __Pyx_XDECREF_SET(__pyx_v_bnr, ((PyArrayObject *)__pyx_t_1));
  2370. __pyx_t_1 = 0;
  2371. /* "scattnlay.pyx":66
  2372. * ani = np.zeros(nmax, dtype = np.float64)
  2373. * bnr = np.zeros(nmax, dtype = np.float64)
  2374. * bni = np.zeros(nmax, dtype = np.float64) # <<<<<<<<<<<<<<
  2375. *
  2376. * terms[i] = ScattCoeffs(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, npy2c(anr), npy2c(ani), npy2c(bnr), npy2c(bni))
  2377. */
  2378. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error)
  2379. __Pyx_GOTREF(__pyx_t_1);
  2380. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 66, __pyx_L1_error)
  2381. __Pyx_GOTREF(__pyx_t_2);
  2382. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2383. __pyx_t_1 = __Pyx_PyInt_From_npy_long(__pyx_v_nmax); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error)
  2384. __Pyx_GOTREF(__pyx_t_1);
  2385. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 66, __pyx_L1_error)
  2386. __Pyx_GOTREF(__pyx_t_3);
  2387. __Pyx_GIVEREF(__pyx_t_1);
  2388. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  2389. __pyx_t_1 = 0;
  2390. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error)
  2391. __Pyx_GOTREF(__pyx_t_1);
  2392. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 66, __pyx_L1_error)
  2393. __Pyx_GOTREF(__pyx_t_4);
  2394. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 66, __pyx_L1_error)
  2395. __Pyx_GOTREF(__pyx_t_5);
  2396. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2397. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 66, __pyx_L1_error)
  2398. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2399. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 66, __pyx_L1_error)
  2400. __Pyx_GOTREF(__pyx_t_5);
  2401. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2402. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2403. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2404. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 66, __pyx_L1_error)
  2405. __pyx_t_18 = ((PyArrayObject *)__pyx_t_5);
  2406. {
  2407. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2408. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bni.rcbuffer->pybuffer);
  2409. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_bni.rcbuffer->pybuffer, (PyObject*)__pyx_t_18, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  2410. if (unlikely(__pyx_t_12 < 0)) {
  2411. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  2412. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_bni.rcbuffer->pybuffer, (PyObject*)__pyx_v_bni, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  2413. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  2414. __Pyx_RaiseBufferFallbackError();
  2415. } else {
  2416. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  2417. }
  2418. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  2419. }
  2420. __pyx_pybuffernd_bni.diminfo[0].strides = __pyx_pybuffernd_bni.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_bni.diminfo[0].shape = __pyx_pybuffernd_bni.rcbuffer->pybuffer.shape[0];
  2421. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 66, __pyx_L1_error)
  2422. }
  2423. __pyx_t_18 = 0;
  2424. __Pyx_XDECREF_SET(__pyx_v_bni, ((PyArrayObject *)__pyx_t_5));
  2425. __pyx_t_5 = 0;
  2426. /* "scattnlay.pyx":68
  2427. * bni = np.zeros(nmax, dtype = np.float64)
  2428. *
  2429. * terms[i] = ScattCoeffs(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, npy2c(anr), npy2c(ani), npy2c(bnr), npy2c(bni)) # <<<<<<<<<<<<<<
  2430. *
  2431. * an[i] = anr.copy('C') + 1.0j*ani.copy('C')
  2432. */
  2433. __pyx_t_5 = __Pyx_GetItemInt(((PyObject *)__pyx_v_x), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 68, __pyx_L1_error)
  2434. __Pyx_GOTREF(__pyx_t_5);
  2435. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 68, __pyx_L1_error)
  2436. __Pyx_GOTREF(__pyx_t_1);
  2437. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2438. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__2, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 68, __pyx_L1_error)
  2439. __Pyx_GOTREF(__pyx_t_5);
  2440. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2441. __pyx_t_19 = __pyx_convert_vector_from_py_double(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 68, __pyx_L1_error)
  2442. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2443. __pyx_t_5 = __Pyx_GetItemInt(((PyObject *)__pyx_v_m), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 68, __pyx_L1_error)
  2444. __Pyx_GOTREF(__pyx_t_5);
  2445. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 68, __pyx_L1_error)
  2446. __Pyx_GOTREF(__pyx_t_1);
  2447. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2448. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 68, __pyx_L1_error)
  2449. __Pyx_GOTREF(__pyx_t_5);
  2450. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2451. __pyx_t_20 = __pyx_convert_vector_from_py___pyx_t_double_complex(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 68, __pyx_L1_error)
  2452. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2453. __pyx_t_21 = __pyx_v_i;
  2454. __pyx_t_12 = -1;
  2455. if (__pyx_t_21 < 0) {
  2456. __pyx_t_21 += __pyx_pybuffernd_terms.diminfo[0].shape;
  2457. if (unlikely(__pyx_t_21 < 0)) __pyx_t_12 = 0;
  2458. } else if (unlikely(__pyx_t_21 >= __pyx_pybuffernd_terms.diminfo[0].shape)) __pyx_t_12 = 0;
  2459. if (unlikely(__pyx_t_12 != -1)) {
  2460. __Pyx_RaiseBufferIndexError(__pyx_t_12);
  2461. __PYX_ERR(0, 68, __pyx_L1_error)
  2462. }
  2463. *__Pyx_BufPtrStrided1d(__pyx_t_5numpy_int_t *, __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf, __pyx_t_21, __pyx_pybuffernd_terms.diminfo[0].strides) = ScattCoeffs((__pyx_v_x->dimensions[1]), __pyx_v_pl, __pyx_t_19, __pyx_t_20, __pyx_v_nmax, __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_anr)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_ani)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_bnr)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_bni)));
  2464. /* "scattnlay.pyx":70
  2465. * terms[i] = ScattCoeffs(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, npy2c(anr), npy2c(ani), npy2c(bnr), npy2c(bni))
  2466. *
  2467. * an[i] = anr.copy('C') + 1.0j*ani.copy('C') # <<<<<<<<<<<<<<
  2468. * bn[i] = bnr.copy('C') + 1.0j*bni.copy('C')
  2469. *
  2470. */
  2471. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_anr), __pyx_n_s_copy); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 70, __pyx_L1_error)
  2472. __Pyx_GOTREF(__pyx_t_5);
  2473. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error)
  2474. __Pyx_GOTREF(__pyx_t_1);
  2475. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2476. __pyx_t_5 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 70, __pyx_L1_error)
  2477. __Pyx_GOTREF(__pyx_t_5);
  2478. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_ani), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 70, __pyx_L1_error)
  2479. __Pyx_GOTREF(__pyx_t_3);
  2480. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__5, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error)
  2481. __Pyx_GOTREF(__pyx_t_2);
  2482. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2483. __pyx_t_3 = PyNumber_Multiply(__pyx_t_5, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 70, __pyx_L1_error)
  2484. __Pyx_GOTREF(__pyx_t_3);
  2485. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2486. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2487. __pyx_t_2 = PyNumber_Add(__pyx_t_1, __pyx_t_3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error)
  2488. __Pyx_GOTREF(__pyx_t_2);
  2489. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2490. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2491. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_an), __pyx_v_i, __pyx_t_2, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 70, __pyx_L1_error)
  2492. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2493. /* "scattnlay.pyx":71
  2494. *
  2495. * an[i] = anr.copy('C') + 1.0j*ani.copy('C')
  2496. * bn[i] = bnr.copy('C') + 1.0j*bni.copy('C') # <<<<<<<<<<<<<<
  2497. *
  2498. * return terms, an, bn
  2499. */
  2500. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_bnr), __pyx_n_s_copy); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 71, __pyx_L1_error)
  2501. __Pyx_GOTREF(__pyx_t_2);
  2502. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 71, __pyx_L1_error)
  2503. __Pyx_GOTREF(__pyx_t_3);
  2504. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2505. __pyx_t_2 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 71, __pyx_L1_error)
  2506. __Pyx_GOTREF(__pyx_t_2);
  2507. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_bni), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error)
  2508. __Pyx_GOTREF(__pyx_t_1);
  2509. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__7, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error)
  2510. __Pyx_GOTREF(__pyx_t_5);
  2511. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2512. __pyx_t_1 = PyNumber_Multiply(__pyx_t_2, __pyx_t_5); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 71, __pyx_L1_error)
  2513. __Pyx_GOTREF(__pyx_t_1);
  2514. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2515. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2516. __pyx_t_5 = PyNumber_Add(__pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error)
  2517. __Pyx_GOTREF(__pyx_t_5);
  2518. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2519. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2520. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_bn), __pyx_v_i, __pyx_t_5, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 71, __pyx_L1_error)
  2521. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2522. }
  2523. /* "scattnlay.pyx":73
  2524. * bn[i] = bnr.copy('C') + 1.0j*bni.copy('C')
  2525. *
  2526. * return terms, an, bn # <<<<<<<<<<<<<<
  2527. *
  2528. * def scattnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 1] theta = np.zeros(0, dtype = np.float64), np.int_t nmax = -1, np.int_t pl = -1):
  2529. */
  2530. __Pyx_XDECREF(__pyx_r);
  2531. __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 73, __pyx_L1_error)
  2532. __Pyx_GOTREF(__pyx_t_5);
  2533. __Pyx_INCREF(((PyObject *)__pyx_v_terms));
  2534. __Pyx_GIVEREF(((PyObject *)__pyx_v_terms));
  2535. PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_terms));
  2536. __Pyx_INCREF(((PyObject *)__pyx_v_an));
  2537. __Pyx_GIVEREF(((PyObject *)__pyx_v_an));
  2538. PyTuple_SET_ITEM(__pyx_t_5, 1, ((PyObject *)__pyx_v_an));
  2539. __Pyx_INCREF(((PyObject *)__pyx_v_bn));
  2540. __Pyx_GIVEREF(((PyObject *)__pyx_v_bn));
  2541. PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)__pyx_v_bn));
  2542. __pyx_r = __pyx_t_5;
  2543. __pyx_t_5 = 0;
  2544. goto __pyx_L0;
  2545. /* "scattnlay.pyx":49
  2546. * cdef int nField(int L, int pl, vector[double] x, vector[complex] m, int nmax, int mode_n, int mode_type, int nCoords, vector[double] Xp, vector[double] Yp, vector[double] Zp, double Erx[], double Ery[], double Erz[], double Eix[], double Eiy[], double Eiz[], double Hrx[], double Hry[], double Hrz[], double Hix[], double Hiy[], double Hiz[])
  2547. *
  2548. * def scattcoeffs(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.int_t nmax, np.int_t pl = -1): # <<<<<<<<<<<<<<
  2549. * cdef Py_ssize_t i
  2550. *
  2551. */
  2552. /* function exit code */
  2553. __pyx_L1_error:;
  2554. __Pyx_XDECREF(__pyx_t_1);
  2555. __Pyx_XDECREF(__pyx_t_2);
  2556. __Pyx_XDECREF(__pyx_t_3);
  2557. __Pyx_XDECREF(__pyx_t_4);
  2558. __Pyx_XDECREF(__pyx_t_5);
  2559. { PyObject *__pyx_type, *__pyx_value, *__pyx_tb;
  2560. __Pyx_PyThreadState_declare
  2561. __Pyx_PyThreadState_assign
  2562. __Pyx_ErrFetch(&__pyx_type, &__pyx_value, &__pyx_tb);
  2563. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_an.rcbuffer->pybuffer);
  2564. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_ani.rcbuffer->pybuffer);
  2565. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_anr.rcbuffer->pybuffer);
  2566. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bn.rcbuffer->pybuffer);
  2567. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bni.rcbuffer->pybuffer);
  2568. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bnr.rcbuffer->pybuffer);
  2569. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  2570. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  2571. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  2572. __Pyx_ErrRestore(__pyx_type, __pyx_value, __pyx_tb);}
  2573. __Pyx_AddTraceback("scattnlay.scattcoeffs", __pyx_clineno, __pyx_lineno, __pyx_filename);
  2574. __pyx_r = NULL;
  2575. goto __pyx_L2;
  2576. __pyx_L0:;
  2577. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_an.rcbuffer->pybuffer);
  2578. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_ani.rcbuffer->pybuffer);
  2579. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_anr.rcbuffer->pybuffer);
  2580. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bn.rcbuffer->pybuffer);
  2581. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bni.rcbuffer->pybuffer);
  2582. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_bnr.rcbuffer->pybuffer);
  2583. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  2584. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  2585. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  2586. __pyx_L2:;
  2587. __Pyx_XDECREF((PyObject *)__pyx_v_terms);
  2588. __Pyx_XDECREF((PyObject *)__pyx_v_an);
  2589. __Pyx_XDECREF((PyObject *)__pyx_v_bn);
  2590. __Pyx_XDECREF((PyObject *)__pyx_v_anr);
  2591. __Pyx_XDECREF((PyObject *)__pyx_v_ani);
  2592. __Pyx_XDECREF((PyObject *)__pyx_v_bnr);
  2593. __Pyx_XDECREF((PyObject *)__pyx_v_bni);
  2594. __Pyx_XGIVEREF(__pyx_r);
  2595. __Pyx_RefNannyFinishContext();
  2596. return __pyx_r;
  2597. }
  2598. /* "scattnlay.pyx":75
  2599. * return terms, an, bn
  2600. *
  2601. * def scattnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 1] theta = np.zeros(0, dtype = np.float64), np.int_t nmax = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  2602. * cdef Py_ssize_t i
  2603. *
  2604. */
  2605. /* Python wrapper */
  2606. static PyObject *__pyx_pw_9scattnlay_3scattnlay(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
  2607. static PyMethodDef __pyx_mdef_9scattnlay_3scattnlay = {"scattnlay", (PyCFunction)__pyx_pw_9scattnlay_3scattnlay, METH_VARARGS|METH_KEYWORDS, 0};
  2608. static PyObject *__pyx_pw_9scattnlay_3scattnlay(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
  2609. PyArrayObject *__pyx_v_x = 0;
  2610. PyArrayObject *__pyx_v_m = 0;
  2611. PyArrayObject *__pyx_v_theta = 0;
  2612. __pyx_t_5numpy_int_t __pyx_v_nmax;
  2613. __pyx_t_5numpy_int_t __pyx_v_pl;
  2614. PyObject *__pyx_r = 0;
  2615. __Pyx_RefNannyDeclarations
  2616. __Pyx_RefNannySetupContext("scattnlay (wrapper)", 0);
  2617. {
  2618. static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_x,&__pyx_n_s_m,&__pyx_n_s_theta,&__pyx_n_s_nmax,&__pyx_n_s_pl,0};
  2619. PyObject* values[5] = {0,0,0,0,0};
  2620. values[2] = (PyObject *)__pyx_k__8;
  2621. if (unlikely(__pyx_kwds)) {
  2622. Py_ssize_t kw_args;
  2623. const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
  2624. switch (pos_args) {
  2625. case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
  2626. CYTHON_FALLTHROUGH;
  2627. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  2628. CYTHON_FALLTHROUGH;
  2629. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  2630. CYTHON_FALLTHROUGH;
  2631. case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  2632. CYTHON_FALLTHROUGH;
  2633. case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  2634. CYTHON_FALLTHROUGH;
  2635. case 0: break;
  2636. default: goto __pyx_L5_argtuple_error;
  2637. }
  2638. kw_args = PyDict_Size(__pyx_kwds);
  2639. switch (pos_args) {
  2640. case 0:
  2641. if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_x)) != 0)) kw_args--;
  2642. else goto __pyx_L5_argtuple_error;
  2643. CYTHON_FALLTHROUGH;
  2644. case 1:
  2645. if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_m)) != 0)) kw_args--;
  2646. else {
  2647. __Pyx_RaiseArgtupleInvalid("scattnlay", 0, 2, 5, 1); __PYX_ERR(0, 75, __pyx_L3_error)
  2648. }
  2649. CYTHON_FALLTHROUGH;
  2650. case 2:
  2651. if (kw_args > 0) {
  2652. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_theta);
  2653. if (value) { values[2] = value; kw_args--; }
  2654. }
  2655. CYTHON_FALLTHROUGH;
  2656. case 3:
  2657. if (kw_args > 0) {
  2658. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_nmax);
  2659. if (value) { values[3] = value; kw_args--; }
  2660. }
  2661. CYTHON_FALLTHROUGH;
  2662. case 4:
  2663. if (kw_args > 0) {
  2664. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_pl);
  2665. if (value) { values[4] = value; kw_args--; }
  2666. }
  2667. }
  2668. if (unlikely(kw_args > 0)) {
  2669. if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "scattnlay") < 0)) __PYX_ERR(0, 75, __pyx_L3_error)
  2670. }
  2671. } else {
  2672. switch (PyTuple_GET_SIZE(__pyx_args)) {
  2673. case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
  2674. CYTHON_FALLTHROUGH;
  2675. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  2676. CYTHON_FALLTHROUGH;
  2677. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  2678. CYTHON_FALLTHROUGH;
  2679. case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  2680. values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  2681. break;
  2682. default: goto __pyx_L5_argtuple_error;
  2683. }
  2684. }
  2685. __pyx_v_x = ((PyArrayObject *)values[0]);
  2686. __pyx_v_m = ((PyArrayObject *)values[1]);
  2687. __pyx_v_theta = ((PyArrayObject *)values[2]);
  2688. if (values[3]) {
  2689. __pyx_v_nmax = __Pyx_PyInt_As_npy_long(values[3]); if (unlikely((__pyx_v_nmax == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 75, __pyx_L3_error)
  2690. } else {
  2691. __pyx_v_nmax = ((__pyx_t_5numpy_int_t)-1L);
  2692. }
  2693. if (values[4]) {
  2694. __pyx_v_pl = __Pyx_PyInt_As_npy_long(values[4]); if (unlikely((__pyx_v_pl == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 75, __pyx_L3_error)
  2695. } else {
  2696. __pyx_v_pl = ((__pyx_t_5numpy_int_t)-1L);
  2697. }
  2698. }
  2699. goto __pyx_L4_argument_unpacking_done;
  2700. __pyx_L5_argtuple_error:;
  2701. __Pyx_RaiseArgtupleInvalid("scattnlay", 0, 2, 5, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 75, __pyx_L3_error)
  2702. __pyx_L3_error:;
  2703. __Pyx_AddTraceback("scattnlay.scattnlay", __pyx_clineno, __pyx_lineno, __pyx_filename);
  2704. __Pyx_RefNannyFinishContext();
  2705. return NULL;
  2706. __pyx_L4_argument_unpacking_done:;
  2707. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_x), __pyx_ptype_5numpy_ndarray, 1, "x", 0))) __PYX_ERR(0, 75, __pyx_L1_error)
  2708. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_5numpy_ndarray, 1, "m", 0))) __PYX_ERR(0, 75, __pyx_L1_error)
  2709. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_theta), __pyx_ptype_5numpy_ndarray, 1, "theta", 0))) __PYX_ERR(0, 75, __pyx_L1_error)
  2710. __pyx_r = __pyx_pf_9scattnlay_2scattnlay(__pyx_self, __pyx_v_x, __pyx_v_m, __pyx_v_theta, __pyx_v_nmax, __pyx_v_pl);
  2711. /* function exit code */
  2712. goto __pyx_L0;
  2713. __pyx_L1_error:;
  2714. __pyx_r = NULL;
  2715. __pyx_L0:;
  2716. __Pyx_RefNannyFinishContext();
  2717. return __pyx_r;
  2718. }
  2719. static PyObject *__pyx_pf_9scattnlay_2scattnlay(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, PyArrayObject *__pyx_v_theta, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_pl) {
  2720. Py_ssize_t __pyx_v_i;
  2721. PyArrayObject *__pyx_v_terms = 0;
  2722. PyArrayObject *__pyx_v_Qext = 0;
  2723. PyArrayObject *__pyx_v_Qabs = 0;
  2724. PyArrayObject *__pyx_v_Qsca = 0;
  2725. PyArrayObject *__pyx_v_Qbk = 0;
  2726. PyArrayObject *__pyx_v_Qpr = 0;
  2727. PyArrayObject *__pyx_v_g = 0;
  2728. PyArrayObject *__pyx_v_Albedo = 0;
  2729. PyArrayObject *__pyx_v_S1 = 0;
  2730. PyArrayObject *__pyx_v_S2 = 0;
  2731. PyArrayObject *__pyx_v_S1r = 0;
  2732. PyArrayObject *__pyx_v_S1i = 0;
  2733. PyArrayObject *__pyx_v_S2r = 0;
  2734. PyArrayObject *__pyx_v_S2i = 0;
  2735. __Pyx_LocalBuf_ND __pyx_pybuffernd_Albedo;
  2736. __Pyx_Buffer __pyx_pybuffer_Albedo;
  2737. __Pyx_LocalBuf_ND __pyx_pybuffernd_Qabs;
  2738. __Pyx_Buffer __pyx_pybuffer_Qabs;
  2739. __Pyx_LocalBuf_ND __pyx_pybuffernd_Qbk;
  2740. __Pyx_Buffer __pyx_pybuffer_Qbk;
  2741. __Pyx_LocalBuf_ND __pyx_pybuffernd_Qext;
  2742. __Pyx_Buffer __pyx_pybuffer_Qext;
  2743. __Pyx_LocalBuf_ND __pyx_pybuffernd_Qpr;
  2744. __Pyx_Buffer __pyx_pybuffer_Qpr;
  2745. __Pyx_LocalBuf_ND __pyx_pybuffernd_Qsca;
  2746. __Pyx_Buffer __pyx_pybuffer_Qsca;
  2747. __Pyx_LocalBuf_ND __pyx_pybuffernd_S1;
  2748. __Pyx_Buffer __pyx_pybuffer_S1;
  2749. __Pyx_LocalBuf_ND __pyx_pybuffernd_S1i;
  2750. __Pyx_Buffer __pyx_pybuffer_S1i;
  2751. __Pyx_LocalBuf_ND __pyx_pybuffernd_S1r;
  2752. __Pyx_Buffer __pyx_pybuffer_S1r;
  2753. __Pyx_LocalBuf_ND __pyx_pybuffernd_S2;
  2754. __Pyx_Buffer __pyx_pybuffer_S2;
  2755. __Pyx_LocalBuf_ND __pyx_pybuffernd_S2i;
  2756. __Pyx_Buffer __pyx_pybuffer_S2i;
  2757. __Pyx_LocalBuf_ND __pyx_pybuffernd_S2r;
  2758. __Pyx_Buffer __pyx_pybuffer_S2r;
  2759. __Pyx_LocalBuf_ND __pyx_pybuffernd_g;
  2760. __Pyx_Buffer __pyx_pybuffer_g;
  2761. __Pyx_LocalBuf_ND __pyx_pybuffernd_m;
  2762. __Pyx_Buffer __pyx_pybuffer_m;
  2763. __Pyx_LocalBuf_ND __pyx_pybuffernd_terms;
  2764. __Pyx_Buffer __pyx_pybuffer_terms;
  2765. __Pyx_LocalBuf_ND __pyx_pybuffernd_theta;
  2766. __Pyx_Buffer __pyx_pybuffer_theta;
  2767. __Pyx_LocalBuf_ND __pyx_pybuffernd_x;
  2768. __Pyx_Buffer __pyx_pybuffer_x;
  2769. PyObject *__pyx_r = NULL;
  2770. __Pyx_RefNannyDeclarations
  2771. PyObject *__pyx_t_1 = NULL;
  2772. PyObject *__pyx_t_2 = NULL;
  2773. PyObject *__pyx_t_3 = NULL;
  2774. PyObject *__pyx_t_4 = NULL;
  2775. PyObject *__pyx_t_5 = NULL;
  2776. PyArrayObject *__pyx_t_6 = NULL;
  2777. PyArrayObject *__pyx_t_7 = NULL;
  2778. PyArrayObject *__pyx_t_8 = NULL;
  2779. PyArrayObject *__pyx_t_9 = NULL;
  2780. PyArrayObject *__pyx_t_10 = NULL;
  2781. PyArrayObject *__pyx_t_11 = NULL;
  2782. PyArrayObject *__pyx_t_12 = NULL;
  2783. PyArrayObject *__pyx_t_13 = NULL;
  2784. PyArrayObject *__pyx_t_14 = NULL;
  2785. PyArrayObject *__pyx_t_15 = NULL;
  2786. npy_intp __pyx_t_16;
  2787. Py_ssize_t __pyx_t_17;
  2788. PyArrayObject *__pyx_t_18 = NULL;
  2789. int __pyx_t_19;
  2790. PyObject *__pyx_t_20 = NULL;
  2791. PyObject *__pyx_t_21 = NULL;
  2792. PyObject *__pyx_t_22 = NULL;
  2793. PyArrayObject *__pyx_t_23 = NULL;
  2794. PyArrayObject *__pyx_t_24 = NULL;
  2795. PyArrayObject *__pyx_t_25 = NULL;
  2796. std::vector<double> __pyx_t_26;
  2797. std::vector<__pyx_t_double_complex> __pyx_t_27;
  2798. std::vector<double> __pyx_t_28;
  2799. Py_ssize_t __pyx_t_29;
  2800. Py_ssize_t __pyx_t_30;
  2801. Py_ssize_t __pyx_t_31;
  2802. Py_ssize_t __pyx_t_32;
  2803. Py_ssize_t __pyx_t_33;
  2804. Py_ssize_t __pyx_t_34;
  2805. Py_ssize_t __pyx_t_35;
  2806. Py_ssize_t __pyx_t_36;
  2807. __Pyx_RefNannySetupContext("scattnlay", 0);
  2808. __pyx_pybuffer_terms.pybuffer.buf = NULL;
  2809. __pyx_pybuffer_terms.refcount = 0;
  2810. __pyx_pybuffernd_terms.data = NULL;
  2811. __pyx_pybuffernd_terms.rcbuffer = &__pyx_pybuffer_terms;
  2812. __pyx_pybuffer_Qext.pybuffer.buf = NULL;
  2813. __pyx_pybuffer_Qext.refcount = 0;
  2814. __pyx_pybuffernd_Qext.data = NULL;
  2815. __pyx_pybuffernd_Qext.rcbuffer = &__pyx_pybuffer_Qext;
  2816. __pyx_pybuffer_Qabs.pybuffer.buf = NULL;
  2817. __pyx_pybuffer_Qabs.refcount = 0;
  2818. __pyx_pybuffernd_Qabs.data = NULL;
  2819. __pyx_pybuffernd_Qabs.rcbuffer = &__pyx_pybuffer_Qabs;
  2820. __pyx_pybuffer_Qsca.pybuffer.buf = NULL;
  2821. __pyx_pybuffer_Qsca.refcount = 0;
  2822. __pyx_pybuffernd_Qsca.data = NULL;
  2823. __pyx_pybuffernd_Qsca.rcbuffer = &__pyx_pybuffer_Qsca;
  2824. __pyx_pybuffer_Qbk.pybuffer.buf = NULL;
  2825. __pyx_pybuffer_Qbk.refcount = 0;
  2826. __pyx_pybuffernd_Qbk.data = NULL;
  2827. __pyx_pybuffernd_Qbk.rcbuffer = &__pyx_pybuffer_Qbk;
  2828. __pyx_pybuffer_Qpr.pybuffer.buf = NULL;
  2829. __pyx_pybuffer_Qpr.refcount = 0;
  2830. __pyx_pybuffernd_Qpr.data = NULL;
  2831. __pyx_pybuffernd_Qpr.rcbuffer = &__pyx_pybuffer_Qpr;
  2832. __pyx_pybuffer_g.pybuffer.buf = NULL;
  2833. __pyx_pybuffer_g.refcount = 0;
  2834. __pyx_pybuffernd_g.data = NULL;
  2835. __pyx_pybuffernd_g.rcbuffer = &__pyx_pybuffer_g;
  2836. __pyx_pybuffer_Albedo.pybuffer.buf = NULL;
  2837. __pyx_pybuffer_Albedo.refcount = 0;
  2838. __pyx_pybuffernd_Albedo.data = NULL;
  2839. __pyx_pybuffernd_Albedo.rcbuffer = &__pyx_pybuffer_Albedo;
  2840. __pyx_pybuffer_S1.pybuffer.buf = NULL;
  2841. __pyx_pybuffer_S1.refcount = 0;
  2842. __pyx_pybuffernd_S1.data = NULL;
  2843. __pyx_pybuffernd_S1.rcbuffer = &__pyx_pybuffer_S1;
  2844. __pyx_pybuffer_S2.pybuffer.buf = NULL;
  2845. __pyx_pybuffer_S2.refcount = 0;
  2846. __pyx_pybuffernd_S2.data = NULL;
  2847. __pyx_pybuffernd_S2.rcbuffer = &__pyx_pybuffer_S2;
  2848. __pyx_pybuffer_S1r.pybuffer.buf = NULL;
  2849. __pyx_pybuffer_S1r.refcount = 0;
  2850. __pyx_pybuffernd_S1r.data = NULL;
  2851. __pyx_pybuffernd_S1r.rcbuffer = &__pyx_pybuffer_S1r;
  2852. __pyx_pybuffer_S1i.pybuffer.buf = NULL;
  2853. __pyx_pybuffer_S1i.refcount = 0;
  2854. __pyx_pybuffernd_S1i.data = NULL;
  2855. __pyx_pybuffernd_S1i.rcbuffer = &__pyx_pybuffer_S1i;
  2856. __pyx_pybuffer_S2r.pybuffer.buf = NULL;
  2857. __pyx_pybuffer_S2r.refcount = 0;
  2858. __pyx_pybuffernd_S2r.data = NULL;
  2859. __pyx_pybuffernd_S2r.rcbuffer = &__pyx_pybuffer_S2r;
  2860. __pyx_pybuffer_S2i.pybuffer.buf = NULL;
  2861. __pyx_pybuffer_S2i.refcount = 0;
  2862. __pyx_pybuffernd_S2i.data = NULL;
  2863. __pyx_pybuffernd_S2i.rcbuffer = &__pyx_pybuffer_S2i;
  2864. __pyx_pybuffer_x.pybuffer.buf = NULL;
  2865. __pyx_pybuffer_x.refcount = 0;
  2866. __pyx_pybuffernd_x.data = NULL;
  2867. __pyx_pybuffernd_x.rcbuffer = &__pyx_pybuffer_x;
  2868. __pyx_pybuffer_m.pybuffer.buf = NULL;
  2869. __pyx_pybuffer_m.refcount = 0;
  2870. __pyx_pybuffernd_m.data = NULL;
  2871. __pyx_pybuffernd_m.rcbuffer = &__pyx_pybuffer_m;
  2872. __pyx_pybuffer_theta.pybuffer.buf = NULL;
  2873. __pyx_pybuffer_theta.refcount = 0;
  2874. __pyx_pybuffernd_theta.data = NULL;
  2875. __pyx_pybuffernd_theta.rcbuffer = &__pyx_pybuffer_theta;
  2876. {
  2877. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2878. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_x.rcbuffer->pybuffer, (PyObject*)__pyx_v_x, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 75, __pyx_L1_error)
  2879. }
  2880. __pyx_pybuffernd_x.diminfo[0].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_x.diminfo[0].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_x.diminfo[1].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_x.diminfo[1].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[1];
  2881. {
  2882. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2883. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_m.rcbuffer->pybuffer, (PyObject*)__pyx_v_m, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 75, __pyx_L1_error)
  2884. }
  2885. __pyx_pybuffernd_m.diminfo[0].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_m.diminfo[0].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_m.diminfo[1].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_m.diminfo[1].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[1];
  2886. {
  2887. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2888. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_theta.rcbuffer->pybuffer, (PyObject*)__pyx_v_theta, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) __PYX_ERR(0, 75, __pyx_L1_error)
  2889. }
  2890. __pyx_pybuffernd_theta.diminfo[0].strides = __pyx_pybuffernd_theta.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_theta.diminfo[0].shape = __pyx_pybuffernd_theta.rcbuffer->pybuffer.shape[0];
  2891. /* "scattnlay.pyx":78
  2892. * cdef Py_ssize_t i
  2893. *
  2894. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int) # <<<<<<<<<<<<<<
  2895. *
  2896. * cdef np.ndarray[np.float64_t, ndim = 1] Qext = np.zeros(x.shape[0], dtype = np.float64)
  2897. */
  2898. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error)
  2899. __Pyx_GOTREF(__pyx_t_1);
  2900. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 78, __pyx_L1_error)
  2901. __Pyx_GOTREF(__pyx_t_2);
  2902. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2903. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error)
  2904. __Pyx_GOTREF(__pyx_t_1);
  2905. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 78, __pyx_L1_error)
  2906. __Pyx_GOTREF(__pyx_t_3);
  2907. __Pyx_GIVEREF(__pyx_t_1);
  2908. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  2909. __pyx_t_1 = 0;
  2910. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error)
  2911. __Pyx_GOTREF(__pyx_t_1);
  2912. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 78, __pyx_L1_error)
  2913. __Pyx_GOTREF(__pyx_t_4);
  2914. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_int); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 78, __pyx_L1_error)
  2915. __Pyx_GOTREF(__pyx_t_5);
  2916. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2917. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 78, __pyx_L1_error)
  2918. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2919. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 78, __pyx_L1_error)
  2920. __Pyx_GOTREF(__pyx_t_5);
  2921. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2922. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2923. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2924. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 78, __pyx_L1_error)
  2925. __pyx_t_6 = ((PyArrayObject *)__pyx_t_5);
  2926. {
  2927. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2928. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_terms.rcbuffer->pybuffer, (PyObject*)__pyx_t_6, &__Pyx_TypeInfo_nn___pyx_t_5numpy_int_t, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 1, 0, __pyx_stack) == -1)) {
  2929. __pyx_v_terms = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf = NULL;
  2930. __PYX_ERR(0, 78, __pyx_L1_error)
  2931. } else {__pyx_pybuffernd_terms.diminfo[0].strides = __pyx_pybuffernd_terms.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_terms.diminfo[0].shape = __pyx_pybuffernd_terms.rcbuffer->pybuffer.shape[0];
  2932. }
  2933. }
  2934. __pyx_t_6 = 0;
  2935. __pyx_v_terms = ((PyArrayObject *)__pyx_t_5);
  2936. __pyx_t_5 = 0;
  2937. /* "scattnlay.pyx":80
  2938. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int)
  2939. *
  2940. * cdef np.ndarray[np.float64_t, ndim = 1] Qext = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  2941. * cdef np.ndarray[np.float64_t, ndim = 1] Qabs = np.zeros(x.shape[0], dtype = np.float64)
  2942. * cdef np.ndarray[np.float64_t, ndim = 1] Qsca = np.zeros(x.shape[0], dtype = np.float64)
  2943. */
  2944. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 80, __pyx_L1_error)
  2945. __Pyx_GOTREF(__pyx_t_5);
  2946. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 80, __pyx_L1_error)
  2947. __Pyx_GOTREF(__pyx_t_1);
  2948. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2949. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 80, __pyx_L1_error)
  2950. __Pyx_GOTREF(__pyx_t_5);
  2951. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 80, __pyx_L1_error)
  2952. __Pyx_GOTREF(__pyx_t_3);
  2953. __Pyx_GIVEREF(__pyx_t_5);
  2954. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  2955. __pyx_t_5 = 0;
  2956. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 80, __pyx_L1_error)
  2957. __Pyx_GOTREF(__pyx_t_5);
  2958. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 80, __pyx_L1_error)
  2959. __Pyx_GOTREF(__pyx_t_2);
  2960. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error)
  2961. __Pyx_GOTREF(__pyx_t_4);
  2962. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  2963. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 80, __pyx_L1_error)
  2964. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2965. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error)
  2966. __Pyx_GOTREF(__pyx_t_4);
  2967. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  2968. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  2969. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  2970. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 80, __pyx_L1_error)
  2971. __pyx_t_7 = ((PyArrayObject *)__pyx_t_4);
  2972. {
  2973. __Pyx_BufFmt_StackElem __pyx_stack[1];
  2974. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Qext.rcbuffer->pybuffer, (PyObject*)__pyx_t_7, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  2975. __pyx_v_Qext = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Qext.rcbuffer->pybuffer.buf = NULL;
  2976. __PYX_ERR(0, 80, __pyx_L1_error)
  2977. } else {__pyx_pybuffernd_Qext.diminfo[0].strides = __pyx_pybuffernd_Qext.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Qext.diminfo[0].shape = __pyx_pybuffernd_Qext.rcbuffer->pybuffer.shape[0];
  2978. }
  2979. }
  2980. __pyx_t_7 = 0;
  2981. __pyx_v_Qext = ((PyArrayObject *)__pyx_t_4);
  2982. __pyx_t_4 = 0;
  2983. /* "scattnlay.pyx":81
  2984. *
  2985. * cdef np.ndarray[np.float64_t, ndim = 1] Qext = np.zeros(x.shape[0], dtype = np.float64)
  2986. * cdef np.ndarray[np.float64_t, ndim = 1] Qabs = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  2987. * cdef np.ndarray[np.float64_t, ndim = 1] Qsca = np.zeros(x.shape[0], dtype = np.float64)
  2988. * cdef np.ndarray[np.float64_t, ndim = 1] Qbk = np.zeros(x.shape[0], dtype = np.float64)
  2989. */
  2990. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 81, __pyx_L1_error)
  2991. __Pyx_GOTREF(__pyx_t_4);
  2992. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 81, __pyx_L1_error)
  2993. __Pyx_GOTREF(__pyx_t_5);
  2994. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  2995. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 81, __pyx_L1_error)
  2996. __Pyx_GOTREF(__pyx_t_4);
  2997. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 81, __pyx_L1_error)
  2998. __Pyx_GOTREF(__pyx_t_3);
  2999. __Pyx_GIVEREF(__pyx_t_4);
  3000. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  3001. __pyx_t_4 = 0;
  3002. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 81, __pyx_L1_error)
  3003. __Pyx_GOTREF(__pyx_t_4);
  3004. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 81, __pyx_L1_error)
  3005. __Pyx_GOTREF(__pyx_t_1);
  3006. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 81, __pyx_L1_error)
  3007. __Pyx_GOTREF(__pyx_t_2);
  3008. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3009. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 81, __pyx_L1_error)
  3010. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3011. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 81, __pyx_L1_error)
  3012. __Pyx_GOTREF(__pyx_t_2);
  3013. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3014. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3015. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3016. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 81, __pyx_L1_error)
  3017. __pyx_t_8 = ((PyArrayObject *)__pyx_t_2);
  3018. {
  3019. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3020. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Qabs.rcbuffer->pybuffer, (PyObject*)__pyx_t_8, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3021. __pyx_v_Qabs = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Qabs.rcbuffer->pybuffer.buf = NULL;
  3022. __PYX_ERR(0, 81, __pyx_L1_error)
  3023. } else {__pyx_pybuffernd_Qabs.diminfo[0].strides = __pyx_pybuffernd_Qabs.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Qabs.diminfo[0].shape = __pyx_pybuffernd_Qabs.rcbuffer->pybuffer.shape[0];
  3024. }
  3025. }
  3026. __pyx_t_8 = 0;
  3027. __pyx_v_Qabs = ((PyArrayObject *)__pyx_t_2);
  3028. __pyx_t_2 = 0;
  3029. /* "scattnlay.pyx":82
  3030. * cdef np.ndarray[np.float64_t, ndim = 1] Qext = np.zeros(x.shape[0], dtype = np.float64)
  3031. * cdef np.ndarray[np.float64_t, ndim = 1] Qabs = np.zeros(x.shape[0], dtype = np.float64)
  3032. * cdef np.ndarray[np.float64_t, ndim = 1] Qsca = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3033. * cdef np.ndarray[np.float64_t, ndim = 1] Qbk = np.zeros(x.shape[0], dtype = np.float64)
  3034. * cdef np.ndarray[np.float64_t, ndim = 1] Qpr = np.zeros(x.shape[0], dtype = np.float64)
  3035. */
  3036. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 82, __pyx_L1_error)
  3037. __Pyx_GOTREF(__pyx_t_2);
  3038. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 82, __pyx_L1_error)
  3039. __Pyx_GOTREF(__pyx_t_4);
  3040. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3041. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 82, __pyx_L1_error)
  3042. __Pyx_GOTREF(__pyx_t_2);
  3043. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 82, __pyx_L1_error)
  3044. __Pyx_GOTREF(__pyx_t_3);
  3045. __Pyx_GIVEREF(__pyx_t_2);
  3046. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  3047. __pyx_t_2 = 0;
  3048. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 82, __pyx_L1_error)
  3049. __Pyx_GOTREF(__pyx_t_2);
  3050. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 82, __pyx_L1_error)
  3051. __Pyx_GOTREF(__pyx_t_5);
  3052. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error)
  3053. __Pyx_GOTREF(__pyx_t_1);
  3054. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3055. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 82, __pyx_L1_error)
  3056. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3057. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error)
  3058. __Pyx_GOTREF(__pyx_t_1);
  3059. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3060. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3061. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3062. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 82, __pyx_L1_error)
  3063. __pyx_t_9 = ((PyArrayObject *)__pyx_t_1);
  3064. {
  3065. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3066. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Qsca.rcbuffer->pybuffer, (PyObject*)__pyx_t_9, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3067. __pyx_v_Qsca = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Qsca.rcbuffer->pybuffer.buf = NULL;
  3068. __PYX_ERR(0, 82, __pyx_L1_error)
  3069. } else {__pyx_pybuffernd_Qsca.diminfo[0].strides = __pyx_pybuffernd_Qsca.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Qsca.diminfo[0].shape = __pyx_pybuffernd_Qsca.rcbuffer->pybuffer.shape[0];
  3070. }
  3071. }
  3072. __pyx_t_9 = 0;
  3073. __pyx_v_Qsca = ((PyArrayObject *)__pyx_t_1);
  3074. __pyx_t_1 = 0;
  3075. /* "scattnlay.pyx":83
  3076. * cdef np.ndarray[np.float64_t, ndim = 1] Qabs = np.zeros(x.shape[0], dtype = np.float64)
  3077. * cdef np.ndarray[np.float64_t, ndim = 1] Qsca = np.zeros(x.shape[0], dtype = np.float64)
  3078. * cdef np.ndarray[np.float64_t, ndim = 1] Qbk = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3079. * cdef np.ndarray[np.float64_t, ndim = 1] Qpr = np.zeros(x.shape[0], dtype = np.float64)
  3080. * cdef np.ndarray[np.float64_t, ndim = 1] g = np.zeros(x.shape[0], dtype = np.float64)
  3081. */
  3082. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 83, __pyx_L1_error)
  3083. __Pyx_GOTREF(__pyx_t_1);
  3084. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 83, __pyx_L1_error)
  3085. __Pyx_GOTREF(__pyx_t_2);
  3086. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3087. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 83, __pyx_L1_error)
  3088. __Pyx_GOTREF(__pyx_t_1);
  3089. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 83, __pyx_L1_error)
  3090. __Pyx_GOTREF(__pyx_t_3);
  3091. __Pyx_GIVEREF(__pyx_t_1);
  3092. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  3093. __pyx_t_1 = 0;
  3094. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 83, __pyx_L1_error)
  3095. __Pyx_GOTREF(__pyx_t_1);
  3096. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 83, __pyx_L1_error)
  3097. __Pyx_GOTREF(__pyx_t_4);
  3098. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 83, __pyx_L1_error)
  3099. __Pyx_GOTREF(__pyx_t_5);
  3100. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3101. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 83, __pyx_L1_error)
  3102. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3103. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 83, __pyx_L1_error)
  3104. __Pyx_GOTREF(__pyx_t_5);
  3105. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3106. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3107. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3108. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 83, __pyx_L1_error)
  3109. __pyx_t_10 = ((PyArrayObject *)__pyx_t_5);
  3110. {
  3111. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3112. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Qbk.rcbuffer->pybuffer, (PyObject*)__pyx_t_10, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3113. __pyx_v_Qbk = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Qbk.rcbuffer->pybuffer.buf = NULL;
  3114. __PYX_ERR(0, 83, __pyx_L1_error)
  3115. } else {__pyx_pybuffernd_Qbk.diminfo[0].strides = __pyx_pybuffernd_Qbk.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Qbk.diminfo[0].shape = __pyx_pybuffernd_Qbk.rcbuffer->pybuffer.shape[0];
  3116. }
  3117. }
  3118. __pyx_t_10 = 0;
  3119. __pyx_v_Qbk = ((PyArrayObject *)__pyx_t_5);
  3120. __pyx_t_5 = 0;
  3121. /* "scattnlay.pyx":84
  3122. * cdef np.ndarray[np.float64_t, ndim = 1] Qsca = np.zeros(x.shape[0], dtype = np.float64)
  3123. * cdef np.ndarray[np.float64_t, ndim = 1] Qbk = np.zeros(x.shape[0], dtype = np.float64)
  3124. * cdef np.ndarray[np.float64_t, ndim = 1] Qpr = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3125. * cdef np.ndarray[np.float64_t, ndim = 1] g = np.zeros(x.shape[0], dtype = np.float64)
  3126. * cdef np.ndarray[np.float64_t, ndim = 1] Albedo = np.zeros(x.shape[0], dtype = np.float64)
  3127. */
  3128. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error)
  3129. __Pyx_GOTREF(__pyx_t_5);
  3130. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 84, __pyx_L1_error)
  3131. __Pyx_GOTREF(__pyx_t_1);
  3132. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3133. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error)
  3134. __Pyx_GOTREF(__pyx_t_5);
  3135. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 84, __pyx_L1_error)
  3136. __Pyx_GOTREF(__pyx_t_3);
  3137. __Pyx_GIVEREF(__pyx_t_5);
  3138. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  3139. __pyx_t_5 = 0;
  3140. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 84, __pyx_L1_error)
  3141. __Pyx_GOTREF(__pyx_t_5);
  3142. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 84, __pyx_L1_error)
  3143. __Pyx_GOTREF(__pyx_t_2);
  3144. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 84, __pyx_L1_error)
  3145. __Pyx_GOTREF(__pyx_t_4);
  3146. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3147. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 84, __pyx_L1_error)
  3148. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3149. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 84, __pyx_L1_error)
  3150. __Pyx_GOTREF(__pyx_t_4);
  3151. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3152. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3153. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3154. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 84, __pyx_L1_error)
  3155. __pyx_t_11 = ((PyArrayObject *)__pyx_t_4);
  3156. {
  3157. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3158. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Qpr.rcbuffer->pybuffer, (PyObject*)__pyx_t_11, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3159. __pyx_v_Qpr = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Qpr.rcbuffer->pybuffer.buf = NULL;
  3160. __PYX_ERR(0, 84, __pyx_L1_error)
  3161. } else {__pyx_pybuffernd_Qpr.diminfo[0].strides = __pyx_pybuffernd_Qpr.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Qpr.diminfo[0].shape = __pyx_pybuffernd_Qpr.rcbuffer->pybuffer.shape[0];
  3162. }
  3163. }
  3164. __pyx_t_11 = 0;
  3165. __pyx_v_Qpr = ((PyArrayObject *)__pyx_t_4);
  3166. __pyx_t_4 = 0;
  3167. /* "scattnlay.pyx":85
  3168. * cdef np.ndarray[np.float64_t, ndim = 1] Qbk = np.zeros(x.shape[0], dtype = np.float64)
  3169. * cdef np.ndarray[np.float64_t, ndim = 1] Qpr = np.zeros(x.shape[0], dtype = np.float64)
  3170. * cdef np.ndarray[np.float64_t, ndim = 1] g = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3171. * cdef np.ndarray[np.float64_t, ndim = 1] Albedo = np.zeros(x.shape[0], dtype = np.float64)
  3172. *
  3173. */
  3174. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 85, __pyx_L1_error)
  3175. __Pyx_GOTREF(__pyx_t_4);
  3176. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 85, __pyx_L1_error)
  3177. __Pyx_GOTREF(__pyx_t_5);
  3178. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3179. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 85, __pyx_L1_error)
  3180. __Pyx_GOTREF(__pyx_t_4);
  3181. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 85, __pyx_L1_error)
  3182. __Pyx_GOTREF(__pyx_t_3);
  3183. __Pyx_GIVEREF(__pyx_t_4);
  3184. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  3185. __pyx_t_4 = 0;
  3186. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 85, __pyx_L1_error)
  3187. __Pyx_GOTREF(__pyx_t_4);
  3188. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 85, __pyx_L1_error)
  3189. __Pyx_GOTREF(__pyx_t_1);
  3190. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 85, __pyx_L1_error)
  3191. __Pyx_GOTREF(__pyx_t_2);
  3192. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3193. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 85, __pyx_L1_error)
  3194. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3195. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 85, __pyx_L1_error)
  3196. __Pyx_GOTREF(__pyx_t_2);
  3197. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3198. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3199. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3200. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 85, __pyx_L1_error)
  3201. __pyx_t_12 = ((PyArrayObject *)__pyx_t_2);
  3202. {
  3203. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3204. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_g.rcbuffer->pybuffer, (PyObject*)__pyx_t_12, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3205. __pyx_v_g = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_g.rcbuffer->pybuffer.buf = NULL;
  3206. __PYX_ERR(0, 85, __pyx_L1_error)
  3207. } else {__pyx_pybuffernd_g.diminfo[0].strides = __pyx_pybuffernd_g.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_g.diminfo[0].shape = __pyx_pybuffernd_g.rcbuffer->pybuffer.shape[0];
  3208. }
  3209. }
  3210. __pyx_t_12 = 0;
  3211. __pyx_v_g = ((PyArrayObject *)__pyx_t_2);
  3212. __pyx_t_2 = 0;
  3213. /* "scattnlay.pyx":86
  3214. * cdef np.ndarray[np.float64_t, ndim = 1] Qpr = np.zeros(x.shape[0], dtype = np.float64)
  3215. * cdef np.ndarray[np.float64_t, ndim = 1] g = np.zeros(x.shape[0], dtype = np.float64)
  3216. * cdef np.ndarray[np.float64_t, ndim = 1] Albedo = np.zeros(x.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3217. *
  3218. * cdef np.ndarray[np.complex128_t, ndim = 2] S1 = np.zeros((x.shape[0], theta.shape[0]), dtype = np.complex128)
  3219. */
  3220. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error)
  3221. __Pyx_GOTREF(__pyx_t_2);
  3222. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 86, __pyx_L1_error)
  3223. __Pyx_GOTREF(__pyx_t_4);
  3224. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3225. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error)
  3226. __Pyx_GOTREF(__pyx_t_2);
  3227. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 86, __pyx_L1_error)
  3228. __Pyx_GOTREF(__pyx_t_3);
  3229. __Pyx_GIVEREF(__pyx_t_2);
  3230. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  3231. __pyx_t_2 = 0;
  3232. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error)
  3233. __Pyx_GOTREF(__pyx_t_2);
  3234. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 86, __pyx_L1_error)
  3235. __Pyx_GOTREF(__pyx_t_5);
  3236. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 86, __pyx_L1_error)
  3237. __Pyx_GOTREF(__pyx_t_1);
  3238. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3239. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 86, __pyx_L1_error)
  3240. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3241. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 86, __pyx_L1_error)
  3242. __Pyx_GOTREF(__pyx_t_1);
  3243. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3244. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3245. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3246. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 86, __pyx_L1_error)
  3247. __pyx_t_13 = ((PyArrayObject *)__pyx_t_1);
  3248. {
  3249. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3250. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Albedo.rcbuffer->pybuffer, (PyObject*)__pyx_t_13, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3251. __pyx_v_Albedo = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_Albedo.rcbuffer->pybuffer.buf = NULL;
  3252. __PYX_ERR(0, 86, __pyx_L1_error)
  3253. } else {__pyx_pybuffernd_Albedo.diminfo[0].strides = __pyx_pybuffernd_Albedo.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Albedo.diminfo[0].shape = __pyx_pybuffernd_Albedo.rcbuffer->pybuffer.shape[0];
  3254. }
  3255. }
  3256. __pyx_t_13 = 0;
  3257. __pyx_v_Albedo = ((PyArrayObject *)__pyx_t_1);
  3258. __pyx_t_1 = 0;
  3259. /* "scattnlay.pyx":88
  3260. * cdef np.ndarray[np.float64_t, ndim = 1] Albedo = np.zeros(x.shape[0], dtype = np.float64)
  3261. *
  3262. * cdef np.ndarray[np.complex128_t, ndim = 2] S1 = np.zeros((x.shape[0], theta.shape[0]), dtype = np.complex128) # <<<<<<<<<<<<<<
  3263. * cdef np.ndarray[np.complex128_t, ndim = 2] S2 = np.zeros((x.shape[0], theta.shape[0]), dtype = np.complex128)
  3264. *
  3265. */
  3266. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error)
  3267. __Pyx_GOTREF(__pyx_t_1);
  3268. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 88, __pyx_L1_error)
  3269. __Pyx_GOTREF(__pyx_t_2);
  3270. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3271. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error)
  3272. __Pyx_GOTREF(__pyx_t_1);
  3273. __pyx_t_3 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 88, __pyx_L1_error)
  3274. __Pyx_GOTREF(__pyx_t_3);
  3275. __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 88, __pyx_L1_error)
  3276. __Pyx_GOTREF(__pyx_t_4);
  3277. __Pyx_GIVEREF(__pyx_t_1);
  3278. PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_1);
  3279. __Pyx_GIVEREF(__pyx_t_3);
  3280. PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_3);
  3281. __pyx_t_1 = 0;
  3282. __pyx_t_3 = 0;
  3283. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 88, __pyx_L1_error)
  3284. __Pyx_GOTREF(__pyx_t_3);
  3285. __Pyx_GIVEREF(__pyx_t_4);
  3286. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  3287. __pyx_t_4 = 0;
  3288. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 88, __pyx_L1_error)
  3289. __Pyx_GOTREF(__pyx_t_4);
  3290. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error)
  3291. __Pyx_GOTREF(__pyx_t_1);
  3292. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_complex128); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 88, __pyx_L1_error)
  3293. __Pyx_GOTREF(__pyx_t_5);
  3294. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3295. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 88, __pyx_L1_error)
  3296. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3297. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 88, __pyx_L1_error)
  3298. __Pyx_GOTREF(__pyx_t_5);
  3299. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3300. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3301. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3302. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 88, __pyx_L1_error)
  3303. __pyx_t_14 = ((PyArrayObject *)__pyx_t_5);
  3304. {
  3305. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3306. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S1.rcbuffer->pybuffer, (PyObject*)__pyx_t_14, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) {
  3307. __pyx_v_S1 = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_S1.rcbuffer->pybuffer.buf = NULL;
  3308. __PYX_ERR(0, 88, __pyx_L1_error)
  3309. } else {__pyx_pybuffernd_S1.diminfo[0].strides = __pyx_pybuffernd_S1.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S1.diminfo[0].shape = __pyx_pybuffernd_S1.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_S1.diminfo[1].strides = __pyx_pybuffernd_S1.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_S1.diminfo[1].shape = __pyx_pybuffernd_S1.rcbuffer->pybuffer.shape[1];
  3310. }
  3311. }
  3312. __pyx_t_14 = 0;
  3313. __pyx_v_S1 = ((PyArrayObject *)__pyx_t_5);
  3314. __pyx_t_5 = 0;
  3315. /* "scattnlay.pyx":89
  3316. *
  3317. * cdef np.ndarray[np.complex128_t, ndim = 2] S1 = np.zeros((x.shape[0], theta.shape[0]), dtype = np.complex128)
  3318. * cdef np.ndarray[np.complex128_t, ndim = 2] S2 = np.zeros((x.shape[0], theta.shape[0]), dtype = np.complex128) # <<<<<<<<<<<<<<
  3319. *
  3320. * cdef np.ndarray[np.float64_t, ndim = 1] S1r
  3321. */
  3322. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 89, __pyx_L1_error)
  3323. __Pyx_GOTREF(__pyx_t_5);
  3324. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 89, __pyx_L1_error)
  3325. __Pyx_GOTREF(__pyx_t_4);
  3326. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3327. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 89, __pyx_L1_error)
  3328. __Pyx_GOTREF(__pyx_t_5);
  3329. __pyx_t_3 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 89, __pyx_L1_error)
  3330. __Pyx_GOTREF(__pyx_t_3);
  3331. __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 89, __pyx_L1_error)
  3332. __Pyx_GOTREF(__pyx_t_2);
  3333. __Pyx_GIVEREF(__pyx_t_5);
  3334. PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5);
  3335. __Pyx_GIVEREF(__pyx_t_3);
  3336. PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3);
  3337. __pyx_t_5 = 0;
  3338. __pyx_t_3 = 0;
  3339. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 89, __pyx_L1_error)
  3340. __Pyx_GOTREF(__pyx_t_3);
  3341. __Pyx_GIVEREF(__pyx_t_2);
  3342. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  3343. __pyx_t_2 = 0;
  3344. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 89, __pyx_L1_error)
  3345. __Pyx_GOTREF(__pyx_t_2);
  3346. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 89, __pyx_L1_error)
  3347. __Pyx_GOTREF(__pyx_t_5);
  3348. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_complex128); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 89, __pyx_L1_error)
  3349. __Pyx_GOTREF(__pyx_t_1);
  3350. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3351. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 89, __pyx_L1_error)
  3352. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3353. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 89, __pyx_L1_error)
  3354. __Pyx_GOTREF(__pyx_t_1);
  3355. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3356. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3357. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3358. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 89, __pyx_L1_error)
  3359. __pyx_t_15 = ((PyArrayObject *)__pyx_t_1);
  3360. {
  3361. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3362. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S2.rcbuffer->pybuffer, (PyObject*)__pyx_t_15, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) {
  3363. __pyx_v_S2 = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_S2.rcbuffer->pybuffer.buf = NULL;
  3364. __PYX_ERR(0, 89, __pyx_L1_error)
  3365. } else {__pyx_pybuffernd_S2.diminfo[0].strides = __pyx_pybuffernd_S2.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S2.diminfo[0].shape = __pyx_pybuffernd_S2.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_S2.diminfo[1].strides = __pyx_pybuffernd_S2.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_S2.diminfo[1].shape = __pyx_pybuffernd_S2.rcbuffer->pybuffer.shape[1];
  3366. }
  3367. }
  3368. __pyx_t_15 = 0;
  3369. __pyx_v_S2 = ((PyArrayObject *)__pyx_t_1);
  3370. __pyx_t_1 = 0;
  3371. /* "scattnlay.pyx":96
  3372. * cdef np.ndarray[np.float64_t, ndim = 1] S2i
  3373. *
  3374. * for i in range(x.shape[0]): # <<<<<<<<<<<<<<
  3375. * S1r = np.zeros(theta.shape[0], dtype = np.float64)
  3376. * S1i = np.zeros(theta.shape[0], dtype = np.float64)
  3377. */
  3378. __pyx_t_16 = (__pyx_v_x->dimensions[0]);
  3379. for (__pyx_t_17 = 0; __pyx_t_17 < __pyx_t_16; __pyx_t_17+=1) {
  3380. __pyx_v_i = __pyx_t_17;
  3381. /* "scattnlay.pyx":97
  3382. *
  3383. * for i in range(x.shape[0]):
  3384. * S1r = np.zeros(theta.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3385. * S1i = np.zeros(theta.shape[0], dtype = np.float64)
  3386. * S2r = np.zeros(theta.shape[0], dtype = np.float64)
  3387. */
  3388. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error)
  3389. __Pyx_GOTREF(__pyx_t_1);
  3390. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error)
  3391. __Pyx_GOTREF(__pyx_t_2);
  3392. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3393. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error)
  3394. __Pyx_GOTREF(__pyx_t_1);
  3395. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 97, __pyx_L1_error)
  3396. __Pyx_GOTREF(__pyx_t_3);
  3397. __Pyx_GIVEREF(__pyx_t_1);
  3398. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  3399. __pyx_t_1 = 0;
  3400. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 97, __pyx_L1_error)
  3401. __Pyx_GOTREF(__pyx_t_1);
  3402. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error)
  3403. __Pyx_GOTREF(__pyx_t_4);
  3404. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 97, __pyx_L1_error)
  3405. __Pyx_GOTREF(__pyx_t_5);
  3406. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3407. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 97, __pyx_L1_error)
  3408. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3409. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 97, __pyx_L1_error)
  3410. __Pyx_GOTREF(__pyx_t_5);
  3411. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3412. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3413. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3414. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 97, __pyx_L1_error)
  3415. __pyx_t_18 = ((PyArrayObject *)__pyx_t_5);
  3416. {
  3417. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3418. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1r.rcbuffer->pybuffer);
  3419. __pyx_t_19 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S1r.rcbuffer->pybuffer, (PyObject*)__pyx_t_18, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  3420. if (unlikely(__pyx_t_19 < 0)) {
  3421. PyErr_Fetch(&__pyx_t_20, &__pyx_t_21, &__pyx_t_22);
  3422. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S1r.rcbuffer->pybuffer, (PyObject*)__pyx_v_S1r, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3423. Py_XDECREF(__pyx_t_20); Py_XDECREF(__pyx_t_21); Py_XDECREF(__pyx_t_22);
  3424. __Pyx_RaiseBufferFallbackError();
  3425. } else {
  3426. PyErr_Restore(__pyx_t_20, __pyx_t_21, __pyx_t_22);
  3427. }
  3428. __pyx_t_20 = __pyx_t_21 = __pyx_t_22 = 0;
  3429. }
  3430. __pyx_pybuffernd_S1r.diminfo[0].strides = __pyx_pybuffernd_S1r.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S1r.diminfo[0].shape = __pyx_pybuffernd_S1r.rcbuffer->pybuffer.shape[0];
  3431. if (unlikely(__pyx_t_19 < 0)) __PYX_ERR(0, 97, __pyx_L1_error)
  3432. }
  3433. __pyx_t_18 = 0;
  3434. __Pyx_XDECREF_SET(__pyx_v_S1r, ((PyArrayObject *)__pyx_t_5));
  3435. __pyx_t_5 = 0;
  3436. /* "scattnlay.pyx":98
  3437. * for i in range(x.shape[0]):
  3438. * S1r = np.zeros(theta.shape[0], dtype = np.float64)
  3439. * S1i = np.zeros(theta.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3440. * S2r = np.zeros(theta.shape[0], dtype = np.float64)
  3441. * S2i = np.zeros(theta.shape[0], dtype = np.float64)
  3442. */
  3443. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 98, __pyx_L1_error)
  3444. __Pyx_GOTREF(__pyx_t_5);
  3445. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 98, __pyx_L1_error)
  3446. __Pyx_GOTREF(__pyx_t_1);
  3447. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3448. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 98, __pyx_L1_error)
  3449. __Pyx_GOTREF(__pyx_t_5);
  3450. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 98, __pyx_L1_error)
  3451. __Pyx_GOTREF(__pyx_t_3);
  3452. __Pyx_GIVEREF(__pyx_t_5);
  3453. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  3454. __pyx_t_5 = 0;
  3455. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 98, __pyx_L1_error)
  3456. __Pyx_GOTREF(__pyx_t_5);
  3457. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 98, __pyx_L1_error)
  3458. __Pyx_GOTREF(__pyx_t_2);
  3459. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 98, __pyx_L1_error)
  3460. __Pyx_GOTREF(__pyx_t_4);
  3461. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3462. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 98, __pyx_L1_error)
  3463. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3464. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 98, __pyx_L1_error)
  3465. __Pyx_GOTREF(__pyx_t_4);
  3466. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3467. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3468. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3469. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 98, __pyx_L1_error)
  3470. __pyx_t_23 = ((PyArrayObject *)__pyx_t_4);
  3471. {
  3472. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3473. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1i.rcbuffer->pybuffer);
  3474. __pyx_t_19 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S1i.rcbuffer->pybuffer, (PyObject*)__pyx_t_23, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  3475. if (unlikely(__pyx_t_19 < 0)) {
  3476. PyErr_Fetch(&__pyx_t_22, &__pyx_t_21, &__pyx_t_20);
  3477. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S1i.rcbuffer->pybuffer, (PyObject*)__pyx_v_S1i, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3478. Py_XDECREF(__pyx_t_22); Py_XDECREF(__pyx_t_21); Py_XDECREF(__pyx_t_20);
  3479. __Pyx_RaiseBufferFallbackError();
  3480. } else {
  3481. PyErr_Restore(__pyx_t_22, __pyx_t_21, __pyx_t_20);
  3482. }
  3483. __pyx_t_22 = __pyx_t_21 = __pyx_t_20 = 0;
  3484. }
  3485. __pyx_pybuffernd_S1i.diminfo[0].strides = __pyx_pybuffernd_S1i.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S1i.diminfo[0].shape = __pyx_pybuffernd_S1i.rcbuffer->pybuffer.shape[0];
  3486. if (unlikely(__pyx_t_19 < 0)) __PYX_ERR(0, 98, __pyx_L1_error)
  3487. }
  3488. __pyx_t_23 = 0;
  3489. __Pyx_XDECREF_SET(__pyx_v_S1i, ((PyArrayObject *)__pyx_t_4));
  3490. __pyx_t_4 = 0;
  3491. /* "scattnlay.pyx":99
  3492. * S1r = np.zeros(theta.shape[0], dtype = np.float64)
  3493. * S1i = np.zeros(theta.shape[0], dtype = np.float64)
  3494. * S2r = np.zeros(theta.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3495. * S2i = np.zeros(theta.shape[0], dtype = np.float64)
  3496. *
  3497. */
  3498. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error)
  3499. __Pyx_GOTREF(__pyx_t_4);
  3500. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 99, __pyx_L1_error)
  3501. __Pyx_GOTREF(__pyx_t_5);
  3502. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3503. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error)
  3504. __Pyx_GOTREF(__pyx_t_4);
  3505. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 99, __pyx_L1_error)
  3506. __Pyx_GOTREF(__pyx_t_3);
  3507. __Pyx_GIVEREF(__pyx_t_4);
  3508. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  3509. __pyx_t_4 = 0;
  3510. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 99, __pyx_L1_error)
  3511. __Pyx_GOTREF(__pyx_t_4);
  3512. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 99, __pyx_L1_error)
  3513. __Pyx_GOTREF(__pyx_t_1);
  3514. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 99, __pyx_L1_error)
  3515. __Pyx_GOTREF(__pyx_t_2);
  3516. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3517. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 99, __pyx_L1_error)
  3518. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3519. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 99, __pyx_L1_error)
  3520. __Pyx_GOTREF(__pyx_t_2);
  3521. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3522. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3523. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3524. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 99, __pyx_L1_error)
  3525. __pyx_t_24 = ((PyArrayObject *)__pyx_t_2);
  3526. {
  3527. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3528. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2r.rcbuffer->pybuffer);
  3529. __pyx_t_19 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S2r.rcbuffer->pybuffer, (PyObject*)__pyx_t_24, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  3530. if (unlikely(__pyx_t_19 < 0)) {
  3531. PyErr_Fetch(&__pyx_t_20, &__pyx_t_21, &__pyx_t_22);
  3532. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S2r.rcbuffer->pybuffer, (PyObject*)__pyx_v_S2r, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3533. Py_XDECREF(__pyx_t_20); Py_XDECREF(__pyx_t_21); Py_XDECREF(__pyx_t_22);
  3534. __Pyx_RaiseBufferFallbackError();
  3535. } else {
  3536. PyErr_Restore(__pyx_t_20, __pyx_t_21, __pyx_t_22);
  3537. }
  3538. __pyx_t_20 = __pyx_t_21 = __pyx_t_22 = 0;
  3539. }
  3540. __pyx_pybuffernd_S2r.diminfo[0].strides = __pyx_pybuffernd_S2r.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S2r.diminfo[0].shape = __pyx_pybuffernd_S2r.rcbuffer->pybuffer.shape[0];
  3541. if (unlikely(__pyx_t_19 < 0)) __PYX_ERR(0, 99, __pyx_L1_error)
  3542. }
  3543. __pyx_t_24 = 0;
  3544. __Pyx_XDECREF_SET(__pyx_v_S2r, ((PyArrayObject *)__pyx_t_2));
  3545. __pyx_t_2 = 0;
  3546. /* "scattnlay.pyx":100
  3547. * S1i = np.zeros(theta.shape[0], dtype = np.float64)
  3548. * S2r = np.zeros(theta.shape[0], dtype = np.float64)
  3549. * S2i = np.zeros(theta.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  3550. *
  3551. * terms[i] = nMie(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), theta.shape[0], theta.copy('C'), nmax, &Qext[i], &Qsca[i], &Qabs[i], &Qbk[i], &Qpr[i], &g[i], &Albedo[i], npy2c(S1r), npy2c(S1i), npy2c(S2r), npy2c(S2i))
  3552. */
  3553. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 100, __pyx_L1_error)
  3554. __Pyx_GOTREF(__pyx_t_2);
  3555. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 100, __pyx_L1_error)
  3556. __Pyx_GOTREF(__pyx_t_4);
  3557. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3558. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_theta->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 100, __pyx_L1_error)
  3559. __Pyx_GOTREF(__pyx_t_2);
  3560. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 100, __pyx_L1_error)
  3561. __Pyx_GOTREF(__pyx_t_3);
  3562. __Pyx_GIVEREF(__pyx_t_2);
  3563. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  3564. __pyx_t_2 = 0;
  3565. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 100, __pyx_L1_error)
  3566. __Pyx_GOTREF(__pyx_t_2);
  3567. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 100, __pyx_L1_error)
  3568. __Pyx_GOTREF(__pyx_t_5);
  3569. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 100, __pyx_L1_error)
  3570. __Pyx_GOTREF(__pyx_t_1);
  3571. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  3572. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 100, __pyx_L1_error)
  3573. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3574. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 100, __pyx_L1_error)
  3575. __Pyx_GOTREF(__pyx_t_1);
  3576. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3577. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3578. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3579. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 100, __pyx_L1_error)
  3580. __pyx_t_25 = ((PyArrayObject *)__pyx_t_1);
  3581. {
  3582. __Pyx_BufFmt_StackElem __pyx_stack[1];
  3583. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2i.rcbuffer->pybuffer);
  3584. __pyx_t_19 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S2i.rcbuffer->pybuffer, (PyObject*)__pyx_t_25, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  3585. if (unlikely(__pyx_t_19 < 0)) {
  3586. PyErr_Fetch(&__pyx_t_22, &__pyx_t_21, &__pyx_t_20);
  3587. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_S2i.rcbuffer->pybuffer, (PyObject*)__pyx_v_S2i, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  3588. Py_XDECREF(__pyx_t_22); Py_XDECREF(__pyx_t_21); Py_XDECREF(__pyx_t_20);
  3589. __Pyx_RaiseBufferFallbackError();
  3590. } else {
  3591. PyErr_Restore(__pyx_t_22, __pyx_t_21, __pyx_t_20);
  3592. }
  3593. __pyx_t_22 = __pyx_t_21 = __pyx_t_20 = 0;
  3594. }
  3595. __pyx_pybuffernd_S2i.diminfo[0].strides = __pyx_pybuffernd_S2i.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_S2i.diminfo[0].shape = __pyx_pybuffernd_S2i.rcbuffer->pybuffer.shape[0];
  3596. if (unlikely(__pyx_t_19 < 0)) __PYX_ERR(0, 100, __pyx_L1_error)
  3597. }
  3598. __pyx_t_25 = 0;
  3599. __Pyx_XDECREF_SET(__pyx_v_S2i, ((PyArrayObject *)__pyx_t_1));
  3600. __pyx_t_1 = 0;
  3601. /* "scattnlay.pyx":102
  3602. * S2i = np.zeros(theta.shape[0], dtype = np.float64)
  3603. *
  3604. * terms[i] = nMie(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), theta.shape[0], theta.copy('C'), nmax, &Qext[i], &Qsca[i], &Qabs[i], &Qbk[i], &Qpr[i], &g[i], &Albedo[i], npy2c(S1r), npy2c(S1i), npy2c(S2r), npy2c(S2i)) # <<<<<<<<<<<<<<
  3605. *
  3606. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C')
  3607. */
  3608. __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_x), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error)
  3609. __Pyx_GOTREF(__pyx_t_1);
  3610. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_copy); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 102, __pyx_L1_error)
  3611. __Pyx_GOTREF(__pyx_t_2);
  3612. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3613. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__9, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error)
  3614. __Pyx_GOTREF(__pyx_t_1);
  3615. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3616. __pyx_t_26 = __pyx_convert_vector_from_py_double(__pyx_t_1); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 102, __pyx_L1_error)
  3617. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3618. __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_m), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error)
  3619. __Pyx_GOTREF(__pyx_t_1);
  3620. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_copy); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 102, __pyx_L1_error)
  3621. __Pyx_GOTREF(__pyx_t_2);
  3622. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3623. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__10, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error)
  3624. __Pyx_GOTREF(__pyx_t_1);
  3625. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3626. __pyx_t_27 = __pyx_convert_vector_from_py___pyx_t_double_complex(__pyx_t_1); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 102, __pyx_L1_error)
  3627. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3628. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_theta), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 102, __pyx_L1_error)
  3629. __Pyx_GOTREF(__pyx_t_1);
  3630. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__11, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 102, __pyx_L1_error)
  3631. __Pyx_GOTREF(__pyx_t_2);
  3632. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3633. __pyx_t_28 = __pyx_convert_vector_from_py_double(__pyx_t_2); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 102, __pyx_L1_error)
  3634. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3635. __pyx_t_29 = __pyx_v_i;
  3636. __pyx_t_19 = -1;
  3637. if (__pyx_t_29 < 0) {
  3638. __pyx_t_29 += __pyx_pybuffernd_Qext.diminfo[0].shape;
  3639. if (unlikely(__pyx_t_29 < 0)) __pyx_t_19 = 0;
  3640. } else if (unlikely(__pyx_t_29 >= __pyx_pybuffernd_Qext.diminfo[0].shape)) __pyx_t_19 = 0;
  3641. if (unlikely(__pyx_t_19 != -1)) {
  3642. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3643. __PYX_ERR(0, 102, __pyx_L1_error)
  3644. }
  3645. __pyx_t_30 = __pyx_v_i;
  3646. __pyx_t_19 = -1;
  3647. if (__pyx_t_30 < 0) {
  3648. __pyx_t_30 += __pyx_pybuffernd_Qsca.diminfo[0].shape;
  3649. if (unlikely(__pyx_t_30 < 0)) __pyx_t_19 = 0;
  3650. } else if (unlikely(__pyx_t_30 >= __pyx_pybuffernd_Qsca.diminfo[0].shape)) __pyx_t_19 = 0;
  3651. if (unlikely(__pyx_t_19 != -1)) {
  3652. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3653. __PYX_ERR(0, 102, __pyx_L1_error)
  3654. }
  3655. __pyx_t_31 = __pyx_v_i;
  3656. __pyx_t_19 = -1;
  3657. if (__pyx_t_31 < 0) {
  3658. __pyx_t_31 += __pyx_pybuffernd_Qabs.diminfo[0].shape;
  3659. if (unlikely(__pyx_t_31 < 0)) __pyx_t_19 = 0;
  3660. } else if (unlikely(__pyx_t_31 >= __pyx_pybuffernd_Qabs.diminfo[0].shape)) __pyx_t_19 = 0;
  3661. if (unlikely(__pyx_t_19 != -1)) {
  3662. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3663. __PYX_ERR(0, 102, __pyx_L1_error)
  3664. }
  3665. __pyx_t_32 = __pyx_v_i;
  3666. __pyx_t_19 = -1;
  3667. if (__pyx_t_32 < 0) {
  3668. __pyx_t_32 += __pyx_pybuffernd_Qbk.diminfo[0].shape;
  3669. if (unlikely(__pyx_t_32 < 0)) __pyx_t_19 = 0;
  3670. } else if (unlikely(__pyx_t_32 >= __pyx_pybuffernd_Qbk.diminfo[0].shape)) __pyx_t_19 = 0;
  3671. if (unlikely(__pyx_t_19 != -1)) {
  3672. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3673. __PYX_ERR(0, 102, __pyx_L1_error)
  3674. }
  3675. __pyx_t_33 = __pyx_v_i;
  3676. __pyx_t_19 = -1;
  3677. if (__pyx_t_33 < 0) {
  3678. __pyx_t_33 += __pyx_pybuffernd_Qpr.diminfo[0].shape;
  3679. if (unlikely(__pyx_t_33 < 0)) __pyx_t_19 = 0;
  3680. } else if (unlikely(__pyx_t_33 >= __pyx_pybuffernd_Qpr.diminfo[0].shape)) __pyx_t_19 = 0;
  3681. if (unlikely(__pyx_t_19 != -1)) {
  3682. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3683. __PYX_ERR(0, 102, __pyx_L1_error)
  3684. }
  3685. __pyx_t_34 = __pyx_v_i;
  3686. __pyx_t_19 = -1;
  3687. if (__pyx_t_34 < 0) {
  3688. __pyx_t_34 += __pyx_pybuffernd_g.diminfo[0].shape;
  3689. if (unlikely(__pyx_t_34 < 0)) __pyx_t_19 = 0;
  3690. } else if (unlikely(__pyx_t_34 >= __pyx_pybuffernd_g.diminfo[0].shape)) __pyx_t_19 = 0;
  3691. if (unlikely(__pyx_t_19 != -1)) {
  3692. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3693. __PYX_ERR(0, 102, __pyx_L1_error)
  3694. }
  3695. __pyx_t_35 = __pyx_v_i;
  3696. __pyx_t_19 = -1;
  3697. if (__pyx_t_35 < 0) {
  3698. __pyx_t_35 += __pyx_pybuffernd_Albedo.diminfo[0].shape;
  3699. if (unlikely(__pyx_t_35 < 0)) __pyx_t_19 = 0;
  3700. } else if (unlikely(__pyx_t_35 >= __pyx_pybuffernd_Albedo.diminfo[0].shape)) __pyx_t_19 = 0;
  3701. if (unlikely(__pyx_t_19 != -1)) {
  3702. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3703. __PYX_ERR(0, 102, __pyx_L1_error)
  3704. }
  3705. __pyx_t_36 = __pyx_v_i;
  3706. __pyx_t_19 = -1;
  3707. if (__pyx_t_36 < 0) {
  3708. __pyx_t_36 += __pyx_pybuffernd_terms.diminfo[0].shape;
  3709. if (unlikely(__pyx_t_36 < 0)) __pyx_t_19 = 0;
  3710. } else if (unlikely(__pyx_t_36 >= __pyx_pybuffernd_terms.diminfo[0].shape)) __pyx_t_19 = 0;
  3711. if (unlikely(__pyx_t_19 != -1)) {
  3712. __Pyx_RaiseBufferIndexError(__pyx_t_19);
  3713. __PYX_ERR(0, 102, __pyx_L1_error)
  3714. }
  3715. *__Pyx_BufPtrStrided1d(__pyx_t_5numpy_int_t *, __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf, __pyx_t_36, __pyx_pybuffernd_terms.diminfo[0].strides) = nMie((__pyx_v_x->dimensions[1]), __pyx_v_pl, __pyx_t_26, __pyx_t_27, (__pyx_v_theta->dimensions[0]), __pyx_t_28, __pyx_v_nmax, (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Qext.rcbuffer->pybuffer.buf, __pyx_t_29, __pyx_pybuffernd_Qext.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Qsca.rcbuffer->pybuffer.buf, __pyx_t_30, __pyx_pybuffernd_Qsca.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Qabs.rcbuffer->pybuffer.buf, __pyx_t_31, __pyx_pybuffernd_Qabs.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Qbk.rcbuffer->pybuffer.buf, __pyx_t_32, __pyx_pybuffernd_Qbk.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Qpr.rcbuffer->pybuffer.buf, __pyx_t_33, __pyx_pybuffernd_Qpr.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_g.rcbuffer->pybuffer.buf, __pyx_t_34, __pyx_pybuffernd_g.diminfo[0].strides))), (&(*__Pyx_BufPtrStrided1d(__pyx_t_5numpy_float64_t *, __pyx_pybuffernd_Albedo.rcbuffer->pybuffer.buf, __pyx_t_35, __pyx_pybuffernd_Albedo.diminfo[0].strides))), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_S1r)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_S1i)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_S2r)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_S2i)));
  3716. /* "scattnlay.pyx":104
  3717. * terms[i] = nMie(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), theta.shape[0], theta.copy('C'), nmax, &Qext[i], &Qsca[i], &Qabs[i], &Qbk[i], &Qpr[i], &g[i], &Albedo[i], npy2c(S1r), npy2c(S1i), npy2c(S2r), npy2c(S2i))
  3718. *
  3719. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C') # <<<<<<<<<<<<<<
  3720. * S2[i] = S2r.copy('C') + 1.0j*S2i.copy('C')
  3721. *
  3722. */
  3723. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_S1r), __pyx_n_s_copy); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 104, __pyx_L1_error)
  3724. __Pyx_GOTREF(__pyx_t_2);
  3725. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__12, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 104, __pyx_L1_error)
  3726. __Pyx_GOTREF(__pyx_t_1);
  3727. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3728. __pyx_t_2 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 104, __pyx_L1_error)
  3729. __Pyx_GOTREF(__pyx_t_2);
  3730. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_S1i), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 104, __pyx_L1_error)
  3731. __Pyx_GOTREF(__pyx_t_3);
  3732. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__13, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 104, __pyx_L1_error)
  3733. __Pyx_GOTREF(__pyx_t_4);
  3734. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3735. __pyx_t_3 = PyNumber_Multiply(__pyx_t_2, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 104, __pyx_L1_error)
  3736. __Pyx_GOTREF(__pyx_t_3);
  3737. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3738. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3739. __pyx_t_4 = PyNumber_Add(__pyx_t_1, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 104, __pyx_L1_error)
  3740. __Pyx_GOTREF(__pyx_t_4);
  3741. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3742. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3743. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_S1), __pyx_v_i, __pyx_t_4, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 104, __pyx_L1_error)
  3744. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3745. /* "scattnlay.pyx":105
  3746. *
  3747. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C')
  3748. * S2[i] = S2r.copy('C') + 1.0j*S2i.copy('C') # <<<<<<<<<<<<<<
  3749. *
  3750. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  3751. */
  3752. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_S2r), __pyx_n_s_copy); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 105, __pyx_L1_error)
  3753. __Pyx_GOTREF(__pyx_t_4);
  3754. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_tuple__14, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 105, __pyx_L1_error)
  3755. __Pyx_GOTREF(__pyx_t_3);
  3756. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3757. __pyx_t_4 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 105, __pyx_L1_error)
  3758. __Pyx_GOTREF(__pyx_t_4);
  3759. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_S2i), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 105, __pyx_L1_error)
  3760. __Pyx_GOTREF(__pyx_t_1);
  3761. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__15, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 105, __pyx_L1_error)
  3762. __Pyx_GOTREF(__pyx_t_2);
  3763. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3764. __pyx_t_1 = PyNumber_Multiply(__pyx_t_4, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 105, __pyx_L1_error)
  3765. __Pyx_GOTREF(__pyx_t_1);
  3766. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  3767. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3768. __pyx_t_2 = PyNumber_Add(__pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 105, __pyx_L1_error)
  3769. __Pyx_GOTREF(__pyx_t_2);
  3770. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  3771. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  3772. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_S2), __pyx_v_i, __pyx_t_2, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 105, __pyx_L1_error)
  3773. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  3774. }
  3775. /* "scattnlay.pyx":107
  3776. * S2[i] = S2r.copy('C') + 1.0j*S2i.copy('C')
  3777. *
  3778. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2 # <<<<<<<<<<<<<<
  3779. *
  3780. * def fieldnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 2] coords, np.int_t nmax = -1, np.int_t mode_n = -1, np.int_t mode_type = -1, np.int_t pl = -1):
  3781. */
  3782. __Pyx_XDECREF(__pyx_r);
  3783. __pyx_t_2 = PyTuple_New(10); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 107, __pyx_L1_error)
  3784. __Pyx_GOTREF(__pyx_t_2);
  3785. __Pyx_INCREF(((PyObject *)__pyx_v_terms));
  3786. __Pyx_GIVEREF(((PyObject *)__pyx_v_terms));
  3787. PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_v_terms));
  3788. __Pyx_INCREF(((PyObject *)__pyx_v_Qext));
  3789. __Pyx_GIVEREF(((PyObject *)__pyx_v_Qext));
  3790. PyTuple_SET_ITEM(__pyx_t_2, 1, ((PyObject *)__pyx_v_Qext));
  3791. __Pyx_INCREF(((PyObject *)__pyx_v_Qsca));
  3792. __Pyx_GIVEREF(((PyObject *)__pyx_v_Qsca));
  3793. PyTuple_SET_ITEM(__pyx_t_2, 2, ((PyObject *)__pyx_v_Qsca));
  3794. __Pyx_INCREF(((PyObject *)__pyx_v_Qabs));
  3795. __Pyx_GIVEREF(((PyObject *)__pyx_v_Qabs));
  3796. PyTuple_SET_ITEM(__pyx_t_2, 3, ((PyObject *)__pyx_v_Qabs));
  3797. __Pyx_INCREF(((PyObject *)__pyx_v_Qbk));
  3798. __Pyx_GIVEREF(((PyObject *)__pyx_v_Qbk));
  3799. PyTuple_SET_ITEM(__pyx_t_2, 4, ((PyObject *)__pyx_v_Qbk));
  3800. __Pyx_INCREF(((PyObject *)__pyx_v_Qpr));
  3801. __Pyx_GIVEREF(((PyObject *)__pyx_v_Qpr));
  3802. PyTuple_SET_ITEM(__pyx_t_2, 5, ((PyObject *)__pyx_v_Qpr));
  3803. __Pyx_INCREF(((PyObject *)__pyx_v_g));
  3804. __Pyx_GIVEREF(((PyObject *)__pyx_v_g));
  3805. PyTuple_SET_ITEM(__pyx_t_2, 6, ((PyObject *)__pyx_v_g));
  3806. __Pyx_INCREF(((PyObject *)__pyx_v_Albedo));
  3807. __Pyx_GIVEREF(((PyObject *)__pyx_v_Albedo));
  3808. PyTuple_SET_ITEM(__pyx_t_2, 7, ((PyObject *)__pyx_v_Albedo));
  3809. __Pyx_INCREF(((PyObject *)__pyx_v_S1));
  3810. __Pyx_GIVEREF(((PyObject *)__pyx_v_S1));
  3811. PyTuple_SET_ITEM(__pyx_t_2, 8, ((PyObject *)__pyx_v_S1));
  3812. __Pyx_INCREF(((PyObject *)__pyx_v_S2));
  3813. __Pyx_GIVEREF(((PyObject *)__pyx_v_S2));
  3814. PyTuple_SET_ITEM(__pyx_t_2, 9, ((PyObject *)__pyx_v_S2));
  3815. __pyx_r = __pyx_t_2;
  3816. __pyx_t_2 = 0;
  3817. goto __pyx_L0;
  3818. /* "scattnlay.pyx":75
  3819. * return terms, an, bn
  3820. *
  3821. * def scattnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 1] theta = np.zeros(0, dtype = np.float64), np.int_t nmax = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  3822. * cdef Py_ssize_t i
  3823. *
  3824. */
  3825. /* function exit code */
  3826. __pyx_L1_error:;
  3827. __Pyx_XDECREF(__pyx_t_1);
  3828. __Pyx_XDECREF(__pyx_t_2);
  3829. __Pyx_XDECREF(__pyx_t_3);
  3830. __Pyx_XDECREF(__pyx_t_4);
  3831. __Pyx_XDECREF(__pyx_t_5);
  3832. { PyObject *__pyx_type, *__pyx_value, *__pyx_tb;
  3833. __Pyx_PyThreadState_declare
  3834. __Pyx_PyThreadState_assign
  3835. __Pyx_ErrFetch(&__pyx_type, &__pyx_value, &__pyx_tb);
  3836. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Albedo.rcbuffer->pybuffer);
  3837. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qabs.rcbuffer->pybuffer);
  3838. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qbk.rcbuffer->pybuffer);
  3839. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qext.rcbuffer->pybuffer);
  3840. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qpr.rcbuffer->pybuffer);
  3841. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qsca.rcbuffer->pybuffer);
  3842. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1.rcbuffer->pybuffer);
  3843. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1i.rcbuffer->pybuffer);
  3844. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1r.rcbuffer->pybuffer);
  3845. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2.rcbuffer->pybuffer);
  3846. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2i.rcbuffer->pybuffer);
  3847. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2r.rcbuffer->pybuffer);
  3848. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_g.rcbuffer->pybuffer);
  3849. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  3850. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  3851. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_theta.rcbuffer->pybuffer);
  3852. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  3853. __Pyx_ErrRestore(__pyx_type, __pyx_value, __pyx_tb);}
  3854. __Pyx_AddTraceback("scattnlay.scattnlay", __pyx_clineno, __pyx_lineno, __pyx_filename);
  3855. __pyx_r = NULL;
  3856. goto __pyx_L2;
  3857. __pyx_L0:;
  3858. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Albedo.rcbuffer->pybuffer);
  3859. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qabs.rcbuffer->pybuffer);
  3860. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qbk.rcbuffer->pybuffer);
  3861. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qext.rcbuffer->pybuffer);
  3862. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qpr.rcbuffer->pybuffer);
  3863. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Qsca.rcbuffer->pybuffer);
  3864. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1.rcbuffer->pybuffer);
  3865. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1i.rcbuffer->pybuffer);
  3866. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S1r.rcbuffer->pybuffer);
  3867. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2.rcbuffer->pybuffer);
  3868. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2i.rcbuffer->pybuffer);
  3869. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_S2r.rcbuffer->pybuffer);
  3870. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_g.rcbuffer->pybuffer);
  3871. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  3872. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  3873. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_theta.rcbuffer->pybuffer);
  3874. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  3875. __pyx_L2:;
  3876. __Pyx_XDECREF((PyObject *)__pyx_v_terms);
  3877. __Pyx_XDECREF((PyObject *)__pyx_v_Qext);
  3878. __Pyx_XDECREF((PyObject *)__pyx_v_Qabs);
  3879. __Pyx_XDECREF((PyObject *)__pyx_v_Qsca);
  3880. __Pyx_XDECREF((PyObject *)__pyx_v_Qbk);
  3881. __Pyx_XDECREF((PyObject *)__pyx_v_Qpr);
  3882. __Pyx_XDECREF((PyObject *)__pyx_v_g);
  3883. __Pyx_XDECREF((PyObject *)__pyx_v_Albedo);
  3884. __Pyx_XDECREF((PyObject *)__pyx_v_S1);
  3885. __Pyx_XDECREF((PyObject *)__pyx_v_S2);
  3886. __Pyx_XDECREF((PyObject *)__pyx_v_S1r);
  3887. __Pyx_XDECREF((PyObject *)__pyx_v_S1i);
  3888. __Pyx_XDECREF((PyObject *)__pyx_v_S2r);
  3889. __Pyx_XDECREF((PyObject *)__pyx_v_S2i);
  3890. __Pyx_XGIVEREF(__pyx_r);
  3891. __Pyx_RefNannyFinishContext();
  3892. return __pyx_r;
  3893. }
  3894. /* "scattnlay.pyx":109
  3895. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  3896. *
  3897. * def fieldnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 2] coords, np.int_t nmax = -1, np.int_t mode_n = -1, np.int_t mode_type = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  3898. * cdef Py_ssize_t i
  3899. *
  3900. */
  3901. /* Python wrapper */
  3902. static PyObject *__pyx_pw_9scattnlay_5fieldnlay(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
  3903. static PyMethodDef __pyx_mdef_9scattnlay_5fieldnlay = {"fieldnlay", (PyCFunction)__pyx_pw_9scattnlay_5fieldnlay, METH_VARARGS|METH_KEYWORDS, 0};
  3904. static PyObject *__pyx_pw_9scattnlay_5fieldnlay(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
  3905. PyArrayObject *__pyx_v_x = 0;
  3906. PyArrayObject *__pyx_v_m = 0;
  3907. PyArrayObject *__pyx_v_coords = 0;
  3908. __pyx_t_5numpy_int_t __pyx_v_nmax;
  3909. __pyx_t_5numpy_int_t __pyx_v_mode_n;
  3910. __pyx_t_5numpy_int_t __pyx_v_mode_type;
  3911. __pyx_t_5numpy_int_t __pyx_v_pl;
  3912. PyObject *__pyx_r = 0;
  3913. __Pyx_RefNannyDeclarations
  3914. __Pyx_RefNannySetupContext("fieldnlay (wrapper)", 0);
  3915. {
  3916. static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_x,&__pyx_n_s_m,&__pyx_n_s_coords,&__pyx_n_s_nmax,&__pyx_n_s_mode_n,&__pyx_n_s_mode_type,&__pyx_n_s_pl,0};
  3917. PyObject* values[7] = {0,0,0,0,0,0,0};
  3918. if (unlikely(__pyx_kwds)) {
  3919. Py_ssize_t kw_args;
  3920. const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args);
  3921. switch (pos_args) {
  3922. case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6);
  3923. CYTHON_FALLTHROUGH;
  3924. case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5);
  3925. CYTHON_FALLTHROUGH;
  3926. case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
  3927. CYTHON_FALLTHROUGH;
  3928. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  3929. CYTHON_FALLTHROUGH;
  3930. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  3931. CYTHON_FALLTHROUGH;
  3932. case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  3933. CYTHON_FALLTHROUGH;
  3934. case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  3935. CYTHON_FALLTHROUGH;
  3936. case 0: break;
  3937. default: goto __pyx_L5_argtuple_error;
  3938. }
  3939. kw_args = PyDict_Size(__pyx_kwds);
  3940. switch (pos_args) {
  3941. case 0:
  3942. if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_x)) != 0)) kw_args--;
  3943. else goto __pyx_L5_argtuple_error;
  3944. CYTHON_FALLTHROUGH;
  3945. case 1:
  3946. if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_m)) != 0)) kw_args--;
  3947. else {
  3948. __Pyx_RaiseArgtupleInvalid("fieldnlay", 0, 3, 7, 1); __PYX_ERR(0, 109, __pyx_L3_error)
  3949. }
  3950. CYTHON_FALLTHROUGH;
  3951. case 2:
  3952. if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s_coords)) != 0)) kw_args--;
  3953. else {
  3954. __Pyx_RaiseArgtupleInvalid("fieldnlay", 0, 3, 7, 2); __PYX_ERR(0, 109, __pyx_L3_error)
  3955. }
  3956. CYTHON_FALLTHROUGH;
  3957. case 3:
  3958. if (kw_args > 0) {
  3959. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_nmax);
  3960. if (value) { values[3] = value; kw_args--; }
  3961. }
  3962. CYTHON_FALLTHROUGH;
  3963. case 4:
  3964. if (kw_args > 0) {
  3965. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_mode_n);
  3966. if (value) { values[4] = value; kw_args--; }
  3967. }
  3968. CYTHON_FALLTHROUGH;
  3969. case 5:
  3970. if (kw_args > 0) {
  3971. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_mode_type);
  3972. if (value) { values[5] = value; kw_args--; }
  3973. }
  3974. CYTHON_FALLTHROUGH;
  3975. case 6:
  3976. if (kw_args > 0) {
  3977. PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s_pl);
  3978. if (value) { values[6] = value; kw_args--; }
  3979. }
  3980. }
  3981. if (unlikely(kw_args > 0)) {
  3982. if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "fieldnlay") < 0)) __PYX_ERR(0, 109, __pyx_L3_error)
  3983. }
  3984. } else {
  3985. switch (PyTuple_GET_SIZE(__pyx_args)) {
  3986. case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6);
  3987. CYTHON_FALLTHROUGH;
  3988. case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5);
  3989. CYTHON_FALLTHROUGH;
  3990. case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
  3991. CYTHON_FALLTHROUGH;
  3992. case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3);
  3993. CYTHON_FALLTHROUGH;
  3994. case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
  3995. values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
  3996. values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
  3997. break;
  3998. default: goto __pyx_L5_argtuple_error;
  3999. }
  4000. }
  4001. __pyx_v_x = ((PyArrayObject *)values[0]);
  4002. __pyx_v_m = ((PyArrayObject *)values[1]);
  4003. __pyx_v_coords = ((PyArrayObject *)values[2]);
  4004. if (values[3]) {
  4005. __pyx_v_nmax = __Pyx_PyInt_As_npy_long(values[3]); if (unlikely((__pyx_v_nmax == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 109, __pyx_L3_error)
  4006. } else {
  4007. __pyx_v_nmax = ((__pyx_t_5numpy_int_t)-1L);
  4008. }
  4009. if (values[4]) {
  4010. __pyx_v_mode_n = __Pyx_PyInt_As_npy_long(values[4]); if (unlikely((__pyx_v_mode_n == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 109, __pyx_L3_error)
  4011. } else {
  4012. __pyx_v_mode_n = ((__pyx_t_5numpy_int_t)-1L);
  4013. }
  4014. if (values[5]) {
  4015. __pyx_v_mode_type = __Pyx_PyInt_As_npy_long(values[5]); if (unlikely((__pyx_v_mode_type == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 109, __pyx_L3_error)
  4016. } else {
  4017. __pyx_v_mode_type = ((__pyx_t_5numpy_int_t)-1L);
  4018. }
  4019. if (values[6]) {
  4020. __pyx_v_pl = __Pyx_PyInt_As_npy_long(values[6]); if (unlikely((__pyx_v_pl == ((npy_long)-1)) && PyErr_Occurred())) __PYX_ERR(0, 109, __pyx_L3_error)
  4021. } else {
  4022. __pyx_v_pl = ((__pyx_t_5numpy_int_t)-1L);
  4023. }
  4024. }
  4025. goto __pyx_L4_argument_unpacking_done;
  4026. __pyx_L5_argtuple_error:;
  4027. __Pyx_RaiseArgtupleInvalid("fieldnlay", 0, 3, 7, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 109, __pyx_L3_error)
  4028. __pyx_L3_error:;
  4029. __Pyx_AddTraceback("scattnlay.fieldnlay", __pyx_clineno, __pyx_lineno, __pyx_filename);
  4030. __Pyx_RefNannyFinishContext();
  4031. return NULL;
  4032. __pyx_L4_argument_unpacking_done:;
  4033. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_x), __pyx_ptype_5numpy_ndarray, 1, "x", 0))) __PYX_ERR(0, 109, __pyx_L1_error)
  4034. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_m), __pyx_ptype_5numpy_ndarray, 1, "m", 0))) __PYX_ERR(0, 109, __pyx_L1_error)
  4035. if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_coords), __pyx_ptype_5numpy_ndarray, 1, "coords", 0))) __PYX_ERR(0, 109, __pyx_L1_error)
  4036. __pyx_r = __pyx_pf_9scattnlay_4fieldnlay(__pyx_self, __pyx_v_x, __pyx_v_m, __pyx_v_coords, __pyx_v_nmax, __pyx_v_mode_n, __pyx_v_mode_type, __pyx_v_pl);
  4037. /* function exit code */
  4038. goto __pyx_L0;
  4039. __pyx_L1_error:;
  4040. __pyx_r = NULL;
  4041. __pyx_L0:;
  4042. __Pyx_RefNannyFinishContext();
  4043. return __pyx_r;
  4044. }
  4045. static PyObject *__pyx_pf_9scattnlay_4fieldnlay(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_x, PyArrayObject *__pyx_v_m, PyArrayObject *__pyx_v_coords, __pyx_t_5numpy_int_t __pyx_v_nmax, __pyx_t_5numpy_int_t __pyx_v_mode_n, __pyx_t_5numpy_int_t __pyx_v_mode_type, __pyx_t_5numpy_int_t __pyx_v_pl) {
  4046. Py_ssize_t __pyx_v_i;
  4047. PyArrayObject *__pyx_v_terms = 0;
  4048. PyArrayObject *__pyx_v_E = 0;
  4049. PyArrayObject *__pyx_v_H = 0;
  4050. PyArrayObject *__pyx_v_Erx = 0;
  4051. PyArrayObject *__pyx_v_Ery = 0;
  4052. PyArrayObject *__pyx_v_Erz = 0;
  4053. PyArrayObject *__pyx_v_Eix = 0;
  4054. PyArrayObject *__pyx_v_Eiy = 0;
  4055. PyArrayObject *__pyx_v_Eiz = 0;
  4056. PyArrayObject *__pyx_v_Hrx = 0;
  4057. PyArrayObject *__pyx_v_Hry = 0;
  4058. PyArrayObject *__pyx_v_Hrz = 0;
  4059. PyArrayObject *__pyx_v_Hix = 0;
  4060. PyArrayObject *__pyx_v_Hiy = 0;
  4061. PyArrayObject *__pyx_v_Hiz = 0;
  4062. __Pyx_LocalBuf_ND __pyx_pybuffernd_E;
  4063. __Pyx_Buffer __pyx_pybuffer_E;
  4064. __Pyx_LocalBuf_ND __pyx_pybuffernd_Eix;
  4065. __Pyx_Buffer __pyx_pybuffer_Eix;
  4066. __Pyx_LocalBuf_ND __pyx_pybuffernd_Eiy;
  4067. __Pyx_Buffer __pyx_pybuffer_Eiy;
  4068. __Pyx_LocalBuf_ND __pyx_pybuffernd_Eiz;
  4069. __Pyx_Buffer __pyx_pybuffer_Eiz;
  4070. __Pyx_LocalBuf_ND __pyx_pybuffernd_Erx;
  4071. __Pyx_Buffer __pyx_pybuffer_Erx;
  4072. __Pyx_LocalBuf_ND __pyx_pybuffernd_Ery;
  4073. __Pyx_Buffer __pyx_pybuffer_Ery;
  4074. __Pyx_LocalBuf_ND __pyx_pybuffernd_Erz;
  4075. __Pyx_Buffer __pyx_pybuffer_Erz;
  4076. __Pyx_LocalBuf_ND __pyx_pybuffernd_H;
  4077. __Pyx_Buffer __pyx_pybuffer_H;
  4078. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hix;
  4079. __Pyx_Buffer __pyx_pybuffer_Hix;
  4080. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hiy;
  4081. __Pyx_Buffer __pyx_pybuffer_Hiy;
  4082. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hiz;
  4083. __Pyx_Buffer __pyx_pybuffer_Hiz;
  4084. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hrx;
  4085. __Pyx_Buffer __pyx_pybuffer_Hrx;
  4086. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hry;
  4087. __Pyx_Buffer __pyx_pybuffer_Hry;
  4088. __Pyx_LocalBuf_ND __pyx_pybuffernd_Hrz;
  4089. __Pyx_Buffer __pyx_pybuffer_Hrz;
  4090. __Pyx_LocalBuf_ND __pyx_pybuffernd_coords;
  4091. __Pyx_Buffer __pyx_pybuffer_coords;
  4092. __Pyx_LocalBuf_ND __pyx_pybuffernd_m;
  4093. __Pyx_Buffer __pyx_pybuffer_m;
  4094. __Pyx_LocalBuf_ND __pyx_pybuffernd_terms;
  4095. __Pyx_Buffer __pyx_pybuffer_terms;
  4096. __Pyx_LocalBuf_ND __pyx_pybuffernd_x;
  4097. __Pyx_Buffer __pyx_pybuffer_x;
  4098. PyObject *__pyx_r = NULL;
  4099. __Pyx_RefNannyDeclarations
  4100. PyObject *__pyx_t_1 = NULL;
  4101. PyObject *__pyx_t_2 = NULL;
  4102. PyObject *__pyx_t_3 = NULL;
  4103. PyObject *__pyx_t_4 = NULL;
  4104. PyObject *__pyx_t_5 = NULL;
  4105. PyArrayObject *__pyx_t_6 = NULL;
  4106. PyArrayObject *__pyx_t_7 = NULL;
  4107. PyArrayObject *__pyx_t_8 = NULL;
  4108. npy_intp __pyx_t_9;
  4109. Py_ssize_t __pyx_t_10;
  4110. PyArrayObject *__pyx_t_11 = NULL;
  4111. int __pyx_t_12;
  4112. PyObject *__pyx_t_13 = NULL;
  4113. PyObject *__pyx_t_14 = NULL;
  4114. PyObject *__pyx_t_15 = NULL;
  4115. PyArrayObject *__pyx_t_16 = NULL;
  4116. PyArrayObject *__pyx_t_17 = NULL;
  4117. PyArrayObject *__pyx_t_18 = NULL;
  4118. PyArrayObject *__pyx_t_19 = NULL;
  4119. PyArrayObject *__pyx_t_20 = NULL;
  4120. PyArrayObject *__pyx_t_21 = NULL;
  4121. PyArrayObject *__pyx_t_22 = NULL;
  4122. PyArrayObject *__pyx_t_23 = NULL;
  4123. PyArrayObject *__pyx_t_24 = NULL;
  4124. PyArrayObject *__pyx_t_25 = NULL;
  4125. PyArrayObject *__pyx_t_26 = NULL;
  4126. std::vector<double> __pyx_t_27;
  4127. std::vector<__pyx_t_double_complex> __pyx_t_28;
  4128. std::vector<double> __pyx_t_29;
  4129. std::vector<double> __pyx_t_30;
  4130. std::vector<double> __pyx_t_31;
  4131. Py_ssize_t __pyx_t_32;
  4132. PyObject *__pyx_t_33 = NULL;
  4133. PyObject *__pyx_t_34 = NULL;
  4134. PyObject *__pyx_t_35 = NULL;
  4135. PyObject *__pyx_t_36 = NULL;
  4136. __Pyx_RefNannySetupContext("fieldnlay", 0);
  4137. __pyx_pybuffer_terms.pybuffer.buf = NULL;
  4138. __pyx_pybuffer_terms.refcount = 0;
  4139. __pyx_pybuffernd_terms.data = NULL;
  4140. __pyx_pybuffernd_terms.rcbuffer = &__pyx_pybuffer_terms;
  4141. __pyx_pybuffer_E.pybuffer.buf = NULL;
  4142. __pyx_pybuffer_E.refcount = 0;
  4143. __pyx_pybuffernd_E.data = NULL;
  4144. __pyx_pybuffernd_E.rcbuffer = &__pyx_pybuffer_E;
  4145. __pyx_pybuffer_H.pybuffer.buf = NULL;
  4146. __pyx_pybuffer_H.refcount = 0;
  4147. __pyx_pybuffernd_H.data = NULL;
  4148. __pyx_pybuffernd_H.rcbuffer = &__pyx_pybuffer_H;
  4149. __pyx_pybuffer_Erx.pybuffer.buf = NULL;
  4150. __pyx_pybuffer_Erx.refcount = 0;
  4151. __pyx_pybuffernd_Erx.data = NULL;
  4152. __pyx_pybuffernd_Erx.rcbuffer = &__pyx_pybuffer_Erx;
  4153. __pyx_pybuffer_Ery.pybuffer.buf = NULL;
  4154. __pyx_pybuffer_Ery.refcount = 0;
  4155. __pyx_pybuffernd_Ery.data = NULL;
  4156. __pyx_pybuffernd_Ery.rcbuffer = &__pyx_pybuffer_Ery;
  4157. __pyx_pybuffer_Erz.pybuffer.buf = NULL;
  4158. __pyx_pybuffer_Erz.refcount = 0;
  4159. __pyx_pybuffernd_Erz.data = NULL;
  4160. __pyx_pybuffernd_Erz.rcbuffer = &__pyx_pybuffer_Erz;
  4161. __pyx_pybuffer_Eix.pybuffer.buf = NULL;
  4162. __pyx_pybuffer_Eix.refcount = 0;
  4163. __pyx_pybuffernd_Eix.data = NULL;
  4164. __pyx_pybuffernd_Eix.rcbuffer = &__pyx_pybuffer_Eix;
  4165. __pyx_pybuffer_Eiy.pybuffer.buf = NULL;
  4166. __pyx_pybuffer_Eiy.refcount = 0;
  4167. __pyx_pybuffernd_Eiy.data = NULL;
  4168. __pyx_pybuffernd_Eiy.rcbuffer = &__pyx_pybuffer_Eiy;
  4169. __pyx_pybuffer_Eiz.pybuffer.buf = NULL;
  4170. __pyx_pybuffer_Eiz.refcount = 0;
  4171. __pyx_pybuffernd_Eiz.data = NULL;
  4172. __pyx_pybuffernd_Eiz.rcbuffer = &__pyx_pybuffer_Eiz;
  4173. __pyx_pybuffer_Hrx.pybuffer.buf = NULL;
  4174. __pyx_pybuffer_Hrx.refcount = 0;
  4175. __pyx_pybuffernd_Hrx.data = NULL;
  4176. __pyx_pybuffernd_Hrx.rcbuffer = &__pyx_pybuffer_Hrx;
  4177. __pyx_pybuffer_Hry.pybuffer.buf = NULL;
  4178. __pyx_pybuffer_Hry.refcount = 0;
  4179. __pyx_pybuffernd_Hry.data = NULL;
  4180. __pyx_pybuffernd_Hry.rcbuffer = &__pyx_pybuffer_Hry;
  4181. __pyx_pybuffer_Hrz.pybuffer.buf = NULL;
  4182. __pyx_pybuffer_Hrz.refcount = 0;
  4183. __pyx_pybuffernd_Hrz.data = NULL;
  4184. __pyx_pybuffernd_Hrz.rcbuffer = &__pyx_pybuffer_Hrz;
  4185. __pyx_pybuffer_Hix.pybuffer.buf = NULL;
  4186. __pyx_pybuffer_Hix.refcount = 0;
  4187. __pyx_pybuffernd_Hix.data = NULL;
  4188. __pyx_pybuffernd_Hix.rcbuffer = &__pyx_pybuffer_Hix;
  4189. __pyx_pybuffer_Hiy.pybuffer.buf = NULL;
  4190. __pyx_pybuffer_Hiy.refcount = 0;
  4191. __pyx_pybuffernd_Hiy.data = NULL;
  4192. __pyx_pybuffernd_Hiy.rcbuffer = &__pyx_pybuffer_Hiy;
  4193. __pyx_pybuffer_Hiz.pybuffer.buf = NULL;
  4194. __pyx_pybuffer_Hiz.refcount = 0;
  4195. __pyx_pybuffernd_Hiz.data = NULL;
  4196. __pyx_pybuffernd_Hiz.rcbuffer = &__pyx_pybuffer_Hiz;
  4197. __pyx_pybuffer_x.pybuffer.buf = NULL;
  4198. __pyx_pybuffer_x.refcount = 0;
  4199. __pyx_pybuffernd_x.data = NULL;
  4200. __pyx_pybuffernd_x.rcbuffer = &__pyx_pybuffer_x;
  4201. __pyx_pybuffer_m.pybuffer.buf = NULL;
  4202. __pyx_pybuffer_m.refcount = 0;
  4203. __pyx_pybuffernd_m.data = NULL;
  4204. __pyx_pybuffernd_m.rcbuffer = &__pyx_pybuffer_m;
  4205. __pyx_pybuffer_coords.pybuffer.buf = NULL;
  4206. __pyx_pybuffer_coords.refcount = 0;
  4207. __pyx_pybuffernd_coords.data = NULL;
  4208. __pyx_pybuffernd_coords.rcbuffer = &__pyx_pybuffer_coords;
  4209. {
  4210. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4211. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_x.rcbuffer->pybuffer, (PyObject*)__pyx_v_x, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 109, __pyx_L1_error)
  4212. }
  4213. __pyx_pybuffernd_x.diminfo[0].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_x.diminfo[0].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_x.diminfo[1].strides = __pyx_pybuffernd_x.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_x.diminfo[1].shape = __pyx_pybuffernd_x.rcbuffer->pybuffer.shape[1];
  4214. {
  4215. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4216. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_m.rcbuffer->pybuffer, (PyObject*)__pyx_v_m, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 109, __pyx_L1_error)
  4217. }
  4218. __pyx_pybuffernd_m.diminfo[0].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_m.diminfo[0].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_m.diminfo[1].strides = __pyx_pybuffernd_m.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_m.diminfo[1].shape = __pyx_pybuffernd_m.rcbuffer->pybuffer.shape[1];
  4219. {
  4220. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4221. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_coords.rcbuffer->pybuffer, (PyObject*)__pyx_v_coords, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 109, __pyx_L1_error)
  4222. }
  4223. __pyx_pybuffernd_coords.diminfo[0].strides = __pyx_pybuffernd_coords.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_coords.diminfo[0].shape = __pyx_pybuffernd_coords.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_coords.diminfo[1].strides = __pyx_pybuffernd_coords.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_coords.diminfo[1].shape = __pyx_pybuffernd_coords.rcbuffer->pybuffer.shape[1];
  4224. /* "scattnlay.pyx":112
  4225. * cdef Py_ssize_t i
  4226. *
  4227. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int) # <<<<<<<<<<<<<<
  4228. *
  4229. * cdef np.ndarray[np.complex128_t, ndim = 3] E = np.zeros((x.shape[0], coords.shape[0], 3), dtype = np.complex128)
  4230. */
  4231. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L1_error)
  4232. __Pyx_GOTREF(__pyx_t_1);
  4233. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 112, __pyx_L1_error)
  4234. __Pyx_GOTREF(__pyx_t_2);
  4235. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4236. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L1_error)
  4237. __Pyx_GOTREF(__pyx_t_1);
  4238. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 112, __pyx_L1_error)
  4239. __Pyx_GOTREF(__pyx_t_3);
  4240. __Pyx_GIVEREF(__pyx_t_1);
  4241. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  4242. __pyx_t_1 = 0;
  4243. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 112, __pyx_L1_error)
  4244. __Pyx_GOTREF(__pyx_t_1);
  4245. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 112, __pyx_L1_error)
  4246. __Pyx_GOTREF(__pyx_t_4);
  4247. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_int); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 112, __pyx_L1_error)
  4248. __Pyx_GOTREF(__pyx_t_5);
  4249. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4250. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 112, __pyx_L1_error)
  4251. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4252. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 112, __pyx_L1_error)
  4253. __Pyx_GOTREF(__pyx_t_5);
  4254. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4255. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4256. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4257. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 112, __pyx_L1_error)
  4258. __pyx_t_6 = ((PyArrayObject *)__pyx_t_5);
  4259. {
  4260. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4261. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_terms.rcbuffer->pybuffer, (PyObject*)__pyx_t_6, &__Pyx_TypeInfo_nn___pyx_t_5numpy_int_t, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 1, 0, __pyx_stack) == -1)) {
  4262. __pyx_v_terms = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf = NULL;
  4263. __PYX_ERR(0, 112, __pyx_L1_error)
  4264. } else {__pyx_pybuffernd_terms.diminfo[0].strides = __pyx_pybuffernd_terms.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_terms.diminfo[0].shape = __pyx_pybuffernd_terms.rcbuffer->pybuffer.shape[0];
  4265. }
  4266. }
  4267. __pyx_t_6 = 0;
  4268. __pyx_v_terms = ((PyArrayObject *)__pyx_t_5);
  4269. __pyx_t_5 = 0;
  4270. /* "scattnlay.pyx":114
  4271. * cdef np.ndarray[np.int_t, ndim = 1] terms = np.zeros(x.shape[0], dtype = np.int)
  4272. *
  4273. * cdef np.ndarray[np.complex128_t, ndim = 3] E = np.zeros((x.shape[0], coords.shape[0], 3), dtype = np.complex128) # <<<<<<<<<<<<<<
  4274. * cdef np.ndarray[np.complex128_t, ndim = 3] H = np.zeros((x.shape[0], coords.shape[0], 3), dtype = np.complex128)
  4275. *
  4276. */
  4277. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 114, __pyx_L1_error)
  4278. __Pyx_GOTREF(__pyx_t_5);
  4279. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error)
  4280. __Pyx_GOTREF(__pyx_t_1);
  4281. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4282. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 114, __pyx_L1_error)
  4283. __Pyx_GOTREF(__pyx_t_5);
  4284. __pyx_t_3 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 114, __pyx_L1_error)
  4285. __Pyx_GOTREF(__pyx_t_3);
  4286. __pyx_t_2 = PyTuple_New(3); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 114, __pyx_L1_error)
  4287. __Pyx_GOTREF(__pyx_t_2);
  4288. __Pyx_GIVEREF(__pyx_t_5);
  4289. PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5);
  4290. __Pyx_GIVEREF(__pyx_t_3);
  4291. PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3);
  4292. __Pyx_INCREF(__pyx_int_3);
  4293. __Pyx_GIVEREF(__pyx_int_3);
  4294. PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_int_3);
  4295. __pyx_t_5 = 0;
  4296. __pyx_t_3 = 0;
  4297. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 114, __pyx_L1_error)
  4298. __Pyx_GOTREF(__pyx_t_3);
  4299. __Pyx_GIVEREF(__pyx_t_2);
  4300. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  4301. __pyx_t_2 = 0;
  4302. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 114, __pyx_L1_error)
  4303. __Pyx_GOTREF(__pyx_t_2);
  4304. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 114, __pyx_L1_error)
  4305. __Pyx_GOTREF(__pyx_t_5);
  4306. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_complex128); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 114, __pyx_L1_error)
  4307. __Pyx_GOTREF(__pyx_t_4);
  4308. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4309. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 114, __pyx_L1_error)
  4310. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4311. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 114, __pyx_L1_error)
  4312. __Pyx_GOTREF(__pyx_t_4);
  4313. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4314. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4315. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4316. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 114, __pyx_L1_error)
  4317. __pyx_t_7 = ((PyArrayObject *)__pyx_t_4);
  4318. {
  4319. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4320. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_E.rcbuffer->pybuffer, (PyObject*)__pyx_t_7, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 3, 0, __pyx_stack) == -1)) {
  4321. __pyx_v_E = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_E.rcbuffer->pybuffer.buf = NULL;
  4322. __PYX_ERR(0, 114, __pyx_L1_error)
  4323. } else {__pyx_pybuffernd_E.diminfo[0].strides = __pyx_pybuffernd_E.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_E.diminfo[0].shape = __pyx_pybuffernd_E.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_E.diminfo[1].strides = __pyx_pybuffernd_E.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_E.diminfo[1].shape = __pyx_pybuffernd_E.rcbuffer->pybuffer.shape[1]; __pyx_pybuffernd_E.diminfo[2].strides = __pyx_pybuffernd_E.rcbuffer->pybuffer.strides[2]; __pyx_pybuffernd_E.diminfo[2].shape = __pyx_pybuffernd_E.rcbuffer->pybuffer.shape[2];
  4324. }
  4325. }
  4326. __pyx_t_7 = 0;
  4327. __pyx_v_E = ((PyArrayObject *)__pyx_t_4);
  4328. __pyx_t_4 = 0;
  4329. /* "scattnlay.pyx":115
  4330. *
  4331. * cdef np.ndarray[np.complex128_t, ndim = 3] E = np.zeros((x.shape[0], coords.shape[0], 3), dtype = np.complex128)
  4332. * cdef np.ndarray[np.complex128_t, ndim = 3] H = np.zeros((x.shape[0], coords.shape[0], 3), dtype = np.complex128) # <<<<<<<<<<<<<<
  4333. *
  4334. * cdef np.ndarray[np.float64_t, ndim = 1] Erx
  4335. */
  4336. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 115, __pyx_L1_error)
  4337. __Pyx_GOTREF(__pyx_t_4);
  4338. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 115, __pyx_L1_error)
  4339. __Pyx_GOTREF(__pyx_t_2);
  4340. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4341. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_x->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 115, __pyx_L1_error)
  4342. __Pyx_GOTREF(__pyx_t_4);
  4343. __pyx_t_3 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 115, __pyx_L1_error)
  4344. __Pyx_GOTREF(__pyx_t_3);
  4345. __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error)
  4346. __Pyx_GOTREF(__pyx_t_1);
  4347. __Pyx_GIVEREF(__pyx_t_4);
  4348. PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_4);
  4349. __Pyx_GIVEREF(__pyx_t_3);
  4350. PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3);
  4351. __Pyx_INCREF(__pyx_int_3);
  4352. __Pyx_GIVEREF(__pyx_int_3);
  4353. PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_int_3);
  4354. __pyx_t_4 = 0;
  4355. __pyx_t_3 = 0;
  4356. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 115, __pyx_L1_error)
  4357. __Pyx_GOTREF(__pyx_t_3);
  4358. __Pyx_GIVEREF(__pyx_t_1);
  4359. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  4360. __pyx_t_1 = 0;
  4361. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 115, __pyx_L1_error)
  4362. __Pyx_GOTREF(__pyx_t_1);
  4363. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 115, __pyx_L1_error)
  4364. __Pyx_GOTREF(__pyx_t_4);
  4365. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_complex128); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 115, __pyx_L1_error)
  4366. __Pyx_GOTREF(__pyx_t_5);
  4367. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4368. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 115, __pyx_L1_error)
  4369. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4370. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 115, __pyx_L1_error)
  4371. __Pyx_GOTREF(__pyx_t_5);
  4372. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4373. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4374. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4375. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 115, __pyx_L1_error)
  4376. __pyx_t_8 = ((PyArrayObject *)__pyx_t_5);
  4377. {
  4378. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4379. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_H.rcbuffer->pybuffer, (PyObject*)__pyx_t_8, &__Pyx_TypeInfo___pyx_t_double_complex, PyBUF_FORMAT| PyBUF_STRIDES, 3, 0, __pyx_stack) == -1)) {
  4380. __pyx_v_H = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_H.rcbuffer->pybuffer.buf = NULL;
  4381. __PYX_ERR(0, 115, __pyx_L1_error)
  4382. } else {__pyx_pybuffernd_H.diminfo[0].strides = __pyx_pybuffernd_H.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_H.diminfo[0].shape = __pyx_pybuffernd_H.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_H.diminfo[1].strides = __pyx_pybuffernd_H.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_H.diminfo[1].shape = __pyx_pybuffernd_H.rcbuffer->pybuffer.shape[1]; __pyx_pybuffernd_H.diminfo[2].strides = __pyx_pybuffernd_H.rcbuffer->pybuffer.strides[2]; __pyx_pybuffernd_H.diminfo[2].shape = __pyx_pybuffernd_H.rcbuffer->pybuffer.shape[2];
  4383. }
  4384. }
  4385. __pyx_t_8 = 0;
  4386. __pyx_v_H = ((PyArrayObject *)__pyx_t_5);
  4387. __pyx_t_5 = 0;
  4388. /* "scattnlay.pyx":130
  4389. * cdef np.ndarray[np.float64_t, ndim = 1] Hiz
  4390. *
  4391. * for i in range(x.shape[0]): # <<<<<<<<<<<<<<
  4392. * Erx = np.zeros(coords.shape[0], dtype = np.float64)
  4393. * Ery = np.zeros(coords.shape[0], dtype = np.float64)
  4394. */
  4395. __pyx_t_9 = (__pyx_v_x->dimensions[0]);
  4396. for (__pyx_t_10 = 0; __pyx_t_10 < __pyx_t_9; __pyx_t_10+=1) {
  4397. __pyx_v_i = __pyx_t_10;
  4398. /* "scattnlay.pyx":131
  4399. *
  4400. * for i in range(x.shape[0]):
  4401. * Erx = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4402. * Ery = np.zeros(coords.shape[0], dtype = np.float64)
  4403. * Erz = np.zeros(coords.shape[0], dtype = np.float64)
  4404. */
  4405. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 131, __pyx_L1_error)
  4406. __Pyx_GOTREF(__pyx_t_5);
  4407. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 131, __pyx_L1_error)
  4408. __Pyx_GOTREF(__pyx_t_1);
  4409. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4410. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 131, __pyx_L1_error)
  4411. __Pyx_GOTREF(__pyx_t_5);
  4412. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 131, __pyx_L1_error)
  4413. __Pyx_GOTREF(__pyx_t_3);
  4414. __Pyx_GIVEREF(__pyx_t_5);
  4415. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  4416. __pyx_t_5 = 0;
  4417. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 131, __pyx_L1_error)
  4418. __Pyx_GOTREF(__pyx_t_5);
  4419. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 131, __pyx_L1_error)
  4420. __Pyx_GOTREF(__pyx_t_2);
  4421. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L1_error)
  4422. __Pyx_GOTREF(__pyx_t_4);
  4423. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4424. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 131, __pyx_L1_error)
  4425. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4426. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L1_error)
  4427. __Pyx_GOTREF(__pyx_t_4);
  4428. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4429. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4430. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4431. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 131, __pyx_L1_error)
  4432. __pyx_t_11 = ((PyArrayObject *)__pyx_t_4);
  4433. {
  4434. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4435. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erx.rcbuffer->pybuffer);
  4436. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Erx.rcbuffer->pybuffer, (PyObject*)__pyx_t_11, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4437. if (unlikely(__pyx_t_12 < 0)) {
  4438. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4439. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Erx.rcbuffer->pybuffer, (PyObject*)__pyx_v_Erx, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4440. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4441. __Pyx_RaiseBufferFallbackError();
  4442. } else {
  4443. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4444. }
  4445. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4446. }
  4447. __pyx_pybuffernd_Erx.diminfo[0].strides = __pyx_pybuffernd_Erx.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Erx.diminfo[0].shape = __pyx_pybuffernd_Erx.rcbuffer->pybuffer.shape[0];
  4448. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 131, __pyx_L1_error)
  4449. }
  4450. __pyx_t_11 = 0;
  4451. __Pyx_XDECREF_SET(__pyx_v_Erx, ((PyArrayObject *)__pyx_t_4));
  4452. __pyx_t_4 = 0;
  4453. /* "scattnlay.pyx":132
  4454. * for i in range(x.shape[0]):
  4455. * Erx = np.zeros(coords.shape[0], dtype = np.float64)
  4456. * Ery = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4457. * Erz = np.zeros(coords.shape[0], dtype = np.float64)
  4458. * Eix = np.zeros(coords.shape[0], dtype = np.float64)
  4459. */
  4460. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 132, __pyx_L1_error)
  4461. __Pyx_GOTREF(__pyx_t_4);
  4462. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error)
  4463. __Pyx_GOTREF(__pyx_t_5);
  4464. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4465. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 132, __pyx_L1_error)
  4466. __Pyx_GOTREF(__pyx_t_4);
  4467. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 132, __pyx_L1_error)
  4468. __Pyx_GOTREF(__pyx_t_3);
  4469. __Pyx_GIVEREF(__pyx_t_4);
  4470. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  4471. __pyx_t_4 = 0;
  4472. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 132, __pyx_L1_error)
  4473. __Pyx_GOTREF(__pyx_t_4);
  4474. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 132, __pyx_L1_error)
  4475. __Pyx_GOTREF(__pyx_t_1);
  4476. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 132, __pyx_L1_error)
  4477. __Pyx_GOTREF(__pyx_t_2);
  4478. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4479. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 132, __pyx_L1_error)
  4480. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4481. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 132, __pyx_L1_error)
  4482. __Pyx_GOTREF(__pyx_t_2);
  4483. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4484. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4485. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4486. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 132, __pyx_L1_error)
  4487. __pyx_t_16 = ((PyArrayObject *)__pyx_t_2);
  4488. {
  4489. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4490. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Ery.rcbuffer->pybuffer);
  4491. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Ery.rcbuffer->pybuffer, (PyObject*)__pyx_t_16, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4492. if (unlikely(__pyx_t_12 < 0)) {
  4493. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  4494. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Ery.rcbuffer->pybuffer, (PyObject*)__pyx_v_Ery, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4495. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  4496. __Pyx_RaiseBufferFallbackError();
  4497. } else {
  4498. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  4499. }
  4500. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  4501. }
  4502. __pyx_pybuffernd_Ery.diminfo[0].strides = __pyx_pybuffernd_Ery.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Ery.diminfo[0].shape = __pyx_pybuffernd_Ery.rcbuffer->pybuffer.shape[0];
  4503. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 132, __pyx_L1_error)
  4504. }
  4505. __pyx_t_16 = 0;
  4506. __Pyx_XDECREF_SET(__pyx_v_Ery, ((PyArrayObject *)__pyx_t_2));
  4507. __pyx_t_2 = 0;
  4508. /* "scattnlay.pyx":133
  4509. * Erx = np.zeros(coords.shape[0], dtype = np.float64)
  4510. * Ery = np.zeros(coords.shape[0], dtype = np.float64)
  4511. * Erz = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4512. * Eix = np.zeros(coords.shape[0], dtype = np.float64)
  4513. * Eiy = np.zeros(coords.shape[0], dtype = np.float64)
  4514. */
  4515. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 133, __pyx_L1_error)
  4516. __Pyx_GOTREF(__pyx_t_2);
  4517. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 133, __pyx_L1_error)
  4518. __Pyx_GOTREF(__pyx_t_4);
  4519. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4520. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 133, __pyx_L1_error)
  4521. __Pyx_GOTREF(__pyx_t_2);
  4522. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 133, __pyx_L1_error)
  4523. __Pyx_GOTREF(__pyx_t_3);
  4524. __Pyx_GIVEREF(__pyx_t_2);
  4525. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  4526. __pyx_t_2 = 0;
  4527. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 133, __pyx_L1_error)
  4528. __Pyx_GOTREF(__pyx_t_2);
  4529. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 133, __pyx_L1_error)
  4530. __Pyx_GOTREF(__pyx_t_5);
  4531. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 133, __pyx_L1_error)
  4532. __Pyx_GOTREF(__pyx_t_1);
  4533. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4534. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 133, __pyx_L1_error)
  4535. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4536. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 133, __pyx_L1_error)
  4537. __Pyx_GOTREF(__pyx_t_1);
  4538. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4539. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4540. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4541. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 133, __pyx_L1_error)
  4542. __pyx_t_17 = ((PyArrayObject *)__pyx_t_1);
  4543. {
  4544. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4545. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erz.rcbuffer->pybuffer);
  4546. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Erz.rcbuffer->pybuffer, (PyObject*)__pyx_t_17, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4547. if (unlikely(__pyx_t_12 < 0)) {
  4548. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4549. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Erz.rcbuffer->pybuffer, (PyObject*)__pyx_v_Erz, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4550. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4551. __Pyx_RaiseBufferFallbackError();
  4552. } else {
  4553. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4554. }
  4555. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4556. }
  4557. __pyx_pybuffernd_Erz.diminfo[0].strides = __pyx_pybuffernd_Erz.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Erz.diminfo[0].shape = __pyx_pybuffernd_Erz.rcbuffer->pybuffer.shape[0];
  4558. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 133, __pyx_L1_error)
  4559. }
  4560. __pyx_t_17 = 0;
  4561. __Pyx_XDECREF_SET(__pyx_v_Erz, ((PyArrayObject *)__pyx_t_1));
  4562. __pyx_t_1 = 0;
  4563. /* "scattnlay.pyx":134
  4564. * Ery = np.zeros(coords.shape[0], dtype = np.float64)
  4565. * Erz = np.zeros(coords.shape[0], dtype = np.float64)
  4566. * Eix = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4567. * Eiy = np.zeros(coords.shape[0], dtype = np.float64)
  4568. * Eiz = np.zeros(coords.shape[0], dtype = np.float64)
  4569. */
  4570. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 134, __pyx_L1_error)
  4571. __Pyx_GOTREF(__pyx_t_1);
  4572. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 134, __pyx_L1_error)
  4573. __Pyx_GOTREF(__pyx_t_2);
  4574. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4575. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 134, __pyx_L1_error)
  4576. __Pyx_GOTREF(__pyx_t_1);
  4577. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 134, __pyx_L1_error)
  4578. __Pyx_GOTREF(__pyx_t_3);
  4579. __Pyx_GIVEREF(__pyx_t_1);
  4580. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  4581. __pyx_t_1 = 0;
  4582. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 134, __pyx_L1_error)
  4583. __Pyx_GOTREF(__pyx_t_1);
  4584. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 134, __pyx_L1_error)
  4585. __Pyx_GOTREF(__pyx_t_4);
  4586. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 134, __pyx_L1_error)
  4587. __Pyx_GOTREF(__pyx_t_5);
  4588. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4589. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 134, __pyx_L1_error)
  4590. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4591. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 134, __pyx_L1_error)
  4592. __Pyx_GOTREF(__pyx_t_5);
  4593. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4594. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4595. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4596. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 134, __pyx_L1_error)
  4597. __pyx_t_18 = ((PyArrayObject *)__pyx_t_5);
  4598. {
  4599. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4600. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eix.rcbuffer->pybuffer);
  4601. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eix.rcbuffer->pybuffer, (PyObject*)__pyx_t_18, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4602. if (unlikely(__pyx_t_12 < 0)) {
  4603. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  4604. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eix.rcbuffer->pybuffer, (PyObject*)__pyx_v_Eix, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4605. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  4606. __Pyx_RaiseBufferFallbackError();
  4607. } else {
  4608. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  4609. }
  4610. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  4611. }
  4612. __pyx_pybuffernd_Eix.diminfo[0].strides = __pyx_pybuffernd_Eix.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Eix.diminfo[0].shape = __pyx_pybuffernd_Eix.rcbuffer->pybuffer.shape[0];
  4613. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 134, __pyx_L1_error)
  4614. }
  4615. __pyx_t_18 = 0;
  4616. __Pyx_XDECREF_SET(__pyx_v_Eix, ((PyArrayObject *)__pyx_t_5));
  4617. __pyx_t_5 = 0;
  4618. /* "scattnlay.pyx":135
  4619. * Erz = np.zeros(coords.shape[0], dtype = np.float64)
  4620. * Eix = np.zeros(coords.shape[0], dtype = np.float64)
  4621. * Eiy = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4622. * Eiz = np.zeros(coords.shape[0], dtype = np.float64)
  4623. * Hrx = np.zeros(coords.shape[0], dtype = np.float64)
  4624. */
  4625. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 135, __pyx_L1_error)
  4626. __Pyx_GOTREF(__pyx_t_5);
  4627. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 135, __pyx_L1_error)
  4628. __Pyx_GOTREF(__pyx_t_1);
  4629. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4630. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 135, __pyx_L1_error)
  4631. __Pyx_GOTREF(__pyx_t_5);
  4632. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 135, __pyx_L1_error)
  4633. __Pyx_GOTREF(__pyx_t_3);
  4634. __Pyx_GIVEREF(__pyx_t_5);
  4635. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  4636. __pyx_t_5 = 0;
  4637. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 135, __pyx_L1_error)
  4638. __Pyx_GOTREF(__pyx_t_5);
  4639. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 135, __pyx_L1_error)
  4640. __Pyx_GOTREF(__pyx_t_2);
  4641. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 135, __pyx_L1_error)
  4642. __Pyx_GOTREF(__pyx_t_4);
  4643. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4644. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 135, __pyx_L1_error)
  4645. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4646. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 135, __pyx_L1_error)
  4647. __Pyx_GOTREF(__pyx_t_4);
  4648. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4649. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4650. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4651. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 135, __pyx_L1_error)
  4652. __pyx_t_19 = ((PyArrayObject *)__pyx_t_4);
  4653. {
  4654. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4655. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiy.rcbuffer->pybuffer);
  4656. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eiy.rcbuffer->pybuffer, (PyObject*)__pyx_t_19, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4657. if (unlikely(__pyx_t_12 < 0)) {
  4658. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4659. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eiy.rcbuffer->pybuffer, (PyObject*)__pyx_v_Eiy, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4660. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4661. __Pyx_RaiseBufferFallbackError();
  4662. } else {
  4663. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4664. }
  4665. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4666. }
  4667. __pyx_pybuffernd_Eiy.diminfo[0].strides = __pyx_pybuffernd_Eiy.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Eiy.diminfo[0].shape = __pyx_pybuffernd_Eiy.rcbuffer->pybuffer.shape[0];
  4668. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 135, __pyx_L1_error)
  4669. }
  4670. __pyx_t_19 = 0;
  4671. __Pyx_XDECREF_SET(__pyx_v_Eiy, ((PyArrayObject *)__pyx_t_4));
  4672. __pyx_t_4 = 0;
  4673. /* "scattnlay.pyx":136
  4674. * Eix = np.zeros(coords.shape[0], dtype = np.float64)
  4675. * Eiy = np.zeros(coords.shape[0], dtype = np.float64)
  4676. * Eiz = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4677. * Hrx = np.zeros(coords.shape[0], dtype = np.float64)
  4678. * Hry = np.zeros(coords.shape[0], dtype = np.float64)
  4679. */
  4680. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 136, __pyx_L1_error)
  4681. __Pyx_GOTREF(__pyx_t_4);
  4682. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 136, __pyx_L1_error)
  4683. __Pyx_GOTREF(__pyx_t_5);
  4684. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4685. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 136, __pyx_L1_error)
  4686. __Pyx_GOTREF(__pyx_t_4);
  4687. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 136, __pyx_L1_error)
  4688. __Pyx_GOTREF(__pyx_t_3);
  4689. __Pyx_GIVEREF(__pyx_t_4);
  4690. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  4691. __pyx_t_4 = 0;
  4692. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 136, __pyx_L1_error)
  4693. __Pyx_GOTREF(__pyx_t_4);
  4694. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 136, __pyx_L1_error)
  4695. __Pyx_GOTREF(__pyx_t_1);
  4696. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 136, __pyx_L1_error)
  4697. __Pyx_GOTREF(__pyx_t_2);
  4698. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4699. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 136, __pyx_L1_error)
  4700. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4701. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 136, __pyx_L1_error)
  4702. __Pyx_GOTREF(__pyx_t_2);
  4703. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4704. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4705. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4706. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 136, __pyx_L1_error)
  4707. __pyx_t_20 = ((PyArrayObject *)__pyx_t_2);
  4708. {
  4709. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4710. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiz.rcbuffer->pybuffer);
  4711. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eiz.rcbuffer->pybuffer, (PyObject*)__pyx_t_20, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4712. if (unlikely(__pyx_t_12 < 0)) {
  4713. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  4714. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Eiz.rcbuffer->pybuffer, (PyObject*)__pyx_v_Eiz, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4715. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  4716. __Pyx_RaiseBufferFallbackError();
  4717. } else {
  4718. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  4719. }
  4720. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  4721. }
  4722. __pyx_pybuffernd_Eiz.diminfo[0].strides = __pyx_pybuffernd_Eiz.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Eiz.diminfo[0].shape = __pyx_pybuffernd_Eiz.rcbuffer->pybuffer.shape[0];
  4723. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 136, __pyx_L1_error)
  4724. }
  4725. __pyx_t_20 = 0;
  4726. __Pyx_XDECREF_SET(__pyx_v_Eiz, ((PyArrayObject *)__pyx_t_2));
  4727. __pyx_t_2 = 0;
  4728. /* "scattnlay.pyx":137
  4729. * Eiy = np.zeros(coords.shape[0], dtype = np.float64)
  4730. * Eiz = np.zeros(coords.shape[0], dtype = np.float64)
  4731. * Hrx = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4732. * Hry = np.zeros(coords.shape[0], dtype = np.float64)
  4733. * Hrz = np.zeros(coords.shape[0], dtype = np.float64)
  4734. */
  4735. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 137, __pyx_L1_error)
  4736. __Pyx_GOTREF(__pyx_t_2);
  4737. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 137, __pyx_L1_error)
  4738. __Pyx_GOTREF(__pyx_t_4);
  4739. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4740. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 137, __pyx_L1_error)
  4741. __Pyx_GOTREF(__pyx_t_2);
  4742. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 137, __pyx_L1_error)
  4743. __Pyx_GOTREF(__pyx_t_3);
  4744. __Pyx_GIVEREF(__pyx_t_2);
  4745. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  4746. __pyx_t_2 = 0;
  4747. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 137, __pyx_L1_error)
  4748. __Pyx_GOTREF(__pyx_t_2);
  4749. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 137, __pyx_L1_error)
  4750. __Pyx_GOTREF(__pyx_t_5);
  4751. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 137, __pyx_L1_error)
  4752. __Pyx_GOTREF(__pyx_t_1);
  4753. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4754. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 137, __pyx_L1_error)
  4755. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4756. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 137, __pyx_L1_error)
  4757. __Pyx_GOTREF(__pyx_t_1);
  4758. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4759. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4760. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4761. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 137, __pyx_L1_error)
  4762. __pyx_t_21 = ((PyArrayObject *)__pyx_t_1);
  4763. {
  4764. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4765. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrx.rcbuffer->pybuffer);
  4766. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hrx.rcbuffer->pybuffer, (PyObject*)__pyx_t_21, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4767. if (unlikely(__pyx_t_12 < 0)) {
  4768. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4769. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hrx.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hrx, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4770. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4771. __Pyx_RaiseBufferFallbackError();
  4772. } else {
  4773. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4774. }
  4775. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4776. }
  4777. __pyx_pybuffernd_Hrx.diminfo[0].strides = __pyx_pybuffernd_Hrx.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hrx.diminfo[0].shape = __pyx_pybuffernd_Hrx.rcbuffer->pybuffer.shape[0];
  4778. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 137, __pyx_L1_error)
  4779. }
  4780. __pyx_t_21 = 0;
  4781. __Pyx_XDECREF_SET(__pyx_v_Hrx, ((PyArrayObject *)__pyx_t_1));
  4782. __pyx_t_1 = 0;
  4783. /* "scattnlay.pyx":138
  4784. * Eiz = np.zeros(coords.shape[0], dtype = np.float64)
  4785. * Hrx = np.zeros(coords.shape[0], dtype = np.float64)
  4786. * Hry = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4787. * Hrz = np.zeros(coords.shape[0], dtype = np.float64)
  4788. * Hix = np.zeros(coords.shape[0], dtype = np.float64)
  4789. */
  4790. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L1_error)
  4791. __Pyx_GOTREF(__pyx_t_1);
  4792. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 138, __pyx_L1_error)
  4793. __Pyx_GOTREF(__pyx_t_2);
  4794. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4795. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L1_error)
  4796. __Pyx_GOTREF(__pyx_t_1);
  4797. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 138, __pyx_L1_error)
  4798. __Pyx_GOTREF(__pyx_t_3);
  4799. __Pyx_GIVEREF(__pyx_t_1);
  4800. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  4801. __pyx_t_1 = 0;
  4802. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 138, __pyx_L1_error)
  4803. __Pyx_GOTREF(__pyx_t_1);
  4804. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 138, __pyx_L1_error)
  4805. __Pyx_GOTREF(__pyx_t_4);
  4806. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 138, __pyx_L1_error)
  4807. __Pyx_GOTREF(__pyx_t_5);
  4808. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4809. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 138, __pyx_L1_error)
  4810. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4811. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 138, __pyx_L1_error)
  4812. __Pyx_GOTREF(__pyx_t_5);
  4813. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4814. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4815. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4816. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 138, __pyx_L1_error)
  4817. __pyx_t_22 = ((PyArrayObject *)__pyx_t_5);
  4818. {
  4819. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4820. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hry.rcbuffer->pybuffer);
  4821. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hry.rcbuffer->pybuffer, (PyObject*)__pyx_t_22, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4822. if (unlikely(__pyx_t_12 < 0)) {
  4823. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  4824. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hry.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hry, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4825. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  4826. __Pyx_RaiseBufferFallbackError();
  4827. } else {
  4828. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  4829. }
  4830. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  4831. }
  4832. __pyx_pybuffernd_Hry.diminfo[0].strides = __pyx_pybuffernd_Hry.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hry.diminfo[0].shape = __pyx_pybuffernd_Hry.rcbuffer->pybuffer.shape[0];
  4833. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 138, __pyx_L1_error)
  4834. }
  4835. __pyx_t_22 = 0;
  4836. __Pyx_XDECREF_SET(__pyx_v_Hry, ((PyArrayObject *)__pyx_t_5));
  4837. __pyx_t_5 = 0;
  4838. /* "scattnlay.pyx":139
  4839. * Hrx = np.zeros(coords.shape[0], dtype = np.float64)
  4840. * Hry = np.zeros(coords.shape[0], dtype = np.float64)
  4841. * Hrz = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4842. * Hix = np.zeros(coords.shape[0], dtype = np.float64)
  4843. * Hiy = np.zeros(coords.shape[0], dtype = np.float64)
  4844. */
  4845. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 139, __pyx_L1_error)
  4846. __Pyx_GOTREF(__pyx_t_5);
  4847. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_zeros); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L1_error)
  4848. __Pyx_GOTREF(__pyx_t_1);
  4849. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4850. __pyx_t_5 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 139, __pyx_L1_error)
  4851. __Pyx_GOTREF(__pyx_t_5);
  4852. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 139, __pyx_L1_error)
  4853. __Pyx_GOTREF(__pyx_t_3);
  4854. __Pyx_GIVEREF(__pyx_t_5);
  4855. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5);
  4856. __pyx_t_5 = 0;
  4857. __pyx_t_5 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 139, __pyx_L1_error)
  4858. __Pyx_GOTREF(__pyx_t_5);
  4859. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 139, __pyx_L1_error)
  4860. __Pyx_GOTREF(__pyx_t_2);
  4861. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 139, __pyx_L1_error)
  4862. __Pyx_GOTREF(__pyx_t_4);
  4863. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4864. if (PyDict_SetItem(__pyx_t_5, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 139, __pyx_L1_error)
  4865. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4866. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_3, __pyx_t_5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 139, __pyx_L1_error)
  4867. __Pyx_GOTREF(__pyx_t_4);
  4868. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4869. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4870. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4871. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 139, __pyx_L1_error)
  4872. __pyx_t_23 = ((PyArrayObject *)__pyx_t_4);
  4873. {
  4874. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4875. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrz.rcbuffer->pybuffer);
  4876. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hrz.rcbuffer->pybuffer, (PyObject*)__pyx_t_23, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4877. if (unlikely(__pyx_t_12 < 0)) {
  4878. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4879. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hrz.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hrz, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4880. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4881. __Pyx_RaiseBufferFallbackError();
  4882. } else {
  4883. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4884. }
  4885. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4886. }
  4887. __pyx_pybuffernd_Hrz.diminfo[0].strides = __pyx_pybuffernd_Hrz.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hrz.diminfo[0].shape = __pyx_pybuffernd_Hrz.rcbuffer->pybuffer.shape[0];
  4888. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 139, __pyx_L1_error)
  4889. }
  4890. __pyx_t_23 = 0;
  4891. __Pyx_XDECREF_SET(__pyx_v_Hrz, ((PyArrayObject *)__pyx_t_4));
  4892. __pyx_t_4 = 0;
  4893. /* "scattnlay.pyx":140
  4894. * Hry = np.zeros(coords.shape[0], dtype = np.float64)
  4895. * Hrz = np.zeros(coords.shape[0], dtype = np.float64)
  4896. * Hix = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4897. * Hiy = np.zeros(coords.shape[0], dtype = np.float64)
  4898. * Hiz = np.zeros(coords.shape[0], dtype = np.float64)
  4899. */
  4900. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L1_error)
  4901. __Pyx_GOTREF(__pyx_t_4);
  4902. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_zeros); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 140, __pyx_L1_error)
  4903. __Pyx_GOTREF(__pyx_t_5);
  4904. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4905. __pyx_t_4 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L1_error)
  4906. __Pyx_GOTREF(__pyx_t_4);
  4907. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 140, __pyx_L1_error)
  4908. __Pyx_GOTREF(__pyx_t_3);
  4909. __Pyx_GIVEREF(__pyx_t_4);
  4910. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4);
  4911. __pyx_t_4 = 0;
  4912. __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 140, __pyx_L1_error)
  4913. __Pyx_GOTREF(__pyx_t_4);
  4914. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 140, __pyx_L1_error)
  4915. __Pyx_GOTREF(__pyx_t_1);
  4916. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float64); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 140, __pyx_L1_error)
  4917. __Pyx_GOTREF(__pyx_t_2);
  4918. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4919. if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_2) < 0) __PYX_ERR(0, 140, __pyx_L1_error)
  4920. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4921. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_5, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 140, __pyx_L1_error)
  4922. __Pyx_GOTREF(__pyx_t_2);
  4923. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4924. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4925. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4926. if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 140, __pyx_L1_error)
  4927. __pyx_t_24 = ((PyArrayObject *)__pyx_t_2);
  4928. {
  4929. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4930. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hix.rcbuffer->pybuffer);
  4931. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hix.rcbuffer->pybuffer, (PyObject*)__pyx_t_24, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4932. if (unlikely(__pyx_t_12 < 0)) {
  4933. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  4934. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hix.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hix, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4935. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  4936. __Pyx_RaiseBufferFallbackError();
  4937. } else {
  4938. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  4939. }
  4940. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  4941. }
  4942. __pyx_pybuffernd_Hix.diminfo[0].strides = __pyx_pybuffernd_Hix.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hix.diminfo[0].shape = __pyx_pybuffernd_Hix.rcbuffer->pybuffer.shape[0];
  4943. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 140, __pyx_L1_error)
  4944. }
  4945. __pyx_t_24 = 0;
  4946. __Pyx_XDECREF_SET(__pyx_v_Hix, ((PyArrayObject *)__pyx_t_2));
  4947. __pyx_t_2 = 0;
  4948. /* "scattnlay.pyx":141
  4949. * Hrz = np.zeros(coords.shape[0], dtype = np.float64)
  4950. * Hix = np.zeros(coords.shape[0], dtype = np.float64)
  4951. * Hiy = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  4952. * Hiz = np.zeros(coords.shape[0], dtype = np.float64)
  4953. *
  4954. */
  4955. __pyx_t_2 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 141, __pyx_L1_error)
  4956. __Pyx_GOTREF(__pyx_t_2);
  4957. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_zeros); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 141, __pyx_L1_error)
  4958. __Pyx_GOTREF(__pyx_t_4);
  4959. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4960. __pyx_t_2 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 141, __pyx_L1_error)
  4961. __Pyx_GOTREF(__pyx_t_2);
  4962. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 141, __pyx_L1_error)
  4963. __Pyx_GOTREF(__pyx_t_3);
  4964. __Pyx_GIVEREF(__pyx_t_2);
  4965. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
  4966. __pyx_t_2 = 0;
  4967. __pyx_t_2 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 141, __pyx_L1_error)
  4968. __Pyx_GOTREF(__pyx_t_2);
  4969. __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 141, __pyx_L1_error)
  4970. __Pyx_GOTREF(__pyx_t_5);
  4971. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_float64); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 141, __pyx_L1_error)
  4972. __Pyx_GOTREF(__pyx_t_1);
  4973. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  4974. if (PyDict_SetItem(__pyx_t_2, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 141, __pyx_L1_error)
  4975. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  4976. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_4, __pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 141, __pyx_L1_error)
  4977. __Pyx_GOTREF(__pyx_t_1);
  4978. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  4979. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  4980. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  4981. if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 141, __pyx_L1_error)
  4982. __pyx_t_25 = ((PyArrayObject *)__pyx_t_1);
  4983. {
  4984. __Pyx_BufFmt_StackElem __pyx_stack[1];
  4985. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiy.rcbuffer->pybuffer);
  4986. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hiy.rcbuffer->pybuffer, (PyObject*)__pyx_t_25, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  4987. if (unlikely(__pyx_t_12 < 0)) {
  4988. PyErr_Fetch(&__pyx_t_13, &__pyx_t_14, &__pyx_t_15);
  4989. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hiy.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hiy, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  4990. Py_XDECREF(__pyx_t_13); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_15);
  4991. __Pyx_RaiseBufferFallbackError();
  4992. } else {
  4993. PyErr_Restore(__pyx_t_13, __pyx_t_14, __pyx_t_15);
  4994. }
  4995. __pyx_t_13 = __pyx_t_14 = __pyx_t_15 = 0;
  4996. }
  4997. __pyx_pybuffernd_Hiy.diminfo[0].strides = __pyx_pybuffernd_Hiy.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hiy.diminfo[0].shape = __pyx_pybuffernd_Hiy.rcbuffer->pybuffer.shape[0];
  4998. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 141, __pyx_L1_error)
  4999. }
  5000. __pyx_t_25 = 0;
  5001. __Pyx_XDECREF_SET(__pyx_v_Hiy, ((PyArrayObject *)__pyx_t_1));
  5002. __pyx_t_1 = 0;
  5003. /* "scattnlay.pyx":142
  5004. * Hix = np.zeros(coords.shape[0], dtype = np.float64)
  5005. * Hiy = np.zeros(coords.shape[0], dtype = np.float64)
  5006. * Hiz = np.zeros(coords.shape[0], dtype = np.float64) # <<<<<<<<<<<<<<
  5007. *
  5008. * terms[i] = nField(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, mode_n, mode_type, coords.shape[0], coords[:, 0].copy('C'), coords[:, 1].copy('C'), coords[:, 2].copy('C'), npy2c(Erx), npy2c(Ery), npy2c(Erz), npy2c(Eix), npy2c(Eiy), npy2c(Eiz), npy2c(Hrx), npy2c(Hry), npy2c(Hrz), npy2c(Hix), npy2c(Hiy), npy2c(Hiz))
  5009. */
  5010. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 142, __pyx_L1_error)
  5011. __Pyx_GOTREF(__pyx_t_1);
  5012. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 142, __pyx_L1_error)
  5013. __Pyx_GOTREF(__pyx_t_2);
  5014. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5015. __pyx_t_1 = __Pyx_PyInt_From_Py_intptr_t((__pyx_v_coords->dimensions[0])); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 142, __pyx_L1_error)
  5016. __Pyx_GOTREF(__pyx_t_1);
  5017. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 142, __pyx_L1_error)
  5018. __Pyx_GOTREF(__pyx_t_3);
  5019. __Pyx_GIVEREF(__pyx_t_1);
  5020. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
  5021. __pyx_t_1 = 0;
  5022. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 142, __pyx_L1_error)
  5023. __Pyx_GOTREF(__pyx_t_1);
  5024. __pyx_t_4 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 142, __pyx_L1_error)
  5025. __Pyx_GOTREF(__pyx_t_4);
  5026. __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_float64); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error)
  5027. __Pyx_GOTREF(__pyx_t_5);
  5028. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5029. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_5) < 0) __PYX_ERR(0, 142, __pyx_L1_error)
  5030. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5031. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 142, __pyx_L1_error)
  5032. __Pyx_GOTREF(__pyx_t_5);
  5033. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  5034. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5035. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5036. if (!(likely(((__pyx_t_5) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_5, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 142, __pyx_L1_error)
  5037. __pyx_t_26 = ((PyArrayObject *)__pyx_t_5);
  5038. {
  5039. __Pyx_BufFmt_StackElem __pyx_stack[1];
  5040. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiz.rcbuffer->pybuffer);
  5041. __pyx_t_12 = __Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hiz.rcbuffer->pybuffer, (PyObject*)__pyx_t_26, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack);
  5042. if (unlikely(__pyx_t_12 < 0)) {
  5043. PyErr_Fetch(&__pyx_t_15, &__pyx_t_14, &__pyx_t_13);
  5044. if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_Hiz.rcbuffer->pybuffer, (PyObject*)__pyx_v_Hiz, &__Pyx_TypeInfo_nn___pyx_t_5numpy_float64_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) {
  5045. Py_XDECREF(__pyx_t_15); Py_XDECREF(__pyx_t_14); Py_XDECREF(__pyx_t_13);
  5046. __Pyx_RaiseBufferFallbackError();
  5047. } else {
  5048. PyErr_Restore(__pyx_t_15, __pyx_t_14, __pyx_t_13);
  5049. }
  5050. __pyx_t_15 = __pyx_t_14 = __pyx_t_13 = 0;
  5051. }
  5052. __pyx_pybuffernd_Hiz.diminfo[0].strides = __pyx_pybuffernd_Hiz.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_Hiz.diminfo[0].shape = __pyx_pybuffernd_Hiz.rcbuffer->pybuffer.shape[0];
  5053. if (unlikely(__pyx_t_12 < 0)) __PYX_ERR(0, 142, __pyx_L1_error)
  5054. }
  5055. __pyx_t_26 = 0;
  5056. __Pyx_XDECREF_SET(__pyx_v_Hiz, ((PyArrayObject *)__pyx_t_5));
  5057. __pyx_t_5 = 0;
  5058. /* "scattnlay.pyx":144
  5059. * Hiz = np.zeros(coords.shape[0], dtype = np.float64)
  5060. *
  5061. * terms[i] = nField(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, mode_n, mode_type, coords.shape[0], coords[:, 0].copy('C'), coords[:, 1].copy('C'), coords[:, 2].copy('C'), npy2c(Erx), npy2c(Ery), npy2c(Erz), npy2c(Eix), npy2c(Eiy), npy2c(Eiz), npy2c(Hrx), npy2c(Hry), npy2c(Hrz), npy2c(Hix), npy2c(Hiy), npy2c(Hiz)) # <<<<<<<<<<<<<<
  5062. *
  5063. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose()
  5064. */
  5065. __pyx_t_5 = __Pyx_GetItemInt(((PyObject *)__pyx_v_x), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5066. __Pyx_GOTREF(__pyx_t_5);
  5067. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error)
  5068. __Pyx_GOTREF(__pyx_t_1);
  5069. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5070. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__16, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5071. __Pyx_GOTREF(__pyx_t_5);
  5072. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5073. __pyx_t_27 = __pyx_convert_vector_from_py_double(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 144, __pyx_L1_error)
  5074. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5075. __pyx_t_5 = __Pyx_GetItemInt(((PyObject *)__pyx_v_m), __pyx_v_i, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5076. __Pyx_GOTREF(__pyx_t_5);
  5077. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error)
  5078. __Pyx_GOTREF(__pyx_t_1);
  5079. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5080. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__17, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5081. __Pyx_GOTREF(__pyx_t_5);
  5082. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5083. __pyx_t_28 = __pyx_convert_vector_from_py___pyx_t_double_complex(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 144, __pyx_L1_error)
  5084. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5085. __pyx_t_5 = PyObject_GetItem(((PyObject *)__pyx_v_coords), __pyx_tuple__19); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5086. __Pyx_GOTREF(__pyx_t_5);
  5087. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error)
  5088. __Pyx_GOTREF(__pyx_t_1);
  5089. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5090. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__20, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5091. __Pyx_GOTREF(__pyx_t_5);
  5092. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5093. __pyx_t_29 = __pyx_convert_vector_from_py_double(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 144, __pyx_L1_error)
  5094. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5095. __pyx_t_5 = PyObject_GetItem(((PyObject *)__pyx_v_coords), __pyx_tuple__22); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5096. __Pyx_GOTREF(__pyx_t_5);
  5097. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error)
  5098. __Pyx_GOTREF(__pyx_t_1);
  5099. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5100. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__23, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5101. __Pyx_GOTREF(__pyx_t_5);
  5102. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5103. __pyx_t_30 = __pyx_convert_vector_from_py_double(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 144, __pyx_L1_error)
  5104. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5105. __pyx_t_5 = PyObject_GetItem(((PyObject *)__pyx_v_coords), __pyx_tuple__25); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5106. __Pyx_GOTREF(__pyx_t_5);
  5107. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error)
  5108. __Pyx_GOTREF(__pyx_t_1);
  5109. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5110. __pyx_t_5 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__26, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error)
  5111. __Pyx_GOTREF(__pyx_t_5);
  5112. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5113. __pyx_t_31 = __pyx_convert_vector_from_py_double(__pyx_t_5); if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 144, __pyx_L1_error)
  5114. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5115. __pyx_t_32 = __pyx_v_i;
  5116. __pyx_t_12 = -1;
  5117. if (__pyx_t_32 < 0) {
  5118. __pyx_t_32 += __pyx_pybuffernd_terms.diminfo[0].shape;
  5119. if (unlikely(__pyx_t_32 < 0)) __pyx_t_12 = 0;
  5120. } else if (unlikely(__pyx_t_32 >= __pyx_pybuffernd_terms.diminfo[0].shape)) __pyx_t_12 = 0;
  5121. if (unlikely(__pyx_t_12 != -1)) {
  5122. __Pyx_RaiseBufferIndexError(__pyx_t_12);
  5123. __PYX_ERR(0, 144, __pyx_L1_error)
  5124. }
  5125. *__Pyx_BufPtrStrided1d(__pyx_t_5numpy_int_t *, __pyx_pybuffernd_terms.rcbuffer->pybuffer.buf, __pyx_t_32, __pyx_pybuffernd_terms.diminfo[0].strides) = nField((__pyx_v_x->dimensions[1]), __pyx_v_pl, __pyx_t_27, __pyx_t_28, __pyx_v_nmax, __pyx_v_mode_n, __pyx_v_mode_type, (__pyx_v_coords->dimensions[0]), __pyx_t_29, __pyx_t_30, __pyx_t_31, __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Erx)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Ery)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Erz)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Eix)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Eiy)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Eiz)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hrx)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hry)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hrz)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hix)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hiy)), __pyx_f_9scattnlay_npy2c(((PyArrayObject *)__pyx_v_Hiz)));
  5126. /* "scattnlay.pyx":146
  5127. * terms[i] = nField(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, mode_n, mode_type, coords.shape[0], coords[:, 0].copy('C'), coords[:, 1].copy('C'), coords[:, 2].copy('C'), npy2c(Erx), npy2c(Ery), npy2c(Erz), npy2c(Eix), npy2c(Eiy), npy2c(Eiz), npy2c(Hrx), npy2c(Hry), npy2c(Hrz), npy2c(Hix), npy2c(Hiy), npy2c(Hiz))
  5128. *
  5129. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose() # <<<<<<<<<<<<<<
  5130. * H[i] = np.vstack((Hrx.copy('C') + 1.0j*Hix.copy('C'), Hry.copy('C') + 1.0j*Hiy.copy('C'), Hrz.copy('C') + 1.0j*Hiz.copy('C'))).transpose()
  5131. *
  5132. */
  5133. __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5134. __Pyx_GOTREF(__pyx_t_3);
  5135. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_vstack); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 146, __pyx_L1_error)
  5136. __Pyx_GOTREF(__pyx_t_2);
  5137. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5138. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Erx), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5139. __Pyx_GOTREF(__pyx_t_3);
  5140. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__27, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 146, __pyx_L1_error)
  5141. __Pyx_GOTREF(__pyx_t_4);
  5142. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5143. __pyx_t_3 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5144. __Pyx_GOTREF(__pyx_t_3);
  5145. __pyx_t_33 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Eix), __pyx_n_s_copy); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5146. __Pyx_GOTREF(__pyx_t_33);
  5147. __pyx_t_34 = __Pyx_PyObject_Call(__pyx_t_33, __pyx_tuple__28, NULL); if (unlikely(!__pyx_t_34)) __PYX_ERR(0, 146, __pyx_L1_error)
  5148. __Pyx_GOTREF(__pyx_t_34);
  5149. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5150. __pyx_t_33 = PyNumber_Multiply(__pyx_t_3, __pyx_t_34); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5151. __Pyx_GOTREF(__pyx_t_33);
  5152. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5153. __Pyx_DECREF(__pyx_t_34); __pyx_t_34 = 0;
  5154. __pyx_t_34 = PyNumber_Add(__pyx_t_4, __pyx_t_33); if (unlikely(!__pyx_t_34)) __PYX_ERR(0, 146, __pyx_L1_error)
  5155. __Pyx_GOTREF(__pyx_t_34);
  5156. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5157. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5158. __pyx_t_33 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Ery), __pyx_n_s_copy); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5159. __Pyx_GOTREF(__pyx_t_33);
  5160. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_33, __pyx_tuple__29, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 146, __pyx_L1_error)
  5161. __Pyx_GOTREF(__pyx_t_4);
  5162. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5163. __pyx_t_33 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5164. __Pyx_GOTREF(__pyx_t_33);
  5165. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Eiy), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5166. __Pyx_GOTREF(__pyx_t_3);
  5167. __pyx_t_35 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__30, NULL); if (unlikely(!__pyx_t_35)) __PYX_ERR(0, 146, __pyx_L1_error)
  5168. __Pyx_GOTREF(__pyx_t_35);
  5169. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5170. __pyx_t_3 = PyNumber_Multiply(__pyx_t_33, __pyx_t_35); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5171. __Pyx_GOTREF(__pyx_t_3);
  5172. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5173. __Pyx_DECREF(__pyx_t_35); __pyx_t_35 = 0;
  5174. __pyx_t_35 = PyNumber_Add(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_35)) __PYX_ERR(0, 146, __pyx_L1_error)
  5175. __Pyx_GOTREF(__pyx_t_35);
  5176. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5177. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5178. __pyx_t_3 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Erz), __pyx_n_s_copy); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5179. __Pyx_GOTREF(__pyx_t_3);
  5180. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_3, __pyx_tuple__31, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 146, __pyx_L1_error)
  5181. __Pyx_GOTREF(__pyx_t_4);
  5182. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5183. __pyx_t_3 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 146, __pyx_L1_error)
  5184. __Pyx_GOTREF(__pyx_t_3);
  5185. __pyx_t_33 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Eiz), __pyx_n_s_copy); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5186. __Pyx_GOTREF(__pyx_t_33);
  5187. __pyx_t_36 = __Pyx_PyObject_Call(__pyx_t_33, __pyx_tuple__32, NULL); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 146, __pyx_L1_error)
  5188. __Pyx_GOTREF(__pyx_t_36);
  5189. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5190. __pyx_t_33 = PyNumber_Multiply(__pyx_t_3, __pyx_t_36); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5191. __Pyx_GOTREF(__pyx_t_33);
  5192. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5193. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5194. __pyx_t_36 = PyNumber_Add(__pyx_t_4, __pyx_t_33); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 146, __pyx_L1_error)
  5195. __Pyx_GOTREF(__pyx_t_36);
  5196. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5197. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5198. __pyx_t_33 = PyTuple_New(3); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 146, __pyx_L1_error)
  5199. __Pyx_GOTREF(__pyx_t_33);
  5200. __Pyx_GIVEREF(__pyx_t_34);
  5201. PyTuple_SET_ITEM(__pyx_t_33, 0, __pyx_t_34);
  5202. __Pyx_GIVEREF(__pyx_t_35);
  5203. PyTuple_SET_ITEM(__pyx_t_33, 1, __pyx_t_35);
  5204. __Pyx_GIVEREF(__pyx_t_36);
  5205. PyTuple_SET_ITEM(__pyx_t_33, 2, __pyx_t_36);
  5206. __pyx_t_34 = 0;
  5207. __pyx_t_35 = 0;
  5208. __pyx_t_36 = 0;
  5209. __pyx_t_36 = NULL;
  5210. if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_2))) {
  5211. __pyx_t_36 = PyMethod_GET_SELF(__pyx_t_2);
  5212. if (likely(__pyx_t_36)) {
  5213. PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
  5214. __Pyx_INCREF(__pyx_t_36);
  5215. __Pyx_INCREF(function);
  5216. __Pyx_DECREF_SET(__pyx_t_2, function);
  5217. }
  5218. }
  5219. if (!__pyx_t_36) {
  5220. __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_33); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 146, __pyx_L1_error)
  5221. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5222. __Pyx_GOTREF(__pyx_t_1);
  5223. } else {
  5224. #if CYTHON_FAST_PYCALL
  5225. if (PyFunction_Check(__pyx_t_2)) {
  5226. PyObject *__pyx_temp[2] = {__pyx_t_36, __pyx_t_33};
  5227. __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 146, __pyx_L1_error)
  5228. __Pyx_XDECREF(__pyx_t_36); __pyx_t_36 = 0;
  5229. __Pyx_GOTREF(__pyx_t_1);
  5230. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5231. } else
  5232. #endif
  5233. #if CYTHON_FAST_PYCCALL
  5234. if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) {
  5235. PyObject *__pyx_temp[2] = {__pyx_t_36, __pyx_t_33};
  5236. __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 146, __pyx_L1_error)
  5237. __Pyx_XDECREF(__pyx_t_36); __pyx_t_36 = 0;
  5238. __Pyx_GOTREF(__pyx_t_1);
  5239. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5240. } else
  5241. #endif
  5242. {
  5243. __pyx_t_35 = PyTuple_New(1+1); if (unlikely(!__pyx_t_35)) __PYX_ERR(0, 146, __pyx_L1_error)
  5244. __Pyx_GOTREF(__pyx_t_35);
  5245. __Pyx_GIVEREF(__pyx_t_36); PyTuple_SET_ITEM(__pyx_t_35, 0, __pyx_t_36); __pyx_t_36 = NULL;
  5246. __Pyx_GIVEREF(__pyx_t_33);
  5247. PyTuple_SET_ITEM(__pyx_t_35, 0+1, __pyx_t_33);
  5248. __pyx_t_33 = 0;
  5249. __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_35, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 146, __pyx_L1_error)
  5250. __Pyx_GOTREF(__pyx_t_1);
  5251. __Pyx_DECREF(__pyx_t_35); __pyx_t_35 = 0;
  5252. }
  5253. }
  5254. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  5255. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_transpose); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 146, __pyx_L1_error)
  5256. __Pyx_GOTREF(__pyx_t_2);
  5257. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5258. __pyx_t_1 = NULL;
  5259. if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) {
  5260. __pyx_t_1 = PyMethod_GET_SELF(__pyx_t_2);
  5261. if (likely(__pyx_t_1)) {
  5262. PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2);
  5263. __Pyx_INCREF(__pyx_t_1);
  5264. __Pyx_INCREF(function);
  5265. __Pyx_DECREF_SET(__pyx_t_2, function);
  5266. }
  5267. }
  5268. if (__pyx_t_1) {
  5269. __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_2, __pyx_t_1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 146, __pyx_L1_error)
  5270. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5271. } else {
  5272. __pyx_t_5 = __Pyx_PyObject_CallNoArg(__pyx_t_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 146, __pyx_L1_error)
  5273. }
  5274. __Pyx_GOTREF(__pyx_t_5);
  5275. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  5276. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_E), __pyx_v_i, __pyx_t_5, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 146, __pyx_L1_error)
  5277. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5278. /* "scattnlay.pyx":147
  5279. *
  5280. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose()
  5281. * H[i] = np.vstack((Hrx.copy('C') + 1.0j*Hix.copy('C'), Hry.copy('C') + 1.0j*Hiy.copy('C'), Hrz.copy('C') + 1.0j*Hiz.copy('C'))).transpose() # <<<<<<<<<<<<<<
  5282. *
  5283. * return terms, E, H
  5284. */
  5285. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5286. __Pyx_GOTREF(__pyx_t_1);
  5287. __pyx_t_35 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_vstack); if (unlikely(!__pyx_t_35)) __PYX_ERR(0, 147, __pyx_L1_error)
  5288. __Pyx_GOTREF(__pyx_t_35);
  5289. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5290. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hrx), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5291. __Pyx_GOTREF(__pyx_t_1);
  5292. __pyx_t_33 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__33, NULL); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 147, __pyx_L1_error)
  5293. __Pyx_GOTREF(__pyx_t_33);
  5294. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5295. __pyx_t_1 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5296. __Pyx_GOTREF(__pyx_t_1);
  5297. __pyx_t_36 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hix), __pyx_n_s_copy); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5298. __Pyx_GOTREF(__pyx_t_36);
  5299. __pyx_t_34 = __Pyx_PyObject_Call(__pyx_t_36, __pyx_tuple__34, NULL); if (unlikely(!__pyx_t_34)) __PYX_ERR(0, 147, __pyx_L1_error)
  5300. __Pyx_GOTREF(__pyx_t_34);
  5301. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5302. __pyx_t_36 = PyNumber_Multiply(__pyx_t_1, __pyx_t_34); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5303. __Pyx_GOTREF(__pyx_t_36);
  5304. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5305. __Pyx_DECREF(__pyx_t_34); __pyx_t_34 = 0;
  5306. __pyx_t_34 = PyNumber_Add(__pyx_t_33, __pyx_t_36); if (unlikely(!__pyx_t_34)) __PYX_ERR(0, 147, __pyx_L1_error)
  5307. __Pyx_GOTREF(__pyx_t_34);
  5308. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5309. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5310. __pyx_t_36 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hry), __pyx_n_s_copy); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5311. __Pyx_GOTREF(__pyx_t_36);
  5312. __pyx_t_33 = __Pyx_PyObject_Call(__pyx_t_36, __pyx_tuple__35, NULL); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 147, __pyx_L1_error)
  5313. __Pyx_GOTREF(__pyx_t_33);
  5314. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5315. __pyx_t_36 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5316. __Pyx_GOTREF(__pyx_t_36);
  5317. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hiy), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5318. __Pyx_GOTREF(__pyx_t_1);
  5319. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__36, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L1_error)
  5320. __Pyx_GOTREF(__pyx_t_4);
  5321. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5322. __pyx_t_1 = PyNumber_Multiply(__pyx_t_36, __pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5323. __Pyx_GOTREF(__pyx_t_1);
  5324. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5325. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5326. __pyx_t_4 = PyNumber_Add(__pyx_t_33, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L1_error)
  5327. __Pyx_GOTREF(__pyx_t_4);
  5328. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5329. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5330. __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hrz), __pyx_n_s_copy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5331. __Pyx_GOTREF(__pyx_t_1);
  5332. __pyx_t_33 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_tuple__37, NULL); if (unlikely(!__pyx_t_33)) __PYX_ERR(0, 147, __pyx_L1_error)
  5333. __Pyx_GOTREF(__pyx_t_33);
  5334. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5335. __pyx_t_1 = PyComplex_FromDoubles(0.0, 1.0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 147, __pyx_L1_error)
  5336. __Pyx_GOTREF(__pyx_t_1);
  5337. __pyx_t_36 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_Hiz), __pyx_n_s_copy); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5338. __Pyx_GOTREF(__pyx_t_36);
  5339. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_t_36, __pyx_tuple__38, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 147, __pyx_L1_error)
  5340. __Pyx_GOTREF(__pyx_t_3);
  5341. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5342. __pyx_t_36 = PyNumber_Multiply(__pyx_t_1, __pyx_t_3); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5343. __Pyx_GOTREF(__pyx_t_36);
  5344. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  5345. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5346. __pyx_t_3 = PyNumber_Add(__pyx_t_33, __pyx_t_36); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 147, __pyx_L1_error)
  5347. __Pyx_GOTREF(__pyx_t_3);
  5348. __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0;
  5349. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5350. __pyx_t_36 = PyTuple_New(3); if (unlikely(!__pyx_t_36)) __PYX_ERR(0, 147, __pyx_L1_error)
  5351. __Pyx_GOTREF(__pyx_t_36);
  5352. __Pyx_GIVEREF(__pyx_t_34);
  5353. PyTuple_SET_ITEM(__pyx_t_36, 0, __pyx_t_34);
  5354. __Pyx_GIVEREF(__pyx_t_4);
  5355. PyTuple_SET_ITEM(__pyx_t_36, 1, __pyx_t_4);
  5356. __Pyx_GIVEREF(__pyx_t_3);
  5357. PyTuple_SET_ITEM(__pyx_t_36, 2, __pyx_t_3);
  5358. __pyx_t_34 = 0;
  5359. __pyx_t_4 = 0;
  5360. __pyx_t_3 = 0;
  5361. __pyx_t_3 = NULL;
  5362. if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_35))) {
  5363. __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_35);
  5364. if (likely(__pyx_t_3)) {
  5365. PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_35);
  5366. __Pyx_INCREF(__pyx_t_3);
  5367. __Pyx_INCREF(function);
  5368. __Pyx_DECREF_SET(__pyx_t_35, function);
  5369. }
  5370. }
  5371. if (!__pyx_t_3) {
  5372. __pyx_t_2 = __Pyx_PyObject_CallOneArg(__pyx_t_35, __pyx_t_36); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L1_error)
  5373. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5374. __Pyx_GOTREF(__pyx_t_2);
  5375. } else {
  5376. #if CYTHON_FAST_PYCALL
  5377. if (PyFunction_Check(__pyx_t_35)) {
  5378. PyObject *__pyx_temp[2] = {__pyx_t_3, __pyx_t_36};
  5379. __pyx_t_2 = __Pyx_PyFunction_FastCall(__pyx_t_35, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L1_error)
  5380. __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
  5381. __Pyx_GOTREF(__pyx_t_2);
  5382. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5383. } else
  5384. #endif
  5385. #if CYTHON_FAST_PYCCALL
  5386. if (__Pyx_PyFastCFunction_Check(__pyx_t_35)) {
  5387. PyObject *__pyx_temp[2] = {__pyx_t_3, __pyx_t_36};
  5388. __pyx_t_2 = __Pyx_PyCFunction_FastCall(__pyx_t_35, __pyx_temp+1-1, 1+1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L1_error)
  5389. __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
  5390. __Pyx_GOTREF(__pyx_t_2);
  5391. __Pyx_DECREF(__pyx_t_36); __pyx_t_36 = 0;
  5392. } else
  5393. #endif
  5394. {
  5395. __pyx_t_4 = PyTuple_New(1+1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 147, __pyx_L1_error)
  5396. __Pyx_GOTREF(__pyx_t_4);
  5397. __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3); __pyx_t_3 = NULL;
  5398. __Pyx_GIVEREF(__pyx_t_36);
  5399. PyTuple_SET_ITEM(__pyx_t_4, 0+1, __pyx_t_36);
  5400. __pyx_t_36 = 0;
  5401. __pyx_t_2 = __Pyx_PyObject_Call(__pyx_t_35, __pyx_t_4, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 147, __pyx_L1_error)
  5402. __Pyx_GOTREF(__pyx_t_2);
  5403. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  5404. }
  5405. }
  5406. __Pyx_DECREF(__pyx_t_35); __pyx_t_35 = 0;
  5407. __pyx_t_35 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_transpose); if (unlikely(!__pyx_t_35)) __PYX_ERR(0, 147, __pyx_L1_error)
  5408. __Pyx_GOTREF(__pyx_t_35);
  5409. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  5410. __pyx_t_2 = NULL;
  5411. if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_35))) {
  5412. __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_35);
  5413. if (likely(__pyx_t_2)) {
  5414. PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_35);
  5415. __Pyx_INCREF(__pyx_t_2);
  5416. __Pyx_INCREF(function);
  5417. __Pyx_DECREF_SET(__pyx_t_35, function);
  5418. }
  5419. }
  5420. if (__pyx_t_2) {
  5421. __pyx_t_5 = __Pyx_PyObject_CallOneArg(__pyx_t_35, __pyx_t_2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 147, __pyx_L1_error)
  5422. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  5423. } else {
  5424. __pyx_t_5 = __Pyx_PyObject_CallNoArg(__pyx_t_35); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 147, __pyx_L1_error)
  5425. }
  5426. __Pyx_GOTREF(__pyx_t_5);
  5427. __Pyx_DECREF(__pyx_t_35); __pyx_t_35 = 0;
  5428. if (unlikely(__Pyx_SetItemInt(((PyObject *)__pyx_v_H), __pyx_v_i, __pyx_t_5, Py_ssize_t, 1, PyInt_FromSsize_t, 0, 1, 1) < 0)) __PYX_ERR(0, 147, __pyx_L1_error)
  5429. __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
  5430. }
  5431. /* "scattnlay.pyx":149
  5432. * H[i] = np.vstack((Hrx.copy('C') + 1.0j*Hix.copy('C'), Hry.copy('C') + 1.0j*Hiy.copy('C'), Hrz.copy('C') + 1.0j*Hiz.copy('C'))).transpose()
  5433. *
  5434. * return terms, E, H # <<<<<<<<<<<<<<
  5435. *
  5436. */
  5437. __Pyx_XDECREF(__pyx_r);
  5438. __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 149, __pyx_L1_error)
  5439. __Pyx_GOTREF(__pyx_t_5);
  5440. __Pyx_INCREF(((PyObject *)__pyx_v_terms));
  5441. __Pyx_GIVEREF(((PyObject *)__pyx_v_terms));
  5442. PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_terms));
  5443. __Pyx_INCREF(((PyObject *)__pyx_v_E));
  5444. __Pyx_GIVEREF(((PyObject *)__pyx_v_E));
  5445. PyTuple_SET_ITEM(__pyx_t_5, 1, ((PyObject *)__pyx_v_E));
  5446. __Pyx_INCREF(((PyObject *)__pyx_v_H));
  5447. __Pyx_GIVEREF(((PyObject *)__pyx_v_H));
  5448. PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)__pyx_v_H));
  5449. __pyx_r = __pyx_t_5;
  5450. __pyx_t_5 = 0;
  5451. goto __pyx_L0;
  5452. /* "scattnlay.pyx":109
  5453. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  5454. *
  5455. * def fieldnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 2] coords, np.int_t nmax = -1, np.int_t mode_n = -1, np.int_t mode_type = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  5456. * cdef Py_ssize_t i
  5457. *
  5458. */
  5459. /* function exit code */
  5460. __pyx_L1_error:;
  5461. __Pyx_XDECREF(__pyx_t_1);
  5462. __Pyx_XDECREF(__pyx_t_2);
  5463. __Pyx_XDECREF(__pyx_t_3);
  5464. __Pyx_XDECREF(__pyx_t_4);
  5465. __Pyx_XDECREF(__pyx_t_5);
  5466. __Pyx_XDECREF(__pyx_t_33);
  5467. __Pyx_XDECREF(__pyx_t_34);
  5468. __Pyx_XDECREF(__pyx_t_35);
  5469. __Pyx_XDECREF(__pyx_t_36);
  5470. { PyObject *__pyx_type, *__pyx_value, *__pyx_tb;
  5471. __Pyx_PyThreadState_declare
  5472. __Pyx_PyThreadState_assign
  5473. __Pyx_ErrFetch(&__pyx_type, &__pyx_value, &__pyx_tb);
  5474. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_E.rcbuffer->pybuffer);
  5475. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eix.rcbuffer->pybuffer);
  5476. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiy.rcbuffer->pybuffer);
  5477. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiz.rcbuffer->pybuffer);
  5478. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erx.rcbuffer->pybuffer);
  5479. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Ery.rcbuffer->pybuffer);
  5480. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erz.rcbuffer->pybuffer);
  5481. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_H.rcbuffer->pybuffer);
  5482. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hix.rcbuffer->pybuffer);
  5483. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiy.rcbuffer->pybuffer);
  5484. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiz.rcbuffer->pybuffer);
  5485. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrx.rcbuffer->pybuffer);
  5486. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hry.rcbuffer->pybuffer);
  5487. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrz.rcbuffer->pybuffer);
  5488. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_coords.rcbuffer->pybuffer);
  5489. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  5490. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  5491. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  5492. __Pyx_ErrRestore(__pyx_type, __pyx_value, __pyx_tb);}
  5493. __Pyx_AddTraceback("scattnlay.fieldnlay", __pyx_clineno, __pyx_lineno, __pyx_filename);
  5494. __pyx_r = NULL;
  5495. goto __pyx_L2;
  5496. __pyx_L0:;
  5497. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_E.rcbuffer->pybuffer);
  5498. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eix.rcbuffer->pybuffer);
  5499. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiy.rcbuffer->pybuffer);
  5500. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Eiz.rcbuffer->pybuffer);
  5501. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erx.rcbuffer->pybuffer);
  5502. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Ery.rcbuffer->pybuffer);
  5503. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Erz.rcbuffer->pybuffer);
  5504. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_H.rcbuffer->pybuffer);
  5505. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hix.rcbuffer->pybuffer);
  5506. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiy.rcbuffer->pybuffer);
  5507. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hiz.rcbuffer->pybuffer);
  5508. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrx.rcbuffer->pybuffer);
  5509. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hry.rcbuffer->pybuffer);
  5510. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_Hrz.rcbuffer->pybuffer);
  5511. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_coords.rcbuffer->pybuffer);
  5512. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_m.rcbuffer->pybuffer);
  5513. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_terms.rcbuffer->pybuffer);
  5514. __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_x.rcbuffer->pybuffer);
  5515. __pyx_L2:;
  5516. __Pyx_XDECREF((PyObject *)__pyx_v_terms);
  5517. __Pyx_XDECREF((PyObject *)__pyx_v_E);
  5518. __Pyx_XDECREF((PyObject *)__pyx_v_H);
  5519. __Pyx_XDECREF((PyObject *)__pyx_v_Erx);
  5520. __Pyx_XDECREF((PyObject *)__pyx_v_Ery);
  5521. __Pyx_XDECREF((PyObject *)__pyx_v_Erz);
  5522. __Pyx_XDECREF((PyObject *)__pyx_v_Eix);
  5523. __Pyx_XDECREF((PyObject *)__pyx_v_Eiy);
  5524. __Pyx_XDECREF((PyObject *)__pyx_v_Eiz);
  5525. __Pyx_XDECREF((PyObject *)__pyx_v_Hrx);
  5526. __Pyx_XDECREF((PyObject *)__pyx_v_Hry);
  5527. __Pyx_XDECREF((PyObject *)__pyx_v_Hrz);
  5528. __Pyx_XDECREF((PyObject *)__pyx_v_Hix);
  5529. __Pyx_XDECREF((PyObject *)__pyx_v_Hiy);
  5530. __Pyx_XDECREF((PyObject *)__pyx_v_Hiz);
  5531. __Pyx_XGIVEREF(__pyx_r);
  5532. __Pyx_RefNannyFinishContext();
  5533. return __pyx_r;
  5534. }
  5535. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":214
  5536. * # experimental exception made for __getbuffer__ and __releasebuffer__
  5537. * # -- the details of this may change.
  5538. * def __getbuffer__(ndarray self, Py_buffer* info, int flags): # <<<<<<<<<<<<<<
  5539. * # This implementation of getbuffer is geared towards Cython
  5540. * # requirements, and does not yet fullfill the PEP.
  5541. */
  5542. /* Python wrapper */
  5543. static CYTHON_UNUSED int __pyx_pw_5numpy_7ndarray_1__getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/
  5544. static CYTHON_UNUSED int __pyx_pw_5numpy_7ndarray_1__getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) {
  5545. int __pyx_r;
  5546. __Pyx_RefNannyDeclarations
  5547. __Pyx_RefNannySetupContext("__getbuffer__ (wrapper)", 0);
  5548. __pyx_r = __pyx_pf_5numpy_7ndarray___getbuffer__(((PyArrayObject *)__pyx_v_self), ((Py_buffer *)__pyx_v_info), ((int)__pyx_v_flags));
  5549. /* function exit code */
  5550. __Pyx_RefNannyFinishContext();
  5551. return __pyx_r;
  5552. }
  5553. static int __pyx_pf_5numpy_7ndarray___getbuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) {
  5554. int __pyx_v_copy_shape;
  5555. int __pyx_v_i;
  5556. int __pyx_v_ndim;
  5557. int __pyx_v_endian_detector;
  5558. int __pyx_v_little_endian;
  5559. int __pyx_v_t;
  5560. char *__pyx_v_f;
  5561. PyArray_Descr *__pyx_v_descr = 0;
  5562. int __pyx_v_offset;
  5563. int __pyx_v_hasfields;
  5564. int __pyx_r;
  5565. __Pyx_RefNannyDeclarations
  5566. int __pyx_t_1;
  5567. int __pyx_t_2;
  5568. PyObject *__pyx_t_3 = NULL;
  5569. int __pyx_t_4;
  5570. int __pyx_t_5;
  5571. PyObject *__pyx_t_6 = NULL;
  5572. char *__pyx_t_7;
  5573. __Pyx_RefNannySetupContext("__getbuffer__", 0);
  5574. if (__pyx_v_info != NULL) {
  5575. __pyx_v_info->obj = Py_None; __Pyx_INCREF(Py_None);
  5576. __Pyx_GIVEREF(__pyx_v_info->obj);
  5577. }
  5578. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":220
  5579. * # of flags
  5580. *
  5581. * if info == NULL: return # <<<<<<<<<<<<<<
  5582. *
  5583. * cdef int copy_shape, i, ndim
  5584. */
  5585. __pyx_t_1 = ((__pyx_v_info == NULL) != 0);
  5586. if (__pyx_t_1) {
  5587. __pyx_r = 0;
  5588. goto __pyx_L0;
  5589. }
  5590. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":223
  5591. *
  5592. * cdef int copy_shape, i, ndim
  5593. * cdef int endian_detector = 1 # <<<<<<<<<<<<<<
  5594. * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
  5595. *
  5596. */
  5597. __pyx_v_endian_detector = 1;
  5598. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":224
  5599. * cdef int copy_shape, i, ndim
  5600. * cdef int endian_detector = 1
  5601. * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<<
  5602. *
  5603. * ndim = PyArray_NDIM(self)
  5604. */
  5605. __pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0);
  5606. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":226
  5607. * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
  5608. *
  5609. * ndim = PyArray_NDIM(self) # <<<<<<<<<<<<<<
  5610. *
  5611. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  5612. */
  5613. __pyx_v_ndim = PyArray_NDIM(__pyx_v_self);
  5614. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":228
  5615. * ndim = PyArray_NDIM(self)
  5616. *
  5617. * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
  5618. * copy_shape = 1
  5619. * else:
  5620. */
  5621. __pyx_t_1 = (((sizeof(npy_intp)) != (sizeof(Py_ssize_t))) != 0);
  5622. if (__pyx_t_1) {
  5623. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":229
  5624. *
  5625. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  5626. * copy_shape = 1 # <<<<<<<<<<<<<<
  5627. * else:
  5628. * copy_shape = 0
  5629. */
  5630. __pyx_v_copy_shape = 1;
  5631. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":228
  5632. * ndim = PyArray_NDIM(self)
  5633. *
  5634. * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
  5635. * copy_shape = 1
  5636. * else:
  5637. */
  5638. goto __pyx_L4;
  5639. }
  5640. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":231
  5641. * copy_shape = 1
  5642. * else:
  5643. * copy_shape = 0 # <<<<<<<<<<<<<<
  5644. *
  5645. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
  5646. */
  5647. /*else*/ {
  5648. __pyx_v_copy_shape = 0;
  5649. }
  5650. __pyx_L4:;
  5651. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":233
  5652. * copy_shape = 0
  5653. *
  5654. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<<
  5655. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
  5656. * raise ValueError(u"ndarray is not C contiguous")
  5657. */
  5658. __pyx_t_2 = (((__pyx_v_flags & PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS) != 0);
  5659. if (__pyx_t_2) {
  5660. } else {
  5661. __pyx_t_1 = __pyx_t_2;
  5662. goto __pyx_L6_bool_binop_done;
  5663. }
  5664. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":234
  5665. *
  5666. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
  5667. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)): # <<<<<<<<<<<<<<
  5668. * raise ValueError(u"ndarray is not C contiguous")
  5669. *
  5670. */
  5671. __pyx_t_2 = ((!(PyArray_CHKFLAGS(__pyx_v_self, NPY_C_CONTIGUOUS) != 0)) != 0);
  5672. __pyx_t_1 = __pyx_t_2;
  5673. __pyx_L6_bool_binop_done:;
  5674. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":233
  5675. * copy_shape = 0
  5676. *
  5677. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<<
  5678. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
  5679. * raise ValueError(u"ndarray is not C contiguous")
  5680. */
  5681. if (__pyx_t_1) {
  5682. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":235
  5683. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
  5684. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
  5685. * raise ValueError(u"ndarray is not C contiguous") # <<<<<<<<<<<<<<
  5686. *
  5687. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
  5688. */
  5689. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__39, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 235, __pyx_L1_error)
  5690. __Pyx_GOTREF(__pyx_t_3);
  5691. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  5692. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5693. __PYX_ERR(1, 235, __pyx_L1_error)
  5694. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":233
  5695. * copy_shape = 0
  5696. *
  5697. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<<
  5698. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
  5699. * raise ValueError(u"ndarray is not C contiguous")
  5700. */
  5701. }
  5702. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":237
  5703. * raise ValueError(u"ndarray is not C contiguous")
  5704. *
  5705. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<<
  5706. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
  5707. * raise ValueError(u"ndarray is not Fortran contiguous")
  5708. */
  5709. __pyx_t_2 = (((__pyx_v_flags & PyBUF_F_CONTIGUOUS) == PyBUF_F_CONTIGUOUS) != 0);
  5710. if (__pyx_t_2) {
  5711. } else {
  5712. __pyx_t_1 = __pyx_t_2;
  5713. goto __pyx_L9_bool_binop_done;
  5714. }
  5715. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":238
  5716. *
  5717. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
  5718. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)): # <<<<<<<<<<<<<<
  5719. * raise ValueError(u"ndarray is not Fortran contiguous")
  5720. *
  5721. */
  5722. __pyx_t_2 = ((!(PyArray_CHKFLAGS(__pyx_v_self, NPY_F_CONTIGUOUS) != 0)) != 0);
  5723. __pyx_t_1 = __pyx_t_2;
  5724. __pyx_L9_bool_binop_done:;
  5725. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":237
  5726. * raise ValueError(u"ndarray is not C contiguous")
  5727. *
  5728. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<<
  5729. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
  5730. * raise ValueError(u"ndarray is not Fortran contiguous")
  5731. */
  5732. if (__pyx_t_1) {
  5733. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":239
  5734. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
  5735. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
  5736. * raise ValueError(u"ndarray is not Fortran contiguous") # <<<<<<<<<<<<<<
  5737. *
  5738. * info.buf = PyArray_DATA(self)
  5739. */
  5740. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__40, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 239, __pyx_L1_error)
  5741. __Pyx_GOTREF(__pyx_t_3);
  5742. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  5743. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  5744. __PYX_ERR(1, 239, __pyx_L1_error)
  5745. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":237
  5746. * raise ValueError(u"ndarray is not C contiguous")
  5747. *
  5748. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<<
  5749. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
  5750. * raise ValueError(u"ndarray is not Fortran contiguous")
  5751. */
  5752. }
  5753. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":241
  5754. * raise ValueError(u"ndarray is not Fortran contiguous")
  5755. *
  5756. * info.buf = PyArray_DATA(self) # <<<<<<<<<<<<<<
  5757. * info.ndim = ndim
  5758. * if copy_shape:
  5759. */
  5760. __pyx_v_info->buf = PyArray_DATA(__pyx_v_self);
  5761. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":242
  5762. *
  5763. * info.buf = PyArray_DATA(self)
  5764. * info.ndim = ndim # <<<<<<<<<<<<<<
  5765. * if copy_shape:
  5766. * # Allocate new buffer for strides and shape info.
  5767. */
  5768. __pyx_v_info->ndim = __pyx_v_ndim;
  5769. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":243
  5770. * info.buf = PyArray_DATA(self)
  5771. * info.ndim = ndim
  5772. * if copy_shape: # <<<<<<<<<<<<<<
  5773. * # Allocate new buffer for strides and shape info.
  5774. * # This is allocated as one block, strides first.
  5775. */
  5776. __pyx_t_1 = (__pyx_v_copy_shape != 0);
  5777. if (__pyx_t_1) {
  5778. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":246
  5779. * # Allocate new buffer for strides and shape info.
  5780. * # This is allocated as one block, strides first.
  5781. * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim) # <<<<<<<<<<<<<<
  5782. * info.shape = info.strides + ndim
  5783. * for i in range(ndim):
  5784. */
  5785. __pyx_v_info->strides = ((Py_ssize_t *)PyObject_Malloc((((sizeof(Py_ssize_t)) * 2) * ((size_t)__pyx_v_ndim))));
  5786. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":247
  5787. * # This is allocated as one block, strides first.
  5788. * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim)
  5789. * info.shape = info.strides + ndim # <<<<<<<<<<<<<<
  5790. * for i in range(ndim):
  5791. * info.strides[i] = PyArray_STRIDES(self)[i]
  5792. */
  5793. __pyx_v_info->shape = (__pyx_v_info->strides + __pyx_v_ndim);
  5794. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":248
  5795. * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim)
  5796. * info.shape = info.strides + ndim
  5797. * for i in range(ndim): # <<<<<<<<<<<<<<
  5798. * info.strides[i] = PyArray_STRIDES(self)[i]
  5799. * info.shape[i] = PyArray_DIMS(self)[i]
  5800. */
  5801. __pyx_t_4 = __pyx_v_ndim;
  5802. for (__pyx_t_5 = 0; __pyx_t_5 < __pyx_t_4; __pyx_t_5+=1) {
  5803. __pyx_v_i = __pyx_t_5;
  5804. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":249
  5805. * info.shape = info.strides + ndim
  5806. * for i in range(ndim):
  5807. * info.strides[i] = PyArray_STRIDES(self)[i] # <<<<<<<<<<<<<<
  5808. * info.shape[i] = PyArray_DIMS(self)[i]
  5809. * else:
  5810. */
  5811. (__pyx_v_info->strides[__pyx_v_i]) = (PyArray_STRIDES(__pyx_v_self)[__pyx_v_i]);
  5812. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":250
  5813. * for i in range(ndim):
  5814. * info.strides[i] = PyArray_STRIDES(self)[i]
  5815. * info.shape[i] = PyArray_DIMS(self)[i] # <<<<<<<<<<<<<<
  5816. * else:
  5817. * info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
  5818. */
  5819. (__pyx_v_info->shape[__pyx_v_i]) = (PyArray_DIMS(__pyx_v_self)[__pyx_v_i]);
  5820. }
  5821. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":243
  5822. * info.buf = PyArray_DATA(self)
  5823. * info.ndim = ndim
  5824. * if copy_shape: # <<<<<<<<<<<<<<
  5825. * # Allocate new buffer for strides and shape info.
  5826. * # This is allocated as one block, strides first.
  5827. */
  5828. goto __pyx_L11;
  5829. }
  5830. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":252
  5831. * info.shape[i] = PyArray_DIMS(self)[i]
  5832. * else:
  5833. * info.strides = <Py_ssize_t*>PyArray_STRIDES(self) # <<<<<<<<<<<<<<
  5834. * info.shape = <Py_ssize_t*>PyArray_DIMS(self)
  5835. * info.suboffsets = NULL
  5836. */
  5837. /*else*/ {
  5838. __pyx_v_info->strides = ((Py_ssize_t *)PyArray_STRIDES(__pyx_v_self));
  5839. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":253
  5840. * else:
  5841. * info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
  5842. * info.shape = <Py_ssize_t*>PyArray_DIMS(self) # <<<<<<<<<<<<<<
  5843. * info.suboffsets = NULL
  5844. * info.itemsize = PyArray_ITEMSIZE(self)
  5845. */
  5846. __pyx_v_info->shape = ((Py_ssize_t *)PyArray_DIMS(__pyx_v_self));
  5847. }
  5848. __pyx_L11:;
  5849. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":254
  5850. * info.strides = <Py_ssize_t*>PyArray_STRIDES(self)
  5851. * info.shape = <Py_ssize_t*>PyArray_DIMS(self)
  5852. * info.suboffsets = NULL # <<<<<<<<<<<<<<
  5853. * info.itemsize = PyArray_ITEMSIZE(self)
  5854. * info.readonly = not PyArray_ISWRITEABLE(self)
  5855. */
  5856. __pyx_v_info->suboffsets = NULL;
  5857. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":255
  5858. * info.shape = <Py_ssize_t*>PyArray_DIMS(self)
  5859. * info.suboffsets = NULL
  5860. * info.itemsize = PyArray_ITEMSIZE(self) # <<<<<<<<<<<<<<
  5861. * info.readonly = not PyArray_ISWRITEABLE(self)
  5862. *
  5863. */
  5864. __pyx_v_info->itemsize = PyArray_ITEMSIZE(__pyx_v_self);
  5865. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":256
  5866. * info.suboffsets = NULL
  5867. * info.itemsize = PyArray_ITEMSIZE(self)
  5868. * info.readonly = not PyArray_ISWRITEABLE(self) # <<<<<<<<<<<<<<
  5869. *
  5870. * cdef int t
  5871. */
  5872. __pyx_v_info->readonly = (!(PyArray_ISWRITEABLE(__pyx_v_self) != 0));
  5873. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":259
  5874. *
  5875. * cdef int t
  5876. * cdef char* f = NULL # <<<<<<<<<<<<<<
  5877. * cdef dtype descr = self.descr
  5878. * cdef int offset
  5879. */
  5880. __pyx_v_f = NULL;
  5881. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":260
  5882. * cdef int t
  5883. * cdef char* f = NULL
  5884. * cdef dtype descr = self.descr # <<<<<<<<<<<<<<
  5885. * cdef int offset
  5886. *
  5887. */
  5888. __pyx_t_3 = ((PyObject *)__pyx_v_self->descr);
  5889. __Pyx_INCREF(__pyx_t_3);
  5890. __pyx_v_descr = ((PyArray_Descr *)__pyx_t_3);
  5891. __pyx_t_3 = 0;
  5892. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":263
  5893. * cdef int offset
  5894. *
  5895. * cdef bint hasfields = PyDataType_HASFIELDS(descr) # <<<<<<<<<<<<<<
  5896. *
  5897. * if not hasfields and not copy_shape:
  5898. */
  5899. __pyx_v_hasfields = PyDataType_HASFIELDS(__pyx_v_descr);
  5900. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":265
  5901. * cdef bint hasfields = PyDataType_HASFIELDS(descr)
  5902. *
  5903. * if not hasfields and not copy_shape: # <<<<<<<<<<<<<<
  5904. * # do not call releasebuffer
  5905. * info.obj = None
  5906. */
  5907. __pyx_t_2 = ((!(__pyx_v_hasfields != 0)) != 0);
  5908. if (__pyx_t_2) {
  5909. } else {
  5910. __pyx_t_1 = __pyx_t_2;
  5911. goto __pyx_L15_bool_binop_done;
  5912. }
  5913. __pyx_t_2 = ((!(__pyx_v_copy_shape != 0)) != 0);
  5914. __pyx_t_1 = __pyx_t_2;
  5915. __pyx_L15_bool_binop_done:;
  5916. if (__pyx_t_1) {
  5917. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":267
  5918. * if not hasfields and not copy_shape:
  5919. * # do not call releasebuffer
  5920. * info.obj = None # <<<<<<<<<<<<<<
  5921. * else:
  5922. * # need to call releasebuffer
  5923. */
  5924. __Pyx_INCREF(Py_None);
  5925. __Pyx_GIVEREF(Py_None);
  5926. __Pyx_GOTREF(__pyx_v_info->obj);
  5927. __Pyx_DECREF(__pyx_v_info->obj);
  5928. __pyx_v_info->obj = Py_None;
  5929. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":265
  5930. * cdef bint hasfields = PyDataType_HASFIELDS(descr)
  5931. *
  5932. * if not hasfields and not copy_shape: # <<<<<<<<<<<<<<
  5933. * # do not call releasebuffer
  5934. * info.obj = None
  5935. */
  5936. goto __pyx_L14;
  5937. }
  5938. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":270
  5939. * else:
  5940. * # need to call releasebuffer
  5941. * info.obj = self # <<<<<<<<<<<<<<
  5942. *
  5943. * if not hasfields:
  5944. */
  5945. /*else*/ {
  5946. __Pyx_INCREF(((PyObject *)__pyx_v_self));
  5947. __Pyx_GIVEREF(((PyObject *)__pyx_v_self));
  5948. __Pyx_GOTREF(__pyx_v_info->obj);
  5949. __Pyx_DECREF(__pyx_v_info->obj);
  5950. __pyx_v_info->obj = ((PyObject *)__pyx_v_self);
  5951. }
  5952. __pyx_L14:;
  5953. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":272
  5954. * info.obj = self
  5955. *
  5956. * if not hasfields: # <<<<<<<<<<<<<<
  5957. * t = descr.type_num
  5958. * if ((descr.byteorder == c'>' and little_endian) or
  5959. */
  5960. __pyx_t_1 = ((!(__pyx_v_hasfields != 0)) != 0);
  5961. if (__pyx_t_1) {
  5962. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":273
  5963. *
  5964. * if not hasfields:
  5965. * t = descr.type_num # <<<<<<<<<<<<<<
  5966. * if ((descr.byteorder == c'>' and little_endian) or
  5967. * (descr.byteorder == c'<' and not little_endian)):
  5968. */
  5969. __pyx_t_4 = __pyx_v_descr->type_num;
  5970. __pyx_v_t = __pyx_t_4;
  5971. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":274
  5972. * if not hasfields:
  5973. * t = descr.type_num
  5974. * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  5975. * (descr.byteorder == c'<' and not little_endian)):
  5976. * raise ValueError(u"Non-native byte order not supported")
  5977. */
  5978. __pyx_t_2 = ((__pyx_v_descr->byteorder == '>') != 0);
  5979. if (!__pyx_t_2) {
  5980. goto __pyx_L20_next_or;
  5981. } else {
  5982. }
  5983. __pyx_t_2 = (__pyx_v_little_endian != 0);
  5984. if (!__pyx_t_2) {
  5985. } else {
  5986. __pyx_t_1 = __pyx_t_2;
  5987. goto __pyx_L19_bool_binop_done;
  5988. }
  5989. __pyx_L20_next_or:;
  5990. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":275
  5991. * t = descr.type_num
  5992. * if ((descr.byteorder == c'>' and little_endian) or
  5993. * (descr.byteorder == c'<' and not little_endian)): # <<<<<<<<<<<<<<
  5994. * raise ValueError(u"Non-native byte order not supported")
  5995. * if t == NPY_BYTE: f = "b"
  5996. */
  5997. __pyx_t_2 = ((__pyx_v_descr->byteorder == '<') != 0);
  5998. if (__pyx_t_2) {
  5999. } else {
  6000. __pyx_t_1 = __pyx_t_2;
  6001. goto __pyx_L19_bool_binop_done;
  6002. }
  6003. __pyx_t_2 = ((!(__pyx_v_little_endian != 0)) != 0);
  6004. __pyx_t_1 = __pyx_t_2;
  6005. __pyx_L19_bool_binop_done:;
  6006. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":274
  6007. * if not hasfields:
  6008. * t = descr.type_num
  6009. * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  6010. * (descr.byteorder == c'<' and not little_endian)):
  6011. * raise ValueError(u"Non-native byte order not supported")
  6012. */
  6013. if (__pyx_t_1) {
  6014. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":276
  6015. * if ((descr.byteorder == c'>' and little_endian) or
  6016. * (descr.byteorder == c'<' and not little_endian)):
  6017. * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
  6018. * if t == NPY_BYTE: f = "b"
  6019. * elif t == NPY_UBYTE: f = "B"
  6020. */
  6021. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__41, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 276, __pyx_L1_error)
  6022. __Pyx_GOTREF(__pyx_t_3);
  6023. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  6024. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6025. __PYX_ERR(1, 276, __pyx_L1_error)
  6026. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":274
  6027. * if not hasfields:
  6028. * t = descr.type_num
  6029. * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  6030. * (descr.byteorder == c'<' and not little_endian)):
  6031. * raise ValueError(u"Non-native byte order not supported")
  6032. */
  6033. }
  6034. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":277
  6035. * (descr.byteorder == c'<' and not little_endian)):
  6036. * raise ValueError(u"Non-native byte order not supported")
  6037. * if t == NPY_BYTE: f = "b" # <<<<<<<<<<<<<<
  6038. * elif t == NPY_UBYTE: f = "B"
  6039. * elif t == NPY_SHORT: f = "h"
  6040. */
  6041. switch (__pyx_v_t) {
  6042. case NPY_BYTE:
  6043. __pyx_v_f = ((char *)"b");
  6044. break;
  6045. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":278
  6046. * raise ValueError(u"Non-native byte order not supported")
  6047. * if t == NPY_BYTE: f = "b"
  6048. * elif t == NPY_UBYTE: f = "B" # <<<<<<<<<<<<<<
  6049. * elif t == NPY_SHORT: f = "h"
  6050. * elif t == NPY_USHORT: f = "H"
  6051. */
  6052. case NPY_UBYTE:
  6053. __pyx_v_f = ((char *)"B");
  6054. break;
  6055. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":279
  6056. * if t == NPY_BYTE: f = "b"
  6057. * elif t == NPY_UBYTE: f = "B"
  6058. * elif t == NPY_SHORT: f = "h" # <<<<<<<<<<<<<<
  6059. * elif t == NPY_USHORT: f = "H"
  6060. * elif t == NPY_INT: f = "i"
  6061. */
  6062. case NPY_SHORT:
  6063. __pyx_v_f = ((char *)"h");
  6064. break;
  6065. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":280
  6066. * elif t == NPY_UBYTE: f = "B"
  6067. * elif t == NPY_SHORT: f = "h"
  6068. * elif t == NPY_USHORT: f = "H" # <<<<<<<<<<<<<<
  6069. * elif t == NPY_INT: f = "i"
  6070. * elif t == NPY_UINT: f = "I"
  6071. */
  6072. case NPY_USHORT:
  6073. __pyx_v_f = ((char *)"H");
  6074. break;
  6075. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":281
  6076. * elif t == NPY_SHORT: f = "h"
  6077. * elif t == NPY_USHORT: f = "H"
  6078. * elif t == NPY_INT: f = "i" # <<<<<<<<<<<<<<
  6079. * elif t == NPY_UINT: f = "I"
  6080. * elif t == NPY_LONG: f = "l"
  6081. */
  6082. case NPY_INT:
  6083. __pyx_v_f = ((char *)"i");
  6084. break;
  6085. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":282
  6086. * elif t == NPY_USHORT: f = "H"
  6087. * elif t == NPY_INT: f = "i"
  6088. * elif t == NPY_UINT: f = "I" # <<<<<<<<<<<<<<
  6089. * elif t == NPY_LONG: f = "l"
  6090. * elif t == NPY_ULONG: f = "L"
  6091. */
  6092. case NPY_UINT:
  6093. __pyx_v_f = ((char *)"I");
  6094. break;
  6095. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":283
  6096. * elif t == NPY_INT: f = "i"
  6097. * elif t == NPY_UINT: f = "I"
  6098. * elif t == NPY_LONG: f = "l" # <<<<<<<<<<<<<<
  6099. * elif t == NPY_ULONG: f = "L"
  6100. * elif t == NPY_LONGLONG: f = "q"
  6101. */
  6102. case NPY_LONG:
  6103. __pyx_v_f = ((char *)"l");
  6104. break;
  6105. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":284
  6106. * elif t == NPY_UINT: f = "I"
  6107. * elif t == NPY_LONG: f = "l"
  6108. * elif t == NPY_ULONG: f = "L" # <<<<<<<<<<<<<<
  6109. * elif t == NPY_LONGLONG: f = "q"
  6110. * elif t == NPY_ULONGLONG: f = "Q"
  6111. */
  6112. case NPY_ULONG:
  6113. __pyx_v_f = ((char *)"L");
  6114. break;
  6115. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":285
  6116. * elif t == NPY_LONG: f = "l"
  6117. * elif t == NPY_ULONG: f = "L"
  6118. * elif t == NPY_LONGLONG: f = "q" # <<<<<<<<<<<<<<
  6119. * elif t == NPY_ULONGLONG: f = "Q"
  6120. * elif t == NPY_FLOAT: f = "f"
  6121. */
  6122. case NPY_LONGLONG:
  6123. __pyx_v_f = ((char *)"q");
  6124. break;
  6125. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":286
  6126. * elif t == NPY_ULONG: f = "L"
  6127. * elif t == NPY_LONGLONG: f = "q"
  6128. * elif t == NPY_ULONGLONG: f = "Q" # <<<<<<<<<<<<<<
  6129. * elif t == NPY_FLOAT: f = "f"
  6130. * elif t == NPY_DOUBLE: f = "d"
  6131. */
  6132. case NPY_ULONGLONG:
  6133. __pyx_v_f = ((char *)"Q");
  6134. break;
  6135. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":287
  6136. * elif t == NPY_LONGLONG: f = "q"
  6137. * elif t == NPY_ULONGLONG: f = "Q"
  6138. * elif t == NPY_FLOAT: f = "f" # <<<<<<<<<<<<<<
  6139. * elif t == NPY_DOUBLE: f = "d"
  6140. * elif t == NPY_LONGDOUBLE: f = "g"
  6141. */
  6142. case NPY_FLOAT:
  6143. __pyx_v_f = ((char *)"f");
  6144. break;
  6145. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":288
  6146. * elif t == NPY_ULONGLONG: f = "Q"
  6147. * elif t == NPY_FLOAT: f = "f"
  6148. * elif t == NPY_DOUBLE: f = "d" # <<<<<<<<<<<<<<
  6149. * elif t == NPY_LONGDOUBLE: f = "g"
  6150. * elif t == NPY_CFLOAT: f = "Zf"
  6151. */
  6152. case NPY_DOUBLE:
  6153. __pyx_v_f = ((char *)"d");
  6154. break;
  6155. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":289
  6156. * elif t == NPY_FLOAT: f = "f"
  6157. * elif t == NPY_DOUBLE: f = "d"
  6158. * elif t == NPY_LONGDOUBLE: f = "g" # <<<<<<<<<<<<<<
  6159. * elif t == NPY_CFLOAT: f = "Zf"
  6160. * elif t == NPY_CDOUBLE: f = "Zd"
  6161. */
  6162. case NPY_LONGDOUBLE:
  6163. __pyx_v_f = ((char *)"g");
  6164. break;
  6165. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":290
  6166. * elif t == NPY_DOUBLE: f = "d"
  6167. * elif t == NPY_LONGDOUBLE: f = "g"
  6168. * elif t == NPY_CFLOAT: f = "Zf" # <<<<<<<<<<<<<<
  6169. * elif t == NPY_CDOUBLE: f = "Zd"
  6170. * elif t == NPY_CLONGDOUBLE: f = "Zg"
  6171. */
  6172. case NPY_CFLOAT:
  6173. __pyx_v_f = ((char *)"Zf");
  6174. break;
  6175. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":291
  6176. * elif t == NPY_LONGDOUBLE: f = "g"
  6177. * elif t == NPY_CFLOAT: f = "Zf"
  6178. * elif t == NPY_CDOUBLE: f = "Zd" # <<<<<<<<<<<<<<
  6179. * elif t == NPY_CLONGDOUBLE: f = "Zg"
  6180. * elif t == NPY_OBJECT: f = "O"
  6181. */
  6182. case NPY_CDOUBLE:
  6183. __pyx_v_f = ((char *)"Zd");
  6184. break;
  6185. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":292
  6186. * elif t == NPY_CFLOAT: f = "Zf"
  6187. * elif t == NPY_CDOUBLE: f = "Zd"
  6188. * elif t == NPY_CLONGDOUBLE: f = "Zg" # <<<<<<<<<<<<<<
  6189. * elif t == NPY_OBJECT: f = "O"
  6190. * else:
  6191. */
  6192. case NPY_CLONGDOUBLE:
  6193. __pyx_v_f = ((char *)"Zg");
  6194. break;
  6195. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":293
  6196. * elif t == NPY_CDOUBLE: f = "Zd"
  6197. * elif t == NPY_CLONGDOUBLE: f = "Zg"
  6198. * elif t == NPY_OBJECT: f = "O" # <<<<<<<<<<<<<<
  6199. * else:
  6200. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
  6201. */
  6202. case NPY_OBJECT:
  6203. __pyx_v_f = ((char *)"O");
  6204. break;
  6205. default:
  6206. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":295
  6207. * elif t == NPY_OBJECT: f = "O"
  6208. * else:
  6209. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<<
  6210. * info.format = f
  6211. * return
  6212. */
  6213. __pyx_t_3 = __Pyx_PyInt_From_int(__pyx_v_t); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 295, __pyx_L1_error)
  6214. __Pyx_GOTREF(__pyx_t_3);
  6215. __pyx_t_6 = PyUnicode_Format(__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_t_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 295, __pyx_L1_error)
  6216. __Pyx_GOTREF(__pyx_t_6);
  6217. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6218. __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 295, __pyx_L1_error)
  6219. __Pyx_GOTREF(__pyx_t_3);
  6220. __Pyx_GIVEREF(__pyx_t_6);
  6221. PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_6);
  6222. __pyx_t_6 = 0;
  6223. __pyx_t_6 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_t_3, NULL); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 295, __pyx_L1_error)
  6224. __Pyx_GOTREF(__pyx_t_6);
  6225. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6226. __Pyx_Raise(__pyx_t_6, 0, 0, 0);
  6227. __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
  6228. __PYX_ERR(1, 295, __pyx_L1_error)
  6229. break;
  6230. }
  6231. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":296
  6232. * else:
  6233. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
  6234. * info.format = f # <<<<<<<<<<<<<<
  6235. * return
  6236. * else:
  6237. */
  6238. __pyx_v_info->format = __pyx_v_f;
  6239. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":297
  6240. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
  6241. * info.format = f
  6242. * return # <<<<<<<<<<<<<<
  6243. * else:
  6244. * info.format = <char*>PyObject_Malloc(_buffer_format_string_len)
  6245. */
  6246. __pyx_r = 0;
  6247. goto __pyx_L0;
  6248. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":272
  6249. * info.obj = self
  6250. *
  6251. * if not hasfields: # <<<<<<<<<<<<<<
  6252. * t = descr.type_num
  6253. * if ((descr.byteorder == c'>' and little_endian) or
  6254. */
  6255. }
  6256. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":299
  6257. * return
  6258. * else:
  6259. * info.format = <char*>PyObject_Malloc(_buffer_format_string_len) # <<<<<<<<<<<<<<
  6260. * info.format[0] = c'^' # Native data types, manual alignment
  6261. * offset = 0
  6262. */
  6263. /*else*/ {
  6264. __pyx_v_info->format = ((char *)PyObject_Malloc(0xFF));
  6265. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":300
  6266. * else:
  6267. * info.format = <char*>PyObject_Malloc(_buffer_format_string_len)
  6268. * info.format[0] = c'^' # Native data types, manual alignment # <<<<<<<<<<<<<<
  6269. * offset = 0
  6270. * f = _util_dtypestring(descr, info.format + 1,
  6271. */
  6272. (__pyx_v_info->format[0]) = '^';
  6273. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":301
  6274. * info.format = <char*>PyObject_Malloc(_buffer_format_string_len)
  6275. * info.format[0] = c'^' # Native data types, manual alignment
  6276. * offset = 0 # <<<<<<<<<<<<<<
  6277. * f = _util_dtypestring(descr, info.format + 1,
  6278. * info.format + _buffer_format_string_len,
  6279. */
  6280. __pyx_v_offset = 0;
  6281. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":302
  6282. * info.format[0] = c'^' # Native data types, manual alignment
  6283. * offset = 0
  6284. * f = _util_dtypestring(descr, info.format + 1, # <<<<<<<<<<<<<<
  6285. * info.format + _buffer_format_string_len,
  6286. * &offset)
  6287. */
  6288. __pyx_t_7 = __pyx_f_5numpy__util_dtypestring(__pyx_v_descr, (__pyx_v_info->format + 1), (__pyx_v_info->format + 0xFF), (&__pyx_v_offset)); if (unlikely(__pyx_t_7 == ((char *)NULL))) __PYX_ERR(1, 302, __pyx_L1_error)
  6289. __pyx_v_f = __pyx_t_7;
  6290. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":305
  6291. * info.format + _buffer_format_string_len,
  6292. * &offset)
  6293. * f[0] = c'\0' # Terminate format string # <<<<<<<<<<<<<<
  6294. *
  6295. * def __releasebuffer__(ndarray self, Py_buffer* info):
  6296. */
  6297. (__pyx_v_f[0]) = '\x00';
  6298. }
  6299. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":214
  6300. * # experimental exception made for __getbuffer__ and __releasebuffer__
  6301. * # -- the details of this may change.
  6302. * def __getbuffer__(ndarray self, Py_buffer* info, int flags): # <<<<<<<<<<<<<<
  6303. * # This implementation of getbuffer is geared towards Cython
  6304. * # requirements, and does not yet fullfill the PEP.
  6305. */
  6306. /* function exit code */
  6307. __pyx_r = 0;
  6308. goto __pyx_L0;
  6309. __pyx_L1_error:;
  6310. __Pyx_XDECREF(__pyx_t_3);
  6311. __Pyx_XDECREF(__pyx_t_6);
  6312. __Pyx_AddTraceback("numpy.ndarray.__getbuffer__", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6313. __pyx_r = -1;
  6314. if (__pyx_v_info != NULL && __pyx_v_info->obj != NULL) {
  6315. __Pyx_GOTREF(__pyx_v_info->obj);
  6316. __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = NULL;
  6317. }
  6318. goto __pyx_L2;
  6319. __pyx_L0:;
  6320. if (__pyx_v_info != NULL && __pyx_v_info->obj == Py_None) {
  6321. __Pyx_GOTREF(Py_None);
  6322. __Pyx_DECREF(Py_None); __pyx_v_info->obj = NULL;
  6323. }
  6324. __pyx_L2:;
  6325. __Pyx_XDECREF((PyObject *)__pyx_v_descr);
  6326. __Pyx_RefNannyFinishContext();
  6327. return __pyx_r;
  6328. }
  6329. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":307
  6330. * f[0] = c'\0' # Terminate format string
  6331. *
  6332. * def __releasebuffer__(ndarray self, Py_buffer* info): # <<<<<<<<<<<<<<
  6333. * if PyArray_HASFIELDS(self):
  6334. * PyObject_Free(info.format)
  6335. */
  6336. /* Python wrapper */
  6337. static CYTHON_UNUSED void __pyx_pw_5numpy_7ndarray_3__releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info); /*proto*/
  6338. static CYTHON_UNUSED void __pyx_pw_5numpy_7ndarray_3__releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info) {
  6339. __Pyx_RefNannyDeclarations
  6340. __Pyx_RefNannySetupContext("__releasebuffer__ (wrapper)", 0);
  6341. __pyx_pf_5numpy_7ndarray_2__releasebuffer__(((PyArrayObject *)__pyx_v_self), ((Py_buffer *)__pyx_v_info));
  6342. /* function exit code */
  6343. __Pyx_RefNannyFinishContext();
  6344. }
  6345. static void __pyx_pf_5numpy_7ndarray_2__releasebuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info) {
  6346. __Pyx_RefNannyDeclarations
  6347. int __pyx_t_1;
  6348. __Pyx_RefNannySetupContext("__releasebuffer__", 0);
  6349. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":308
  6350. *
  6351. * def __releasebuffer__(ndarray self, Py_buffer* info):
  6352. * if PyArray_HASFIELDS(self): # <<<<<<<<<<<<<<
  6353. * PyObject_Free(info.format)
  6354. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  6355. */
  6356. __pyx_t_1 = (PyArray_HASFIELDS(__pyx_v_self) != 0);
  6357. if (__pyx_t_1) {
  6358. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":309
  6359. * def __releasebuffer__(ndarray self, Py_buffer* info):
  6360. * if PyArray_HASFIELDS(self):
  6361. * PyObject_Free(info.format) # <<<<<<<<<<<<<<
  6362. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  6363. * PyObject_Free(info.strides)
  6364. */
  6365. PyObject_Free(__pyx_v_info->format);
  6366. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":308
  6367. *
  6368. * def __releasebuffer__(ndarray self, Py_buffer* info):
  6369. * if PyArray_HASFIELDS(self): # <<<<<<<<<<<<<<
  6370. * PyObject_Free(info.format)
  6371. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  6372. */
  6373. }
  6374. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":310
  6375. * if PyArray_HASFIELDS(self):
  6376. * PyObject_Free(info.format)
  6377. * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
  6378. * PyObject_Free(info.strides)
  6379. * # info.shape was stored after info.strides in the same block
  6380. */
  6381. __pyx_t_1 = (((sizeof(npy_intp)) != (sizeof(Py_ssize_t))) != 0);
  6382. if (__pyx_t_1) {
  6383. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":311
  6384. * PyObject_Free(info.format)
  6385. * if sizeof(npy_intp) != sizeof(Py_ssize_t):
  6386. * PyObject_Free(info.strides) # <<<<<<<<<<<<<<
  6387. * # info.shape was stored after info.strides in the same block
  6388. *
  6389. */
  6390. PyObject_Free(__pyx_v_info->strides);
  6391. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":310
  6392. * if PyArray_HASFIELDS(self):
  6393. * PyObject_Free(info.format)
  6394. * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<<
  6395. * PyObject_Free(info.strides)
  6396. * # info.shape was stored after info.strides in the same block
  6397. */
  6398. }
  6399. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":307
  6400. * f[0] = c'\0' # Terminate format string
  6401. *
  6402. * def __releasebuffer__(ndarray self, Py_buffer* info): # <<<<<<<<<<<<<<
  6403. * if PyArray_HASFIELDS(self):
  6404. * PyObject_Free(info.format)
  6405. */
  6406. /* function exit code */
  6407. __Pyx_RefNannyFinishContext();
  6408. }
  6409. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":788
  6410. * ctypedef npy_cdouble complex_t
  6411. *
  6412. * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
  6413. * return PyArray_MultiIterNew(1, <void*>a)
  6414. *
  6415. */
  6416. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__pyx_v_a) {
  6417. PyObject *__pyx_r = NULL;
  6418. __Pyx_RefNannyDeclarations
  6419. PyObject *__pyx_t_1 = NULL;
  6420. __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
  6421. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":789
  6422. *
  6423. * cdef inline object PyArray_MultiIterNew1(a):
  6424. * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
  6425. *
  6426. * cdef inline object PyArray_MultiIterNew2(a, b):
  6427. */
  6428. __Pyx_XDECREF(__pyx_r);
  6429. __pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 789, __pyx_L1_error)
  6430. __Pyx_GOTREF(__pyx_t_1);
  6431. __pyx_r = __pyx_t_1;
  6432. __pyx_t_1 = 0;
  6433. goto __pyx_L0;
  6434. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":788
  6435. * ctypedef npy_cdouble complex_t
  6436. *
  6437. * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
  6438. * return PyArray_MultiIterNew(1, <void*>a)
  6439. *
  6440. */
  6441. /* function exit code */
  6442. __pyx_L1_error:;
  6443. __Pyx_XDECREF(__pyx_t_1);
  6444. __Pyx_AddTraceback("numpy.PyArray_MultiIterNew1", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6445. __pyx_r = 0;
  6446. __pyx_L0:;
  6447. __Pyx_XGIVEREF(__pyx_r);
  6448. __Pyx_RefNannyFinishContext();
  6449. return __pyx_r;
  6450. }
  6451. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":791
  6452. * return PyArray_MultiIterNew(1, <void*>a)
  6453. *
  6454. * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
  6455. * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
  6456. *
  6457. */
  6458. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__pyx_v_a, PyObject *__pyx_v_b) {
  6459. PyObject *__pyx_r = NULL;
  6460. __Pyx_RefNannyDeclarations
  6461. PyObject *__pyx_t_1 = NULL;
  6462. __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
  6463. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":792
  6464. *
  6465. * cdef inline object PyArray_MultiIterNew2(a, b):
  6466. * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
  6467. *
  6468. * cdef inline object PyArray_MultiIterNew3(a, b, c):
  6469. */
  6470. __Pyx_XDECREF(__pyx_r);
  6471. __pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 792, __pyx_L1_error)
  6472. __Pyx_GOTREF(__pyx_t_1);
  6473. __pyx_r = __pyx_t_1;
  6474. __pyx_t_1 = 0;
  6475. goto __pyx_L0;
  6476. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":791
  6477. * return PyArray_MultiIterNew(1, <void*>a)
  6478. *
  6479. * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
  6480. * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
  6481. *
  6482. */
  6483. /* function exit code */
  6484. __pyx_L1_error:;
  6485. __Pyx_XDECREF(__pyx_t_1);
  6486. __Pyx_AddTraceback("numpy.PyArray_MultiIterNew2", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6487. __pyx_r = 0;
  6488. __pyx_L0:;
  6489. __Pyx_XGIVEREF(__pyx_r);
  6490. __Pyx_RefNannyFinishContext();
  6491. return __pyx_r;
  6492. }
  6493. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":794
  6494. * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
  6495. *
  6496. * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
  6497. * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
  6498. *
  6499. */
  6500. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c) {
  6501. PyObject *__pyx_r = NULL;
  6502. __Pyx_RefNannyDeclarations
  6503. PyObject *__pyx_t_1 = NULL;
  6504. __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
  6505. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":795
  6506. *
  6507. * cdef inline object PyArray_MultiIterNew3(a, b, c):
  6508. * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
  6509. *
  6510. * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
  6511. */
  6512. __Pyx_XDECREF(__pyx_r);
  6513. __pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 795, __pyx_L1_error)
  6514. __Pyx_GOTREF(__pyx_t_1);
  6515. __pyx_r = __pyx_t_1;
  6516. __pyx_t_1 = 0;
  6517. goto __pyx_L0;
  6518. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":794
  6519. * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
  6520. *
  6521. * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
  6522. * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
  6523. *
  6524. */
  6525. /* function exit code */
  6526. __pyx_L1_error:;
  6527. __Pyx_XDECREF(__pyx_t_1);
  6528. __Pyx_AddTraceback("numpy.PyArray_MultiIterNew3", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6529. __pyx_r = 0;
  6530. __pyx_L0:;
  6531. __Pyx_XGIVEREF(__pyx_r);
  6532. __Pyx_RefNannyFinishContext();
  6533. return __pyx_r;
  6534. }
  6535. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":797
  6536. * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
  6537. *
  6538. * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
  6539. * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
  6540. *
  6541. */
  6542. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d) {
  6543. PyObject *__pyx_r = NULL;
  6544. __Pyx_RefNannyDeclarations
  6545. PyObject *__pyx_t_1 = NULL;
  6546. __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
  6547. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":798
  6548. *
  6549. * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
  6550. * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
  6551. *
  6552. * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
  6553. */
  6554. __Pyx_XDECREF(__pyx_r);
  6555. __pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 798, __pyx_L1_error)
  6556. __Pyx_GOTREF(__pyx_t_1);
  6557. __pyx_r = __pyx_t_1;
  6558. __pyx_t_1 = 0;
  6559. goto __pyx_L0;
  6560. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":797
  6561. * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
  6562. *
  6563. * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
  6564. * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
  6565. *
  6566. */
  6567. /* function exit code */
  6568. __pyx_L1_error:;
  6569. __Pyx_XDECREF(__pyx_t_1);
  6570. __Pyx_AddTraceback("numpy.PyArray_MultiIterNew4", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6571. __pyx_r = 0;
  6572. __pyx_L0:;
  6573. __Pyx_XGIVEREF(__pyx_r);
  6574. __Pyx_RefNannyFinishContext();
  6575. return __pyx_r;
  6576. }
  6577. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":800
  6578. * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
  6579. *
  6580. * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
  6581. * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
  6582. *
  6583. */
  6584. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d, PyObject *__pyx_v_e) {
  6585. PyObject *__pyx_r = NULL;
  6586. __Pyx_RefNannyDeclarations
  6587. PyObject *__pyx_t_1 = NULL;
  6588. __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
  6589. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":801
  6590. *
  6591. * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
  6592. * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
  6593. *
  6594. * cdef inline tuple PyDataType_SHAPE(dtype d):
  6595. */
  6596. __Pyx_XDECREF(__pyx_r);
  6597. __pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 801, __pyx_L1_error)
  6598. __Pyx_GOTREF(__pyx_t_1);
  6599. __pyx_r = __pyx_t_1;
  6600. __pyx_t_1 = 0;
  6601. goto __pyx_L0;
  6602. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":800
  6603. * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
  6604. *
  6605. * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
  6606. * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
  6607. *
  6608. */
  6609. /* function exit code */
  6610. __pyx_L1_error:;
  6611. __Pyx_XDECREF(__pyx_t_1);
  6612. __Pyx_AddTraceback("numpy.PyArray_MultiIterNew5", __pyx_clineno, __pyx_lineno, __pyx_filename);
  6613. __pyx_r = 0;
  6614. __pyx_L0:;
  6615. __Pyx_XGIVEREF(__pyx_r);
  6616. __Pyx_RefNannyFinishContext();
  6617. return __pyx_r;
  6618. }
  6619. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":803
  6620. * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
  6621. *
  6622. * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
  6623. * if PyDataType_HASSUBARRAY(d):
  6624. * return <tuple>d.subarray.shape
  6625. */
  6626. static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__pyx_v_d) {
  6627. PyObject *__pyx_r = NULL;
  6628. __Pyx_RefNannyDeclarations
  6629. int __pyx_t_1;
  6630. __Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
  6631. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":804
  6632. *
  6633. * cdef inline tuple PyDataType_SHAPE(dtype d):
  6634. * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
  6635. * return <tuple>d.subarray.shape
  6636. * else:
  6637. */
  6638. __pyx_t_1 = (PyDataType_HASSUBARRAY(__pyx_v_d) != 0);
  6639. if (__pyx_t_1) {
  6640. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":805
  6641. * cdef inline tuple PyDataType_SHAPE(dtype d):
  6642. * if PyDataType_HASSUBARRAY(d):
  6643. * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
  6644. * else:
  6645. * return ()
  6646. */
  6647. __Pyx_XDECREF(__pyx_r);
  6648. __Pyx_INCREF(((PyObject*)__pyx_v_d->subarray->shape));
  6649. __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
  6650. goto __pyx_L0;
  6651. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":804
  6652. *
  6653. * cdef inline tuple PyDataType_SHAPE(dtype d):
  6654. * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
  6655. * return <tuple>d.subarray.shape
  6656. * else:
  6657. */
  6658. }
  6659. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":807
  6660. * return <tuple>d.subarray.shape
  6661. * else:
  6662. * return () # <<<<<<<<<<<<<<
  6663. *
  6664. * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL:
  6665. */
  6666. /*else*/ {
  6667. __Pyx_XDECREF(__pyx_r);
  6668. __Pyx_INCREF(__pyx_empty_tuple);
  6669. __pyx_r = __pyx_empty_tuple;
  6670. goto __pyx_L0;
  6671. }
  6672. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":803
  6673. * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
  6674. *
  6675. * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
  6676. * if PyDataType_HASSUBARRAY(d):
  6677. * return <tuple>d.subarray.shape
  6678. */
  6679. /* function exit code */
  6680. __pyx_L0:;
  6681. __Pyx_XGIVEREF(__pyx_r);
  6682. __Pyx_RefNannyFinishContext();
  6683. return __pyx_r;
  6684. }
  6685. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":809
  6686. * return ()
  6687. *
  6688. * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<<
  6689. * # Recursive utility function used in __getbuffer__ to get format
  6690. * # string. The new location in the format string is returned.
  6691. */
  6692. static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *__pyx_v_descr, char *__pyx_v_f, char *__pyx_v_end, int *__pyx_v_offset) {
  6693. PyArray_Descr *__pyx_v_child = 0;
  6694. int __pyx_v_endian_detector;
  6695. int __pyx_v_little_endian;
  6696. PyObject *__pyx_v_fields = 0;
  6697. PyObject *__pyx_v_childname = NULL;
  6698. PyObject *__pyx_v_new_offset = NULL;
  6699. PyObject *__pyx_v_t = NULL;
  6700. char *__pyx_r;
  6701. __Pyx_RefNannyDeclarations
  6702. PyObject *__pyx_t_1 = NULL;
  6703. Py_ssize_t __pyx_t_2;
  6704. PyObject *__pyx_t_3 = NULL;
  6705. PyObject *__pyx_t_4 = NULL;
  6706. int __pyx_t_5;
  6707. int __pyx_t_6;
  6708. int __pyx_t_7;
  6709. long __pyx_t_8;
  6710. char *__pyx_t_9;
  6711. __Pyx_RefNannySetupContext("_util_dtypestring", 0);
  6712. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":814
  6713. *
  6714. * cdef dtype child
  6715. * cdef int endian_detector = 1 # <<<<<<<<<<<<<<
  6716. * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0)
  6717. * cdef tuple fields
  6718. */
  6719. __pyx_v_endian_detector = 1;
  6720. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":815
  6721. * cdef dtype child
  6722. * cdef int endian_detector = 1
  6723. * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<<
  6724. * cdef tuple fields
  6725. *
  6726. */
  6727. __pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0);
  6728. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":818
  6729. * cdef tuple fields
  6730. *
  6731. * for childname in descr.names: # <<<<<<<<<<<<<<
  6732. * fields = descr.fields[childname]
  6733. * child, new_offset = fields
  6734. */
  6735. if (unlikely(__pyx_v_descr->names == Py_None)) {
  6736. PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable");
  6737. __PYX_ERR(1, 818, __pyx_L1_error)
  6738. }
  6739. __pyx_t_1 = __pyx_v_descr->names; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0;
  6740. for (;;) {
  6741. if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
  6742. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  6743. __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(1, 818, __pyx_L1_error)
  6744. #else
  6745. __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 818, __pyx_L1_error)
  6746. __Pyx_GOTREF(__pyx_t_3);
  6747. #endif
  6748. __Pyx_XDECREF_SET(__pyx_v_childname, __pyx_t_3);
  6749. __pyx_t_3 = 0;
  6750. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":819
  6751. *
  6752. * for childname in descr.names:
  6753. * fields = descr.fields[childname] # <<<<<<<<<<<<<<
  6754. * child, new_offset = fields
  6755. *
  6756. */
  6757. if (unlikely(__pyx_v_descr->fields == Py_None)) {
  6758. PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable");
  6759. __PYX_ERR(1, 819, __pyx_L1_error)
  6760. }
  6761. __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_descr->fields, __pyx_v_childname); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 819, __pyx_L1_error)
  6762. __Pyx_GOTREF(__pyx_t_3);
  6763. if (!(likely(PyTuple_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(1, 819, __pyx_L1_error)
  6764. __Pyx_XDECREF_SET(__pyx_v_fields, ((PyObject*)__pyx_t_3));
  6765. __pyx_t_3 = 0;
  6766. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":820
  6767. * for childname in descr.names:
  6768. * fields = descr.fields[childname]
  6769. * child, new_offset = fields # <<<<<<<<<<<<<<
  6770. *
  6771. * if (end - f) - <int>(new_offset - offset[0]) < 15:
  6772. */
  6773. if (likely(__pyx_v_fields != Py_None)) {
  6774. PyObject* sequence = __pyx_v_fields;
  6775. #if !CYTHON_COMPILING_IN_PYPY
  6776. Py_ssize_t size = Py_SIZE(sequence);
  6777. #else
  6778. Py_ssize_t size = PySequence_Size(sequence);
  6779. #endif
  6780. if (unlikely(size != 2)) {
  6781. if (size > 2) __Pyx_RaiseTooManyValuesError(2);
  6782. else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size);
  6783. __PYX_ERR(1, 820, __pyx_L1_error)
  6784. }
  6785. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  6786. __pyx_t_3 = PyTuple_GET_ITEM(sequence, 0);
  6787. __pyx_t_4 = PyTuple_GET_ITEM(sequence, 1);
  6788. __Pyx_INCREF(__pyx_t_3);
  6789. __Pyx_INCREF(__pyx_t_4);
  6790. #else
  6791. __pyx_t_3 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 820, __pyx_L1_error)
  6792. __Pyx_GOTREF(__pyx_t_3);
  6793. __pyx_t_4 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 820, __pyx_L1_error)
  6794. __Pyx_GOTREF(__pyx_t_4);
  6795. #endif
  6796. } else {
  6797. __Pyx_RaiseNoneNotIterableError(); __PYX_ERR(1, 820, __pyx_L1_error)
  6798. }
  6799. if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_dtype))))) __PYX_ERR(1, 820, __pyx_L1_error)
  6800. __Pyx_XDECREF_SET(__pyx_v_child, ((PyArray_Descr *)__pyx_t_3));
  6801. __pyx_t_3 = 0;
  6802. __Pyx_XDECREF_SET(__pyx_v_new_offset, __pyx_t_4);
  6803. __pyx_t_4 = 0;
  6804. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":822
  6805. * child, new_offset = fields
  6806. *
  6807. * if (end - f) - <int>(new_offset - offset[0]) < 15: # <<<<<<<<<<<<<<
  6808. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
  6809. *
  6810. */
  6811. __pyx_t_4 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 822, __pyx_L1_error)
  6812. __Pyx_GOTREF(__pyx_t_4);
  6813. __pyx_t_3 = PyNumber_Subtract(__pyx_v_new_offset, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 822, __pyx_L1_error)
  6814. __Pyx_GOTREF(__pyx_t_3);
  6815. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  6816. __pyx_t_5 = __Pyx_PyInt_As_int(__pyx_t_3); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 822, __pyx_L1_error)
  6817. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6818. __pyx_t_6 = ((((__pyx_v_end - __pyx_v_f) - ((int)__pyx_t_5)) < 15) != 0);
  6819. if (__pyx_t_6) {
  6820. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":823
  6821. *
  6822. * if (end - f) - <int>(new_offset - offset[0]) < 15:
  6823. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<<
  6824. *
  6825. * if ((child.byteorder == c'>' and little_endian) or
  6826. */
  6827. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__42, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 823, __pyx_L1_error)
  6828. __Pyx_GOTREF(__pyx_t_3);
  6829. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  6830. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6831. __PYX_ERR(1, 823, __pyx_L1_error)
  6832. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":822
  6833. * child, new_offset = fields
  6834. *
  6835. * if (end - f) - <int>(new_offset - offset[0]) < 15: # <<<<<<<<<<<<<<
  6836. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
  6837. *
  6838. */
  6839. }
  6840. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":825
  6841. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
  6842. *
  6843. * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  6844. * (child.byteorder == c'<' and not little_endian)):
  6845. * raise ValueError(u"Non-native byte order not supported")
  6846. */
  6847. __pyx_t_7 = ((__pyx_v_child->byteorder == '>') != 0);
  6848. if (!__pyx_t_7) {
  6849. goto __pyx_L8_next_or;
  6850. } else {
  6851. }
  6852. __pyx_t_7 = (__pyx_v_little_endian != 0);
  6853. if (!__pyx_t_7) {
  6854. } else {
  6855. __pyx_t_6 = __pyx_t_7;
  6856. goto __pyx_L7_bool_binop_done;
  6857. }
  6858. __pyx_L8_next_or:;
  6859. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":826
  6860. *
  6861. * if ((child.byteorder == c'>' and little_endian) or
  6862. * (child.byteorder == c'<' and not little_endian)): # <<<<<<<<<<<<<<
  6863. * raise ValueError(u"Non-native byte order not supported")
  6864. * # One could encode it in the format string and have Cython
  6865. */
  6866. __pyx_t_7 = ((__pyx_v_child->byteorder == '<') != 0);
  6867. if (__pyx_t_7) {
  6868. } else {
  6869. __pyx_t_6 = __pyx_t_7;
  6870. goto __pyx_L7_bool_binop_done;
  6871. }
  6872. __pyx_t_7 = ((!(__pyx_v_little_endian != 0)) != 0);
  6873. __pyx_t_6 = __pyx_t_7;
  6874. __pyx_L7_bool_binop_done:;
  6875. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":825
  6876. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
  6877. *
  6878. * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  6879. * (child.byteorder == c'<' and not little_endian)):
  6880. * raise ValueError(u"Non-native byte order not supported")
  6881. */
  6882. if (__pyx_t_6) {
  6883. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":827
  6884. * if ((child.byteorder == c'>' and little_endian) or
  6885. * (child.byteorder == c'<' and not little_endian)):
  6886. * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
  6887. * # One could encode it in the format string and have Cython
  6888. * # complain instead, BUT: < and > in format strings also imply
  6889. */
  6890. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__43, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 827, __pyx_L1_error)
  6891. __Pyx_GOTREF(__pyx_t_3);
  6892. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  6893. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6894. __PYX_ERR(1, 827, __pyx_L1_error)
  6895. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":825
  6896. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd")
  6897. *
  6898. * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<<
  6899. * (child.byteorder == c'<' and not little_endian)):
  6900. * raise ValueError(u"Non-native byte order not supported")
  6901. */
  6902. }
  6903. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":837
  6904. *
  6905. * # Output padding bytes
  6906. * while offset[0] < new_offset: # <<<<<<<<<<<<<<
  6907. * f[0] = 120 # "x"; pad byte
  6908. * f += 1
  6909. */
  6910. while (1) {
  6911. __pyx_t_3 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 837, __pyx_L1_error)
  6912. __Pyx_GOTREF(__pyx_t_3);
  6913. __pyx_t_4 = PyObject_RichCompare(__pyx_t_3, __pyx_v_new_offset, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 837, __pyx_L1_error)
  6914. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  6915. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 837, __pyx_L1_error)
  6916. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  6917. if (!__pyx_t_6) break;
  6918. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":838
  6919. * # Output padding bytes
  6920. * while offset[0] < new_offset:
  6921. * f[0] = 120 # "x"; pad byte # <<<<<<<<<<<<<<
  6922. * f += 1
  6923. * offset[0] += 1
  6924. */
  6925. (__pyx_v_f[0]) = 0x78;
  6926. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":839
  6927. * while offset[0] < new_offset:
  6928. * f[0] = 120 # "x"; pad byte
  6929. * f += 1 # <<<<<<<<<<<<<<
  6930. * offset[0] += 1
  6931. *
  6932. */
  6933. __pyx_v_f = (__pyx_v_f + 1);
  6934. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":840
  6935. * f[0] = 120 # "x"; pad byte
  6936. * f += 1
  6937. * offset[0] += 1 # <<<<<<<<<<<<<<
  6938. *
  6939. * offset[0] += child.itemsize
  6940. */
  6941. __pyx_t_8 = 0;
  6942. (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + 1);
  6943. }
  6944. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":842
  6945. * offset[0] += 1
  6946. *
  6947. * offset[0] += child.itemsize # <<<<<<<<<<<<<<
  6948. *
  6949. * if not PyDataType_HASFIELDS(child):
  6950. */
  6951. __pyx_t_8 = 0;
  6952. (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + __pyx_v_child->elsize);
  6953. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":844
  6954. * offset[0] += child.itemsize
  6955. *
  6956. * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<<
  6957. * t = child.type_num
  6958. * if end - f < 5:
  6959. */
  6960. __pyx_t_6 = ((!(PyDataType_HASFIELDS(__pyx_v_child) != 0)) != 0);
  6961. if (__pyx_t_6) {
  6962. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":845
  6963. *
  6964. * if not PyDataType_HASFIELDS(child):
  6965. * t = child.type_num # <<<<<<<<<<<<<<
  6966. * if end - f < 5:
  6967. * raise RuntimeError(u"Format string allocated too short.")
  6968. */
  6969. __pyx_t_4 = __Pyx_PyInt_From_int(__pyx_v_child->type_num); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 845, __pyx_L1_error)
  6970. __Pyx_GOTREF(__pyx_t_4);
  6971. __Pyx_XDECREF_SET(__pyx_v_t, __pyx_t_4);
  6972. __pyx_t_4 = 0;
  6973. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":846
  6974. * if not PyDataType_HASFIELDS(child):
  6975. * t = child.type_num
  6976. * if end - f < 5: # <<<<<<<<<<<<<<
  6977. * raise RuntimeError(u"Format string allocated too short.")
  6978. *
  6979. */
  6980. __pyx_t_6 = (((__pyx_v_end - __pyx_v_f) < 5) != 0);
  6981. if (__pyx_t_6) {
  6982. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":847
  6983. * t = child.type_num
  6984. * if end - f < 5:
  6985. * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<<
  6986. *
  6987. * # Until ticket #99 is fixed, use integers to avoid warnings
  6988. */
  6989. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__44, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 847, __pyx_L1_error)
  6990. __Pyx_GOTREF(__pyx_t_4);
  6991. __Pyx_Raise(__pyx_t_4, 0, 0, 0);
  6992. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  6993. __PYX_ERR(1, 847, __pyx_L1_error)
  6994. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":846
  6995. * if not PyDataType_HASFIELDS(child):
  6996. * t = child.type_num
  6997. * if end - f < 5: # <<<<<<<<<<<<<<
  6998. * raise RuntimeError(u"Format string allocated too short.")
  6999. *
  7000. */
  7001. }
  7002. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":850
  7003. *
  7004. * # Until ticket #99 is fixed, use integers to avoid warnings
  7005. * if t == NPY_BYTE: f[0] = 98 #"b" # <<<<<<<<<<<<<<
  7006. * elif t == NPY_UBYTE: f[0] = 66 #"B"
  7007. * elif t == NPY_SHORT: f[0] = 104 #"h"
  7008. */
  7009. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_BYTE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 850, __pyx_L1_error)
  7010. __Pyx_GOTREF(__pyx_t_4);
  7011. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 850, __pyx_L1_error)
  7012. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7013. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 850, __pyx_L1_error)
  7014. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7015. if (__pyx_t_6) {
  7016. (__pyx_v_f[0]) = 98;
  7017. goto __pyx_L15;
  7018. }
  7019. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":851
  7020. * # Until ticket #99 is fixed, use integers to avoid warnings
  7021. * if t == NPY_BYTE: f[0] = 98 #"b"
  7022. * elif t == NPY_UBYTE: f[0] = 66 #"B" # <<<<<<<<<<<<<<
  7023. * elif t == NPY_SHORT: f[0] = 104 #"h"
  7024. * elif t == NPY_USHORT: f[0] = 72 #"H"
  7025. */
  7026. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UBYTE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 851, __pyx_L1_error)
  7027. __Pyx_GOTREF(__pyx_t_3);
  7028. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 851, __pyx_L1_error)
  7029. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7030. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 851, __pyx_L1_error)
  7031. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7032. if (__pyx_t_6) {
  7033. (__pyx_v_f[0]) = 66;
  7034. goto __pyx_L15;
  7035. }
  7036. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":852
  7037. * if t == NPY_BYTE: f[0] = 98 #"b"
  7038. * elif t == NPY_UBYTE: f[0] = 66 #"B"
  7039. * elif t == NPY_SHORT: f[0] = 104 #"h" # <<<<<<<<<<<<<<
  7040. * elif t == NPY_USHORT: f[0] = 72 #"H"
  7041. * elif t == NPY_INT: f[0] = 105 #"i"
  7042. */
  7043. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_SHORT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 852, __pyx_L1_error)
  7044. __Pyx_GOTREF(__pyx_t_4);
  7045. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 852, __pyx_L1_error)
  7046. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7047. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 852, __pyx_L1_error)
  7048. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7049. if (__pyx_t_6) {
  7050. (__pyx_v_f[0]) = 0x68;
  7051. goto __pyx_L15;
  7052. }
  7053. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":853
  7054. * elif t == NPY_UBYTE: f[0] = 66 #"B"
  7055. * elif t == NPY_SHORT: f[0] = 104 #"h"
  7056. * elif t == NPY_USHORT: f[0] = 72 #"H" # <<<<<<<<<<<<<<
  7057. * elif t == NPY_INT: f[0] = 105 #"i"
  7058. * elif t == NPY_UINT: f[0] = 73 #"I"
  7059. */
  7060. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_USHORT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 853, __pyx_L1_error)
  7061. __Pyx_GOTREF(__pyx_t_3);
  7062. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 853, __pyx_L1_error)
  7063. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7064. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 853, __pyx_L1_error)
  7065. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7066. if (__pyx_t_6) {
  7067. (__pyx_v_f[0]) = 72;
  7068. goto __pyx_L15;
  7069. }
  7070. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":854
  7071. * elif t == NPY_SHORT: f[0] = 104 #"h"
  7072. * elif t == NPY_USHORT: f[0] = 72 #"H"
  7073. * elif t == NPY_INT: f[0] = 105 #"i" # <<<<<<<<<<<<<<
  7074. * elif t == NPY_UINT: f[0] = 73 #"I"
  7075. * elif t == NPY_LONG: f[0] = 108 #"l"
  7076. */
  7077. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_INT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 854, __pyx_L1_error)
  7078. __Pyx_GOTREF(__pyx_t_4);
  7079. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 854, __pyx_L1_error)
  7080. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7081. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 854, __pyx_L1_error)
  7082. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7083. if (__pyx_t_6) {
  7084. (__pyx_v_f[0]) = 0x69;
  7085. goto __pyx_L15;
  7086. }
  7087. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":855
  7088. * elif t == NPY_USHORT: f[0] = 72 #"H"
  7089. * elif t == NPY_INT: f[0] = 105 #"i"
  7090. * elif t == NPY_UINT: f[0] = 73 #"I" # <<<<<<<<<<<<<<
  7091. * elif t == NPY_LONG: f[0] = 108 #"l"
  7092. * elif t == NPY_ULONG: f[0] = 76 #"L"
  7093. */
  7094. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UINT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 855, __pyx_L1_error)
  7095. __Pyx_GOTREF(__pyx_t_3);
  7096. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 855, __pyx_L1_error)
  7097. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7098. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 855, __pyx_L1_error)
  7099. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7100. if (__pyx_t_6) {
  7101. (__pyx_v_f[0]) = 73;
  7102. goto __pyx_L15;
  7103. }
  7104. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":856
  7105. * elif t == NPY_INT: f[0] = 105 #"i"
  7106. * elif t == NPY_UINT: f[0] = 73 #"I"
  7107. * elif t == NPY_LONG: f[0] = 108 #"l" # <<<<<<<<<<<<<<
  7108. * elif t == NPY_ULONG: f[0] = 76 #"L"
  7109. * elif t == NPY_LONGLONG: f[0] = 113 #"q"
  7110. */
  7111. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 856, __pyx_L1_error)
  7112. __Pyx_GOTREF(__pyx_t_4);
  7113. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 856, __pyx_L1_error)
  7114. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7115. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 856, __pyx_L1_error)
  7116. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7117. if (__pyx_t_6) {
  7118. (__pyx_v_f[0]) = 0x6C;
  7119. goto __pyx_L15;
  7120. }
  7121. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":857
  7122. * elif t == NPY_UINT: f[0] = 73 #"I"
  7123. * elif t == NPY_LONG: f[0] = 108 #"l"
  7124. * elif t == NPY_ULONG: f[0] = 76 #"L" # <<<<<<<<<<<<<<
  7125. * elif t == NPY_LONGLONG: f[0] = 113 #"q"
  7126. * elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
  7127. */
  7128. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 857, __pyx_L1_error)
  7129. __Pyx_GOTREF(__pyx_t_3);
  7130. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 857, __pyx_L1_error)
  7131. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7132. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 857, __pyx_L1_error)
  7133. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7134. if (__pyx_t_6) {
  7135. (__pyx_v_f[0]) = 76;
  7136. goto __pyx_L15;
  7137. }
  7138. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":858
  7139. * elif t == NPY_LONG: f[0] = 108 #"l"
  7140. * elif t == NPY_ULONG: f[0] = 76 #"L"
  7141. * elif t == NPY_LONGLONG: f[0] = 113 #"q" # <<<<<<<<<<<<<<
  7142. * elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
  7143. * elif t == NPY_FLOAT: f[0] = 102 #"f"
  7144. */
  7145. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGLONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 858, __pyx_L1_error)
  7146. __Pyx_GOTREF(__pyx_t_4);
  7147. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 858, __pyx_L1_error)
  7148. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7149. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 858, __pyx_L1_error)
  7150. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7151. if (__pyx_t_6) {
  7152. (__pyx_v_f[0]) = 0x71;
  7153. goto __pyx_L15;
  7154. }
  7155. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":859
  7156. * elif t == NPY_ULONG: f[0] = 76 #"L"
  7157. * elif t == NPY_LONGLONG: f[0] = 113 #"q"
  7158. * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" # <<<<<<<<<<<<<<
  7159. * elif t == NPY_FLOAT: f[0] = 102 #"f"
  7160. * elif t == NPY_DOUBLE: f[0] = 100 #"d"
  7161. */
  7162. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONGLONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 859, __pyx_L1_error)
  7163. __Pyx_GOTREF(__pyx_t_3);
  7164. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 859, __pyx_L1_error)
  7165. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7166. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 859, __pyx_L1_error)
  7167. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7168. if (__pyx_t_6) {
  7169. (__pyx_v_f[0]) = 81;
  7170. goto __pyx_L15;
  7171. }
  7172. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":860
  7173. * elif t == NPY_LONGLONG: f[0] = 113 #"q"
  7174. * elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
  7175. * elif t == NPY_FLOAT: f[0] = 102 #"f" # <<<<<<<<<<<<<<
  7176. * elif t == NPY_DOUBLE: f[0] = 100 #"d"
  7177. * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
  7178. */
  7179. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_FLOAT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 860, __pyx_L1_error)
  7180. __Pyx_GOTREF(__pyx_t_4);
  7181. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 860, __pyx_L1_error)
  7182. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7183. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 860, __pyx_L1_error)
  7184. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7185. if (__pyx_t_6) {
  7186. (__pyx_v_f[0]) = 0x66;
  7187. goto __pyx_L15;
  7188. }
  7189. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":861
  7190. * elif t == NPY_ULONGLONG: f[0] = 81 #"Q"
  7191. * elif t == NPY_FLOAT: f[0] = 102 #"f"
  7192. * elif t == NPY_DOUBLE: f[0] = 100 #"d" # <<<<<<<<<<<<<<
  7193. * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
  7194. * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
  7195. */
  7196. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_DOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 861, __pyx_L1_error)
  7197. __Pyx_GOTREF(__pyx_t_3);
  7198. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 861, __pyx_L1_error)
  7199. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7200. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 861, __pyx_L1_error)
  7201. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7202. if (__pyx_t_6) {
  7203. (__pyx_v_f[0]) = 0x64;
  7204. goto __pyx_L15;
  7205. }
  7206. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":862
  7207. * elif t == NPY_FLOAT: f[0] = 102 #"f"
  7208. * elif t == NPY_DOUBLE: f[0] = 100 #"d"
  7209. * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" # <<<<<<<<<<<<<<
  7210. * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
  7211. * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
  7212. */
  7213. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 862, __pyx_L1_error)
  7214. __Pyx_GOTREF(__pyx_t_4);
  7215. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 862, __pyx_L1_error)
  7216. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7217. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 862, __pyx_L1_error)
  7218. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7219. if (__pyx_t_6) {
  7220. (__pyx_v_f[0]) = 0x67;
  7221. goto __pyx_L15;
  7222. }
  7223. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":863
  7224. * elif t == NPY_DOUBLE: f[0] = 100 #"d"
  7225. * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
  7226. * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf # <<<<<<<<<<<<<<
  7227. * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
  7228. * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
  7229. */
  7230. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CFLOAT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 863, __pyx_L1_error)
  7231. __Pyx_GOTREF(__pyx_t_3);
  7232. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 863, __pyx_L1_error)
  7233. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7234. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 863, __pyx_L1_error)
  7235. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7236. if (__pyx_t_6) {
  7237. (__pyx_v_f[0]) = 90;
  7238. (__pyx_v_f[1]) = 0x66;
  7239. __pyx_v_f = (__pyx_v_f + 1);
  7240. goto __pyx_L15;
  7241. }
  7242. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":864
  7243. * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g"
  7244. * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
  7245. * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd # <<<<<<<<<<<<<<
  7246. * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
  7247. * elif t == NPY_OBJECT: f[0] = 79 #"O"
  7248. */
  7249. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 864, __pyx_L1_error)
  7250. __Pyx_GOTREF(__pyx_t_4);
  7251. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 864, __pyx_L1_error)
  7252. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7253. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 864, __pyx_L1_error)
  7254. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7255. if (__pyx_t_6) {
  7256. (__pyx_v_f[0]) = 90;
  7257. (__pyx_v_f[1]) = 0x64;
  7258. __pyx_v_f = (__pyx_v_f + 1);
  7259. goto __pyx_L15;
  7260. }
  7261. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":865
  7262. * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf
  7263. * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
  7264. * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg # <<<<<<<<<<<<<<
  7265. * elif t == NPY_OBJECT: f[0] = 79 #"O"
  7266. * else:
  7267. */
  7268. __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CLONGDOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 865, __pyx_L1_error)
  7269. __Pyx_GOTREF(__pyx_t_3);
  7270. __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 865, __pyx_L1_error)
  7271. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7272. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 865, __pyx_L1_error)
  7273. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7274. if (__pyx_t_6) {
  7275. (__pyx_v_f[0]) = 90;
  7276. (__pyx_v_f[1]) = 0x67;
  7277. __pyx_v_f = (__pyx_v_f + 1);
  7278. goto __pyx_L15;
  7279. }
  7280. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":866
  7281. * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd
  7282. * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg
  7283. * elif t == NPY_OBJECT: f[0] = 79 #"O" # <<<<<<<<<<<<<<
  7284. * else:
  7285. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
  7286. */
  7287. __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_OBJECT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 866, __pyx_L1_error)
  7288. __Pyx_GOTREF(__pyx_t_4);
  7289. __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 866, __pyx_L1_error)
  7290. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7291. __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 866, __pyx_L1_error)
  7292. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7293. if (__pyx_t_6) {
  7294. (__pyx_v_f[0]) = 79;
  7295. goto __pyx_L15;
  7296. }
  7297. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":868
  7298. * elif t == NPY_OBJECT: f[0] = 79 #"O"
  7299. * else:
  7300. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<<
  7301. * f += 1
  7302. * else:
  7303. */
  7304. /*else*/ {
  7305. __pyx_t_3 = PyUnicode_Format(__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_v_t); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 868, __pyx_L1_error)
  7306. __Pyx_GOTREF(__pyx_t_3);
  7307. __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 868, __pyx_L1_error)
  7308. __Pyx_GOTREF(__pyx_t_4);
  7309. __Pyx_GIVEREF(__pyx_t_3);
  7310. PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
  7311. __pyx_t_3 = 0;
  7312. __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_t_4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 868, __pyx_L1_error)
  7313. __Pyx_GOTREF(__pyx_t_3);
  7314. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  7315. __Pyx_Raise(__pyx_t_3, 0, 0, 0);
  7316. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  7317. __PYX_ERR(1, 868, __pyx_L1_error)
  7318. }
  7319. __pyx_L15:;
  7320. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":869
  7321. * else:
  7322. * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t)
  7323. * f += 1 # <<<<<<<<<<<<<<
  7324. * else:
  7325. * # Cython ignores struct boundary information ("T{...}"),
  7326. */
  7327. __pyx_v_f = (__pyx_v_f + 1);
  7328. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":844
  7329. * offset[0] += child.itemsize
  7330. *
  7331. * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<<
  7332. * t = child.type_num
  7333. * if end - f < 5:
  7334. */
  7335. goto __pyx_L13;
  7336. }
  7337. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":873
  7338. * # Cython ignores struct boundary information ("T{...}"),
  7339. * # so don't output it
  7340. * f = _util_dtypestring(child, f, end, offset) # <<<<<<<<<<<<<<
  7341. * return f
  7342. *
  7343. */
  7344. /*else*/ {
  7345. __pyx_t_9 = __pyx_f_5numpy__util_dtypestring(__pyx_v_child, __pyx_v_f, __pyx_v_end, __pyx_v_offset); if (unlikely(__pyx_t_9 == ((char *)NULL))) __PYX_ERR(1, 873, __pyx_L1_error)
  7346. __pyx_v_f = __pyx_t_9;
  7347. }
  7348. __pyx_L13:;
  7349. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":818
  7350. * cdef tuple fields
  7351. *
  7352. * for childname in descr.names: # <<<<<<<<<<<<<<
  7353. * fields = descr.fields[childname]
  7354. * child, new_offset = fields
  7355. */
  7356. }
  7357. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  7358. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":874
  7359. * # so don't output it
  7360. * f = _util_dtypestring(child, f, end, offset)
  7361. * return f # <<<<<<<<<<<<<<
  7362. *
  7363. *
  7364. */
  7365. __pyx_r = __pyx_v_f;
  7366. goto __pyx_L0;
  7367. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":809
  7368. * return ()
  7369. *
  7370. * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<<
  7371. * # Recursive utility function used in __getbuffer__ to get format
  7372. * # string. The new location in the format string is returned.
  7373. */
  7374. /* function exit code */
  7375. __pyx_L1_error:;
  7376. __Pyx_XDECREF(__pyx_t_1);
  7377. __Pyx_XDECREF(__pyx_t_3);
  7378. __Pyx_XDECREF(__pyx_t_4);
  7379. __Pyx_AddTraceback("numpy._util_dtypestring", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7380. __pyx_r = NULL;
  7381. __pyx_L0:;
  7382. __Pyx_XDECREF((PyObject *)__pyx_v_child);
  7383. __Pyx_XDECREF(__pyx_v_fields);
  7384. __Pyx_XDECREF(__pyx_v_childname);
  7385. __Pyx_XDECREF(__pyx_v_new_offset);
  7386. __Pyx_XDECREF(__pyx_v_t);
  7387. __Pyx_RefNannyFinishContext();
  7388. return __pyx_r;
  7389. }
  7390. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":990
  7391. *
  7392. *
  7393. * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
  7394. * cdef PyObject* baseptr
  7395. * if base is None:
  7396. */
  7397. static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
  7398. PyObject *__pyx_v_baseptr;
  7399. __Pyx_RefNannyDeclarations
  7400. int __pyx_t_1;
  7401. int __pyx_t_2;
  7402. __Pyx_RefNannySetupContext("set_array_base", 0);
  7403. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":992
  7404. * cdef inline void set_array_base(ndarray arr, object base):
  7405. * cdef PyObject* baseptr
  7406. * if base is None: # <<<<<<<<<<<<<<
  7407. * baseptr = NULL
  7408. * else:
  7409. */
  7410. __pyx_t_1 = (__pyx_v_base == Py_None);
  7411. __pyx_t_2 = (__pyx_t_1 != 0);
  7412. if (__pyx_t_2) {
  7413. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":993
  7414. * cdef PyObject* baseptr
  7415. * if base is None:
  7416. * baseptr = NULL # <<<<<<<<<<<<<<
  7417. * else:
  7418. * Py_INCREF(base) # important to do this before decref below!
  7419. */
  7420. __pyx_v_baseptr = NULL;
  7421. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":992
  7422. * cdef inline void set_array_base(ndarray arr, object base):
  7423. * cdef PyObject* baseptr
  7424. * if base is None: # <<<<<<<<<<<<<<
  7425. * baseptr = NULL
  7426. * else:
  7427. */
  7428. goto __pyx_L3;
  7429. }
  7430. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":995
  7431. * baseptr = NULL
  7432. * else:
  7433. * Py_INCREF(base) # important to do this before decref below! # <<<<<<<<<<<<<<
  7434. * baseptr = <PyObject*>base
  7435. * Py_XDECREF(arr.base)
  7436. */
  7437. /*else*/ {
  7438. Py_INCREF(__pyx_v_base);
  7439. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":996
  7440. * else:
  7441. * Py_INCREF(base) # important to do this before decref below!
  7442. * baseptr = <PyObject*>base # <<<<<<<<<<<<<<
  7443. * Py_XDECREF(arr.base)
  7444. * arr.base = baseptr
  7445. */
  7446. __pyx_v_baseptr = ((PyObject *)__pyx_v_base);
  7447. }
  7448. __pyx_L3:;
  7449. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":997
  7450. * Py_INCREF(base) # important to do this before decref below!
  7451. * baseptr = <PyObject*>base
  7452. * Py_XDECREF(arr.base) # <<<<<<<<<<<<<<
  7453. * arr.base = baseptr
  7454. *
  7455. */
  7456. Py_XDECREF(__pyx_v_arr->base);
  7457. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":998
  7458. * baseptr = <PyObject*>base
  7459. * Py_XDECREF(arr.base)
  7460. * arr.base = baseptr # <<<<<<<<<<<<<<
  7461. *
  7462. * cdef inline object get_array_base(ndarray arr):
  7463. */
  7464. __pyx_v_arr->base = __pyx_v_baseptr;
  7465. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":990
  7466. *
  7467. *
  7468. * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
  7469. * cdef PyObject* baseptr
  7470. * if base is None:
  7471. */
  7472. /* function exit code */
  7473. __Pyx_RefNannyFinishContext();
  7474. }
  7475. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1000
  7476. * arr.base = baseptr
  7477. *
  7478. * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
  7479. * if arr.base is NULL:
  7480. * return None
  7481. */
  7482. static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__pyx_v_arr) {
  7483. PyObject *__pyx_r = NULL;
  7484. __Pyx_RefNannyDeclarations
  7485. int __pyx_t_1;
  7486. __Pyx_RefNannySetupContext("get_array_base", 0);
  7487. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1001
  7488. *
  7489. * cdef inline object get_array_base(ndarray arr):
  7490. * if arr.base is NULL: # <<<<<<<<<<<<<<
  7491. * return None
  7492. * else:
  7493. */
  7494. __pyx_t_1 = ((__pyx_v_arr->base == NULL) != 0);
  7495. if (__pyx_t_1) {
  7496. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1002
  7497. * cdef inline object get_array_base(ndarray arr):
  7498. * if arr.base is NULL:
  7499. * return None # <<<<<<<<<<<<<<
  7500. * else:
  7501. * return <object>arr.base
  7502. */
  7503. __Pyx_XDECREF(__pyx_r);
  7504. __Pyx_INCREF(Py_None);
  7505. __pyx_r = Py_None;
  7506. goto __pyx_L0;
  7507. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1001
  7508. *
  7509. * cdef inline object get_array_base(ndarray arr):
  7510. * if arr.base is NULL: # <<<<<<<<<<<<<<
  7511. * return None
  7512. * else:
  7513. */
  7514. }
  7515. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1004
  7516. * return None
  7517. * else:
  7518. * return <object>arr.base # <<<<<<<<<<<<<<
  7519. *
  7520. *
  7521. */
  7522. /*else*/ {
  7523. __Pyx_XDECREF(__pyx_r);
  7524. __Pyx_INCREF(((PyObject *)__pyx_v_arr->base));
  7525. __pyx_r = ((PyObject *)__pyx_v_arr->base);
  7526. goto __pyx_L0;
  7527. }
  7528. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1000
  7529. * arr.base = baseptr
  7530. *
  7531. * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
  7532. * if arr.base is NULL:
  7533. * return None
  7534. */
  7535. /* function exit code */
  7536. __pyx_L0:;
  7537. __Pyx_XGIVEREF(__pyx_r);
  7538. __Pyx_RefNannyFinishContext();
  7539. return __pyx_r;
  7540. }
  7541. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1009
  7542. * # Versions of the import_* functions which are more suitable for
  7543. * # Cython code.
  7544. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
  7545. * try:
  7546. * _import_array()
  7547. */
  7548. static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
  7549. int __pyx_r;
  7550. __Pyx_RefNannyDeclarations
  7551. PyObject *__pyx_t_1 = NULL;
  7552. PyObject *__pyx_t_2 = NULL;
  7553. PyObject *__pyx_t_3 = NULL;
  7554. int __pyx_t_4;
  7555. PyObject *__pyx_t_5 = NULL;
  7556. PyObject *__pyx_t_6 = NULL;
  7557. PyObject *__pyx_t_7 = NULL;
  7558. PyObject *__pyx_t_8 = NULL;
  7559. __Pyx_RefNannySetupContext("import_array", 0);
  7560. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1010
  7561. * # Cython code.
  7562. * cdef inline int import_array() except -1:
  7563. * try: # <<<<<<<<<<<<<<
  7564. * _import_array()
  7565. * except Exception:
  7566. */
  7567. {
  7568. __Pyx_PyThreadState_declare
  7569. __Pyx_PyThreadState_assign
  7570. __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3);
  7571. __Pyx_XGOTREF(__pyx_t_1);
  7572. __Pyx_XGOTREF(__pyx_t_2);
  7573. __Pyx_XGOTREF(__pyx_t_3);
  7574. /*try:*/ {
  7575. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1011
  7576. * cdef inline int import_array() except -1:
  7577. * try:
  7578. * _import_array() # <<<<<<<<<<<<<<
  7579. * except Exception:
  7580. * raise ImportError("numpy.core.multiarray failed to import")
  7581. */
  7582. __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1011, __pyx_L3_error)
  7583. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1010
  7584. * # Cython code.
  7585. * cdef inline int import_array() except -1:
  7586. * try: # <<<<<<<<<<<<<<
  7587. * _import_array()
  7588. * except Exception:
  7589. */
  7590. }
  7591. __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
  7592. __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
  7593. __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
  7594. goto __pyx_L8_try_end;
  7595. __pyx_L3_error:;
  7596. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1012
  7597. * try:
  7598. * _import_array()
  7599. * except Exception: # <<<<<<<<<<<<<<
  7600. * raise ImportError("numpy.core.multiarray failed to import")
  7601. *
  7602. */
  7603. __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0])));
  7604. if (__pyx_t_4) {
  7605. __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7606. if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 1012, __pyx_L5_except_error)
  7607. __Pyx_GOTREF(__pyx_t_5);
  7608. __Pyx_GOTREF(__pyx_t_6);
  7609. __Pyx_GOTREF(__pyx_t_7);
  7610. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1013
  7611. * _import_array()
  7612. * except Exception:
  7613. * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
  7614. *
  7615. * cdef inline int import_umath() except -1:
  7616. */
  7617. __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__45, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 1013, __pyx_L5_except_error)
  7618. __Pyx_GOTREF(__pyx_t_8);
  7619. __Pyx_Raise(__pyx_t_8, 0, 0, 0);
  7620. __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
  7621. __PYX_ERR(1, 1013, __pyx_L5_except_error)
  7622. }
  7623. goto __pyx_L5_except_error;
  7624. __pyx_L5_except_error:;
  7625. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1010
  7626. * # Cython code.
  7627. * cdef inline int import_array() except -1:
  7628. * try: # <<<<<<<<<<<<<<
  7629. * _import_array()
  7630. * except Exception:
  7631. */
  7632. __Pyx_XGIVEREF(__pyx_t_1);
  7633. __Pyx_XGIVEREF(__pyx_t_2);
  7634. __Pyx_XGIVEREF(__pyx_t_3);
  7635. __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3);
  7636. goto __pyx_L1_error;
  7637. __pyx_L8_try_end:;
  7638. }
  7639. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1009
  7640. * # Versions of the import_* functions which are more suitable for
  7641. * # Cython code.
  7642. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
  7643. * try:
  7644. * _import_array()
  7645. */
  7646. /* function exit code */
  7647. __pyx_r = 0;
  7648. goto __pyx_L0;
  7649. __pyx_L1_error:;
  7650. __Pyx_XDECREF(__pyx_t_5);
  7651. __Pyx_XDECREF(__pyx_t_6);
  7652. __Pyx_XDECREF(__pyx_t_7);
  7653. __Pyx_XDECREF(__pyx_t_8);
  7654. __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7655. __pyx_r = -1;
  7656. __pyx_L0:;
  7657. __Pyx_RefNannyFinishContext();
  7658. return __pyx_r;
  7659. }
  7660. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1015
  7661. * raise ImportError("numpy.core.multiarray failed to import")
  7662. *
  7663. * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
  7664. * try:
  7665. * _import_umath()
  7666. */
  7667. static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
  7668. int __pyx_r;
  7669. __Pyx_RefNannyDeclarations
  7670. PyObject *__pyx_t_1 = NULL;
  7671. PyObject *__pyx_t_2 = NULL;
  7672. PyObject *__pyx_t_3 = NULL;
  7673. int __pyx_t_4;
  7674. PyObject *__pyx_t_5 = NULL;
  7675. PyObject *__pyx_t_6 = NULL;
  7676. PyObject *__pyx_t_7 = NULL;
  7677. PyObject *__pyx_t_8 = NULL;
  7678. __Pyx_RefNannySetupContext("import_umath", 0);
  7679. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1016
  7680. *
  7681. * cdef inline int import_umath() except -1:
  7682. * try: # <<<<<<<<<<<<<<
  7683. * _import_umath()
  7684. * except Exception:
  7685. */
  7686. {
  7687. __Pyx_PyThreadState_declare
  7688. __Pyx_PyThreadState_assign
  7689. __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3);
  7690. __Pyx_XGOTREF(__pyx_t_1);
  7691. __Pyx_XGOTREF(__pyx_t_2);
  7692. __Pyx_XGOTREF(__pyx_t_3);
  7693. /*try:*/ {
  7694. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1017
  7695. * cdef inline int import_umath() except -1:
  7696. * try:
  7697. * _import_umath() # <<<<<<<<<<<<<<
  7698. * except Exception:
  7699. * raise ImportError("numpy.core.umath failed to import")
  7700. */
  7701. __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1017, __pyx_L3_error)
  7702. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1016
  7703. *
  7704. * cdef inline int import_umath() except -1:
  7705. * try: # <<<<<<<<<<<<<<
  7706. * _import_umath()
  7707. * except Exception:
  7708. */
  7709. }
  7710. __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
  7711. __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
  7712. __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
  7713. goto __pyx_L8_try_end;
  7714. __pyx_L3_error:;
  7715. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1018
  7716. * try:
  7717. * _import_umath()
  7718. * except Exception: # <<<<<<<<<<<<<<
  7719. * raise ImportError("numpy.core.umath failed to import")
  7720. *
  7721. */
  7722. __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0])));
  7723. if (__pyx_t_4) {
  7724. __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7725. if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 1018, __pyx_L5_except_error)
  7726. __Pyx_GOTREF(__pyx_t_5);
  7727. __Pyx_GOTREF(__pyx_t_6);
  7728. __Pyx_GOTREF(__pyx_t_7);
  7729. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1019
  7730. * _import_umath()
  7731. * except Exception:
  7732. * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
  7733. *
  7734. * cdef inline int import_ufunc() except -1:
  7735. */
  7736. __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__46, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 1019, __pyx_L5_except_error)
  7737. __Pyx_GOTREF(__pyx_t_8);
  7738. __Pyx_Raise(__pyx_t_8, 0, 0, 0);
  7739. __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
  7740. __PYX_ERR(1, 1019, __pyx_L5_except_error)
  7741. }
  7742. goto __pyx_L5_except_error;
  7743. __pyx_L5_except_error:;
  7744. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1016
  7745. *
  7746. * cdef inline int import_umath() except -1:
  7747. * try: # <<<<<<<<<<<<<<
  7748. * _import_umath()
  7749. * except Exception:
  7750. */
  7751. __Pyx_XGIVEREF(__pyx_t_1);
  7752. __Pyx_XGIVEREF(__pyx_t_2);
  7753. __Pyx_XGIVEREF(__pyx_t_3);
  7754. __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3);
  7755. goto __pyx_L1_error;
  7756. __pyx_L8_try_end:;
  7757. }
  7758. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1015
  7759. * raise ImportError("numpy.core.multiarray failed to import")
  7760. *
  7761. * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
  7762. * try:
  7763. * _import_umath()
  7764. */
  7765. /* function exit code */
  7766. __pyx_r = 0;
  7767. goto __pyx_L0;
  7768. __pyx_L1_error:;
  7769. __Pyx_XDECREF(__pyx_t_5);
  7770. __Pyx_XDECREF(__pyx_t_6);
  7771. __Pyx_XDECREF(__pyx_t_7);
  7772. __Pyx_XDECREF(__pyx_t_8);
  7773. __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7774. __pyx_r = -1;
  7775. __pyx_L0:;
  7776. __Pyx_RefNannyFinishContext();
  7777. return __pyx_r;
  7778. }
  7779. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1021
  7780. * raise ImportError("numpy.core.umath failed to import")
  7781. *
  7782. * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
  7783. * try:
  7784. * _import_umath()
  7785. */
  7786. static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
  7787. int __pyx_r;
  7788. __Pyx_RefNannyDeclarations
  7789. PyObject *__pyx_t_1 = NULL;
  7790. PyObject *__pyx_t_2 = NULL;
  7791. PyObject *__pyx_t_3 = NULL;
  7792. int __pyx_t_4;
  7793. PyObject *__pyx_t_5 = NULL;
  7794. PyObject *__pyx_t_6 = NULL;
  7795. PyObject *__pyx_t_7 = NULL;
  7796. PyObject *__pyx_t_8 = NULL;
  7797. __Pyx_RefNannySetupContext("import_ufunc", 0);
  7798. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1022
  7799. *
  7800. * cdef inline int import_ufunc() except -1:
  7801. * try: # <<<<<<<<<<<<<<
  7802. * _import_umath()
  7803. * except Exception:
  7804. */
  7805. {
  7806. __Pyx_PyThreadState_declare
  7807. __Pyx_PyThreadState_assign
  7808. __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3);
  7809. __Pyx_XGOTREF(__pyx_t_1);
  7810. __Pyx_XGOTREF(__pyx_t_2);
  7811. __Pyx_XGOTREF(__pyx_t_3);
  7812. /*try:*/ {
  7813. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1023
  7814. * cdef inline int import_ufunc() except -1:
  7815. * try:
  7816. * _import_umath() # <<<<<<<<<<<<<<
  7817. * except Exception:
  7818. * raise ImportError("numpy.core.umath failed to import")
  7819. */
  7820. __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1023, __pyx_L3_error)
  7821. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1022
  7822. *
  7823. * cdef inline int import_ufunc() except -1:
  7824. * try: # <<<<<<<<<<<<<<
  7825. * _import_umath()
  7826. * except Exception:
  7827. */
  7828. }
  7829. __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
  7830. __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
  7831. __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
  7832. goto __pyx_L8_try_end;
  7833. __pyx_L3_error:;
  7834. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1024
  7835. * try:
  7836. * _import_umath()
  7837. * except Exception: # <<<<<<<<<<<<<<
  7838. * raise ImportError("numpy.core.umath failed to import")
  7839. */
  7840. __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0])));
  7841. if (__pyx_t_4) {
  7842. __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7843. if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 1024, __pyx_L5_except_error)
  7844. __Pyx_GOTREF(__pyx_t_5);
  7845. __Pyx_GOTREF(__pyx_t_6);
  7846. __Pyx_GOTREF(__pyx_t_7);
  7847. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1025
  7848. * _import_umath()
  7849. * except Exception:
  7850. * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
  7851. */
  7852. __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__47, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 1025, __pyx_L5_except_error)
  7853. __Pyx_GOTREF(__pyx_t_8);
  7854. __Pyx_Raise(__pyx_t_8, 0, 0, 0);
  7855. __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
  7856. __PYX_ERR(1, 1025, __pyx_L5_except_error)
  7857. }
  7858. goto __pyx_L5_except_error;
  7859. __pyx_L5_except_error:;
  7860. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1022
  7861. *
  7862. * cdef inline int import_ufunc() except -1:
  7863. * try: # <<<<<<<<<<<<<<
  7864. * _import_umath()
  7865. * except Exception:
  7866. */
  7867. __Pyx_XGIVEREF(__pyx_t_1);
  7868. __Pyx_XGIVEREF(__pyx_t_2);
  7869. __Pyx_XGIVEREF(__pyx_t_3);
  7870. __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3);
  7871. goto __pyx_L1_error;
  7872. __pyx_L8_try_end:;
  7873. }
  7874. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1021
  7875. * raise ImportError("numpy.core.umath failed to import")
  7876. *
  7877. * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
  7878. * try:
  7879. * _import_umath()
  7880. */
  7881. /* function exit code */
  7882. __pyx_r = 0;
  7883. goto __pyx_L0;
  7884. __pyx_L1_error:;
  7885. __Pyx_XDECREF(__pyx_t_5);
  7886. __Pyx_XDECREF(__pyx_t_6);
  7887. __Pyx_XDECREF(__pyx_t_7);
  7888. __Pyx_XDECREF(__pyx_t_8);
  7889. __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename);
  7890. __pyx_r = -1;
  7891. __pyx_L0:;
  7892. __Pyx_RefNannyFinishContext();
  7893. return __pyx_r;
  7894. }
  7895. /* "vector.from_py":45
  7896. *
  7897. * @cname("__pyx_convert_vector_from_py_double")
  7898. * cdef vector[X] __pyx_convert_vector_from_py_double(object o) except *: # <<<<<<<<<<<<<<
  7899. * cdef vector[X] v
  7900. * for item in o:
  7901. */
  7902. static std::vector<double> __pyx_convert_vector_from_py_double(PyObject *__pyx_v_o) {
  7903. std::vector<double> __pyx_v_v;
  7904. PyObject *__pyx_v_item = NULL;
  7905. std::vector<double> __pyx_r;
  7906. __Pyx_RefNannyDeclarations
  7907. PyObject *__pyx_t_1 = NULL;
  7908. Py_ssize_t __pyx_t_2;
  7909. PyObject *(*__pyx_t_3)(PyObject *);
  7910. PyObject *__pyx_t_4 = NULL;
  7911. double __pyx_t_5;
  7912. __Pyx_RefNannySetupContext("__pyx_convert_vector_from_py_double", 0);
  7913. /* "vector.from_py":47
  7914. * cdef vector[X] __pyx_convert_vector_from_py_double(object o) except *:
  7915. * cdef vector[X] v
  7916. * for item in o: # <<<<<<<<<<<<<<
  7917. * v.push_back(<X>item)
  7918. * return v
  7919. */
  7920. if (likely(PyList_CheckExact(__pyx_v_o)) || PyTuple_CheckExact(__pyx_v_o)) {
  7921. __pyx_t_1 = __pyx_v_o; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0;
  7922. __pyx_t_3 = NULL;
  7923. } else {
  7924. __pyx_t_2 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_o); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 47, __pyx_L1_error)
  7925. __Pyx_GOTREF(__pyx_t_1);
  7926. __pyx_t_3 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 47, __pyx_L1_error)
  7927. }
  7928. for (;;) {
  7929. if (likely(!__pyx_t_3)) {
  7930. if (likely(PyList_CheckExact(__pyx_t_1))) {
  7931. if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break;
  7932. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  7933. __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(2, 47, __pyx_L1_error)
  7934. #else
  7935. __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 47, __pyx_L1_error)
  7936. __Pyx_GOTREF(__pyx_t_4);
  7937. #endif
  7938. } else {
  7939. if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
  7940. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  7941. __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(2, 47, __pyx_L1_error)
  7942. #else
  7943. __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 47, __pyx_L1_error)
  7944. __Pyx_GOTREF(__pyx_t_4);
  7945. #endif
  7946. }
  7947. } else {
  7948. __pyx_t_4 = __pyx_t_3(__pyx_t_1);
  7949. if (unlikely(!__pyx_t_4)) {
  7950. PyObject* exc_type = PyErr_Occurred();
  7951. if (exc_type) {
  7952. if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear();
  7953. else __PYX_ERR(2, 47, __pyx_L1_error)
  7954. }
  7955. break;
  7956. }
  7957. __Pyx_GOTREF(__pyx_t_4);
  7958. }
  7959. __Pyx_XDECREF_SET(__pyx_v_item, __pyx_t_4);
  7960. __pyx_t_4 = 0;
  7961. /* "vector.from_py":48
  7962. * cdef vector[X] v
  7963. * for item in o:
  7964. * v.push_back(<X>item) # <<<<<<<<<<<<<<
  7965. * return v
  7966. *
  7967. */
  7968. __pyx_t_5 = __pyx_PyFloat_AsDouble(__pyx_v_item); if (unlikely((__pyx_t_5 == (double)-1) && PyErr_Occurred())) __PYX_ERR(2, 48, __pyx_L1_error)
  7969. __pyx_v_v.push_back(((double)__pyx_t_5));
  7970. /* "vector.from_py":47
  7971. * cdef vector[X] __pyx_convert_vector_from_py_double(object o) except *:
  7972. * cdef vector[X] v
  7973. * for item in o: # <<<<<<<<<<<<<<
  7974. * v.push_back(<X>item)
  7975. * return v
  7976. */
  7977. }
  7978. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  7979. /* "vector.from_py":49
  7980. * for item in o:
  7981. * v.push_back(<X>item)
  7982. * return v # <<<<<<<<<<<<<<
  7983. *
  7984. *
  7985. */
  7986. __pyx_r = __pyx_v_v;
  7987. goto __pyx_L0;
  7988. /* "vector.from_py":45
  7989. *
  7990. * @cname("__pyx_convert_vector_from_py_double")
  7991. * cdef vector[X] __pyx_convert_vector_from_py_double(object o) except *: # <<<<<<<<<<<<<<
  7992. * cdef vector[X] v
  7993. * for item in o:
  7994. */
  7995. /* function exit code */
  7996. __pyx_L1_error:;
  7997. __Pyx_XDECREF(__pyx_t_1);
  7998. __Pyx_XDECREF(__pyx_t_4);
  7999. __Pyx_AddTraceback("vector.from_py.__pyx_convert_vector_from_py_double", __pyx_clineno, __pyx_lineno, __pyx_filename);
  8000. __Pyx_pretend_to_initialize(&__pyx_r);
  8001. __pyx_L0:;
  8002. __Pyx_XDECREF(__pyx_v_item);
  8003. __Pyx_RefNannyFinishContext();
  8004. return __pyx_r;
  8005. }
  8006. static std::vector<__pyx_t_double_complex> __pyx_convert_vector_from_py___pyx_t_double_complex(PyObject *__pyx_v_o) {
  8007. std::vector<__pyx_t_double_complex> __pyx_v_v;
  8008. PyObject *__pyx_v_item = NULL;
  8009. std::vector<__pyx_t_double_complex> __pyx_r;
  8010. __Pyx_RefNannyDeclarations
  8011. PyObject *__pyx_t_1 = NULL;
  8012. Py_ssize_t __pyx_t_2;
  8013. PyObject *(*__pyx_t_3)(PyObject *);
  8014. PyObject *__pyx_t_4 = NULL;
  8015. __pyx_t_double_complex __pyx_t_5;
  8016. __Pyx_RefNannySetupContext("__pyx_convert_vector_from_py___pyx_t_double_complex", 0);
  8017. /* "vector.from_py":47
  8018. * cdef vector[X] __pyx_convert_vector_from_py___pyx_t_double_complex(object o) except *:
  8019. * cdef vector[X] v
  8020. * for item in o: # <<<<<<<<<<<<<<
  8021. * v.push_back(<X>item)
  8022. * return v
  8023. */
  8024. if (likely(PyList_CheckExact(__pyx_v_o)) || PyTuple_CheckExact(__pyx_v_o)) {
  8025. __pyx_t_1 = __pyx_v_o; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0;
  8026. __pyx_t_3 = NULL;
  8027. } else {
  8028. __pyx_t_2 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_o); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 47, __pyx_L1_error)
  8029. __Pyx_GOTREF(__pyx_t_1);
  8030. __pyx_t_3 = Py_TYPE(__pyx_t_1)->tp_iternext; if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 47, __pyx_L1_error)
  8031. }
  8032. for (;;) {
  8033. if (likely(!__pyx_t_3)) {
  8034. if (likely(PyList_CheckExact(__pyx_t_1))) {
  8035. if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break;
  8036. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  8037. __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(2, 47, __pyx_L1_error)
  8038. #else
  8039. __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 47, __pyx_L1_error)
  8040. __Pyx_GOTREF(__pyx_t_4);
  8041. #endif
  8042. } else {
  8043. if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
  8044. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  8045. __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_4); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(2, 47, __pyx_L1_error)
  8046. #else
  8047. __pyx_t_4 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 47, __pyx_L1_error)
  8048. __Pyx_GOTREF(__pyx_t_4);
  8049. #endif
  8050. }
  8051. } else {
  8052. __pyx_t_4 = __pyx_t_3(__pyx_t_1);
  8053. if (unlikely(!__pyx_t_4)) {
  8054. PyObject* exc_type = PyErr_Occurred();
  8055. if (exc_type) {
  8056. if (likely(__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) PyErr_Clear();
  8057. else __PYX_ERR(2, 47, __pyx_L1_error)
  8058. }
  8059. break;
  8060. }
  8061. __Pyx_GOTREF(__pyx_t_4);
  8062. }
  8063. __Pyx_XDECREF_SET(__pyx_v_item, __pyx_t_4);
  8064. __pyx_t_4 = 0;
  8065. /* "vector.from_py":48
  8066. * cdef vector[X] v
  8067. * for item in o:
  8068. * v.push_back(<X>item) # <<<<<<<<<<<<<<
  8069. * return v
  8070. *
  8071. */
  8072. __pyx_t_5 = __Pyx_PyComplex_As___pyx_t_double_complex(__pyx_v_item); if (unlikely(PyErr_Occurred())) __PYX_ERR(2, 48, __pyx_L1_error)
  8073. __pyx_v_v.push_back(__pyx_t_double_complex_from_parts(((double)__Pyx_CREAL(__pyx_t_5)), ((double)__Pyx_CIMAG(__pyx_t_5))));
  8074. /* "vector.from_py":47
  8075. * cdef vector[X] __pyx_convert_vector_from_py___pyx_t_double_complex(object o) except *:
  8076. * cdef vector[X] v
  8077. * for item in o: # <<<<<<<<<<<<<<
  8078. * v.push_back(<X>item)
  8079. * return v
  8080. */
  8081. }
  8082. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  8083. /* "vector.from_py":49
  8084. * for item in o:
  8085. * v.push_back(<X>item)
  8086. * return v # <<<<<<<<<<<<<<
  8087. *
  8088. *
  8089. */
  8090. __pyx_r = __pyx_v_v;
  8091. goto __pyx_L0;
  8092. /* "vector.from_py":45
  8093. *
  8094. * @cname("__pyx_convert_vector_from_py___pyx_t_double_complex")
  8095. * cdef vector[X] __pyx_convert_vector_from_py___pyx_t_double_complex(object o) except *: # <<<<<<<<<<<<<<
  8096. * cdef vector[X] v
  8097. * for item in o:
  8098. */
  8099. /* function exit code */
  8100. __pyx_L1_error:;
  8101. __Pyx_XDECREF(__pyx_t_1);
  8102. __Pyx_XDECREF(__pyx_t_4);
  8103. __Pyx_AddTraceback("vector.from_py.__pyx_convert_vector_from_py___pyx_t_double_complex", __pyx_clineno, __pyx_lineno, __pyx_filename);
  8104. __Pyx_pretend_to_initialize(&__pyx_r);
  8105. __pyx_L0:;
  8106. __Pyx_XDECREF(__pyx_v_item);
  8107. __Pyx_RefNannyFinishContext();
  8108. return __pyx_r;
  8109. }
  8110. static PyMethodDef __pyx_methods[] = {
  8111. {0, 0, 0, 0}
  8112. };
  8113. #if PY_MAJOR_VERSION >= 3
  8114. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8115. static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/
  8116. static int __pyx_pymod_exec_scattnlay(PyObject* module); /*proto*/
  8117. static PyModuleDef_Slot __pyx_moduledef_slots[] = {
  8118. {Py_mod_create, (void*)__pyx_pymod_create},
  8119. {Py_mod_exec, (void*)__pyx_pymod_exec_scattnlay},
  8120. {0, NULL}
  8121. };
  8122. #endif
  8123. static struct PyModuleDef __pyx_moduledef = {
  8124. PyModuleDef_HEAD_INIT,
  8125. "scattnlay",
  8126. 0, /* m_doc */
  8127. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8128. 0, /* m_size */
  8129. #else
  8130. -1, /* m_size */
  8131. #endif
  8132. __pyx_methods /* m_methods */,
  8133. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8134. __pyx_moduledef_slots, /* m_slots */
  8135. #else
  8136. NULL, /* m_reload */
  8137. #endif
  8138. NULL, /* m_traverse */
  8139. NULL, /* m_clear */
  8140. NULL /* m_free */
  8141. };
  8142. #endif
  8143. static __Pyx_StringTabEntry __pyx_string_tab[] = {
  8144. {&__pyx_n_s_Albedo, __pyx_k_Albedo, sizeof(__pyx_k_Albedo), 0, 0, 1, 1},
  8145. {&__pyx_n_s_C, __pyx_k_C, sizeof(__pyx_k_C), 0, 0, 1, 1},
  8146. {&__pyx_n_s_C_CONTIGUOUS, __pyx_k_C_CONTIGUOUS, sizeof(__pyx_k_C_CONTIGUOUS), 0, 0, 1, 1},
  8147. {&__pyx_n_s_E, __pyx_k_E, sizeof(__pyx_k_E), 0, 0, 1, 1},
  8148. {&__pyx_n_s_Eix, __pyx_k_Eix, sizeof(__pyx_k_Eix), 0, 0, 1, 1},
  8149. {&__pyx_n_s_Eiy, __pyx_k_Eiy, sizeof(__pyx_k_Eiy), 0, 0, 1, 1},
  8150. {&__pyx_n_s_Eiz, __pyx_k_Eiz, sizeof(__pyx_k_Eiz), 0, 0, 1, 1},
  8151. {&__pyx_n_s_Erx, __pyx_k_Erx, sizeof(__pyx_k_Erx), 0, 0, 1, 1},
  8152. {&__pyx_n_s_Ery, __pyx_k_Ery, sizeof(__pyx_k_Ery), 0, 0, 1, 1},
  8153. {&__pyx_n_s_Erz, __pyx_k_Erz, sizeof(__pyx_k_Erz), 0, 0, 1, 1},
  8154. {&__pyx_kp_u_Format_string_allocated_too_shor, __pyx_k_Format_string_allocated_too_shor, sizeof(__pyx_k_Format_string_allocated_too_shor), 0, 1, 0, 0},
  8155. {&__pyx_kp_u_Format_string_allocated_too_shor_2, __pyx_k_Format_string_allocated_too_shor_2, sizeof(__pyx_k_Format_string_allocated_too_shor_2), 0, 1, 0, 0},
  8156. {&__pyx_n_s_H, __pyx_k_H, sizeof(__pyx_k_H), 0, 0, 1, 1},
  8157. {&__pyx_n_s_Hix, __pyx_k_Hix, sizeof(__pyx_k_Hix), 0, 0, 1, 1},
  8158. {&__pyx_n_s_Hiy, __pyx_k_Hiy, sizeof(__pyx_k_Hiy), 0, 0, 1, 1},
  8159. {&__pyx_n_s_Hiz, __pyx_k_Hiz, sizeof(__pyx_k_Hiz), 0, 0, 1, 1},
  8160. {&__pyx_n_s_Hrx, __pyx_k_Hrx, sizeof(__pyx_k_Hrx), 0, 0, 1, 1},
  8161. {&__pyx_n_s_Hry, __pyx_k_Hry, sizeof(__pyx_k_Hry), 0, 0, 1, 1},
  8162. {&__pyx_n_s_Hrz, __pyx_k_Hrz, sizeof(__pyx_k_Hrz), 0, 0, 1, 1},
  8163. {&__pyx_n_s_ImportError, __pyx_k_ImportError, sizeof(__pyx_k_ImportError), 0, 0, 1, 1},
  8164. {&__pyx_kp_u_Non_native_byte_order_not_suppor, __pyx_k_Non_native_byte_order_not_suppor, sizeof(__pyx_k_Non_native_byte_order_not_suppor), 0, 1, 0, 0},
  8165. {&__pyx_n_s_Qabs, __pyx_k_Qabs, sizeof(__pyx_k_Qabs), 0, 0, 1, 1},
  8166. {&__pyx_n_s_Qbk, __pyx_k_Qbk, sizeof(__pyx_k_Qbk), 0, 0, 1, 1},
  8167. {&__pyx_n_s_Qext, __pyx_k_Qext, sizeof(__pyx_k_Qext), 0, 0, 1, 1},
  8168. {&__pyx_n_s_Qpr, __pyx_k_Qpr, sizeof(__pyx_k_Qpr), 0, 0, 1, 1},
  8169. {&__pyx_n_s_Qsca, __pyx_k_Qsca, sizeof(__pyx_k_Qsca), 0, 0, 1, 1},
  8170. {&__pyx_n_s_RuntimeError, __pyx_k_RuntimeError, sizeof(__pyx_k_RuntimeError), 0, 0, 1, 1},
  8171. {&__pyx_n_s_S1, __pyx_k_S1, sizeof(__pyx_k_S1), 0, 0, 1, 1},
  8172. {&__pyx_n_s_S1i, __pyx_k_S1i, sizeof(__pyx_k_S1i), 0, 0, 1, 1},
  8173. {&__pyx_n_s_S1r, __pyx_k_S1r, sizeof(__pyx_k_S1r), 0, 0, 1, 1},
  8174. {&__pyx_n_s_S2, __pyx_k_S2, sizeof(__pyx_k_S2), 0, 0, 1, 1},
  8175. {&__pyx_n_s_S2i, __pyx_k_S2i, sizeof(__pyx_k_S2i), 0, 0, 1, 1},
  8176. {&__pyx_n_s_S2r, __pyx_k_S2r, sizeof(__pyx_k_S2r), 0, 0, 1, 1},
  8177. {&__pyx_n_s_ValueError, __pyx_k_ValueError, sizeof(__pyx_k_ValueError), 0, 0, 1, 1},
  8178. {&__pyx_n_s_an, __pyx_k_an, sizeof(__pyx_k_an), 0, 0, 1, 1},
  8179. {&__pyx_n_s_ani, __pyx_k_ani, sizeof(__pyx_k_ani), 0, 0, 1, 1},
  8180. {&__pyx_n_s_anr, __pyx_k_anr, sizeof(__pyx_k_anr), 0, 0, 1, 1},
  8181. {&__pyx_n_s_bn, __pyx_k_bn, sizeof(__pyx_k_bn), 0, 0, 1, 1},
  8182. {&__pyx_n_s_bni, __pyx_k_bni, sizeof(__pyx_k_bni), 0, 0, 1, 1},
  8183. {&__pyx_n_s_bnr, __pyx_k_bnr, sizeof(__pyx_k_bnr), 0, 0, 1, 1},
  8184. {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1},
  8185. {&__pyx_n_s_complex128, __pyx_k_complex128, sizeof(__pyx_k_complex128), 0, 0, 1, 1},
  8186. {&__pyx_n_s_coords, __pyx_k_coords, sizeof(__pyx_k_coords), 0, 0, 1, 1},
  8187. {&__pyx_n_s_copy, __pyx_k_copy, sizeof(__pyx_k_copy), 0, 0, 1, 1},
  8188. {&__pyx_n_s_dtype, __pyx_k_dtype, sizeof(__pyx_k_dtype), 0, 0, 1, 1},
  8189. {&__pyx_n_s_fieldnlay, __pyx_k_fieldnlay, sizeof(__pyx_k_fieldnlay), 0, 0, 1, 1},
  8190. {&__pyx_n_s_flags, __pyx_k_flags, sizeof(__pyx_k_flags), 0, 0, 1, 1},
  8191. {&__pyx_n_s_float64, __pyx_k_float64, sizeof(__pyx_k_float64), 0, 0, 1, 1},
  8192. {&__pyx_n_s_g, __pyx_k_g, sizeof(__pyx_k_g), 0, 0, 1, 1},
  8193. {&__pyx_n_s_i, __pyx_k_i, sizeof(__pyx_k_i), 0, 0, 1, 1},
  8194. {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1},
  8195. {&__pyx_n_s_int, __pyx_k_int, sizeof(__pyx_k_int), 0, 0, 1, 1},
  8196. {&__pyx_n_s_m, __pyx_k_m, sizeof(__pyx_k_m), 0, 0, 1, 1},
  8197. {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1},
  8198. {&__pyx_n_s_mode_n, __pyx_k_mode_n, sizeof(__pyx_k_mode_n), 0, 0, 1, 1},
  8199. {&__pyx_n_s_mode_type, __pyx_k_mode_type, sizeof(__pyx_k_mode_type), 0, 0, 1, 1},
  8200. {&__pyx_kp_u_ndarray_is_not_C_contiguous, __pyx_k_ndarray_is_not_C_contiguous, sizeof(__pyx_k_ndarray_is_not_C_contiguous), 0, 1, 0, 0},
  8201. {&__pyx_kp_u_ndarray_is_not_Fortran_contiguou, __pyx_k_ndarray_is_not_Fortran_contiguou, sizeof(__pyx_k_ndarray_is_not_Fortran_contiguou), 0, 1, 0, 0},
  8202. {&__pyx_n_s_nmax, __pyx_k_nmax, sizeof(__pyx_k_nmax), 0, 0, 1, 1},
  8203. {&__pyx_n_s_np, __pyx_k_np, sizeof(__pyx_k_np), 0, 0, 1, 1},
  8204. {&__pyx_n_s_numpy, __pyx_k_numpy, sizeof(__pyx_k_numpy), 0, 0, 1, 1},
  8205. {&__pyx_kp_s_numpy_core_multiarray_failed_to, __pyx_k_numpy_core_multiarray_failed_to, sizeof(__pyx_k_numpy_core_multiarray_failed_to), 0, 0, 1, 0},
  8206. {&__pyx_kp_s_numpy_core_umath_failed_to_impor, __pyx_k_numpy_core_umath_failed_to_impor, sizeof(__pyx_k_numpy_core_umath_failed_to_impor), 0, 0, 1, 0},
  8207. {&__pyx_n_s_pl, __pyx_k_pl, sizeof(__pyx_k_pl), 0, 0, 1, 1},
  8208. {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1},
  8209. {&__pyx_n_s_scattcoeffs, __pyx_k_scattcoeffs, sizeof(__pyx_k_scattcoeffs), 0, 0, 1, 1},
  8210. {&__pyx_n_s_scattnlay, __pyx_k_scattnlay, sizeof(__pyx_k_scattnlay), 0, 0, 1, 1},
  8211. {&__pyx_kp_s_scattnlay_pyx, __pyx_k_scattnlay_pyx, sizeof(__pyx_k_scattnlay_pyx), 0, 0, 1, 0},
  8212. {&__pyx_n_s_terms, __pyx_k_terms, sizeof(__pyx_k_terms), 0, 0, 1, 1},
  8213. {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1},
  8214. {&__pyx_n_s_theta, __pyx_k_theta, sizeof(__pyx_k_theta), 0, 0, 1, 1},
  8215. {&__pyx_n_s_transpose, __pyx_k_transpose, sizeof(__pyx_k_transpose), 0, 0, 1, 1},
  8216. {&__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_k_unknown_dtype_code_in_numpy_pxd, sizeof(__pyx_k_unknown_dtype_code_in_numpy_pxd), 0, 1, 0, 0},
  8217. {&__pyx_n_s_vstack, __pyx_k_vstack, sizeof(__pyx_k_vstack), 0, 0, 1, 1},
  8218. {&__pyx_n_s_x, __pyx_k_x, sizeof(__pyx_k_x), 0, 0, 1, 1},
  8219. {&__pyx_n_s_zeros, __pyx_k_zeros, sizeof(__pyx_k_zeros), 0, 0, 1, 1},
  8220. {0, 0, 0, 0, 0, 0, 0}
  8221. };
  8222. static int __Pyx_InitCachedBuiltins(void) {
  8223. __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 62, __pyx_L1_error)
  8224. __pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_n_s_ValueError); if (!__pyx_builtin_ValueError) __PYX_ERR(1, 235, __pyx_L1_error)
  8225. __pyx_builtin_RuntimeError = __Pyx_GetBuiltinName(__pyx_n_s_RuntimeError); if (!__pyx_builtin_RuntimeError) __PYX_ERR(1, 823, __pyx_L1_error)
  8226. __pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_n_s_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 1013, __pyx_L1_error)
  8227. return 0;
  8228. __pyx_L1_error:;
  8229. return -1;
  8230. }
  8231. static int __Pyx_InitCachedConstants(void) {
  8232. __Pyx_RefNannyDeclarations
  8233. __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
  8234. /* "scattnlay.pyx":39
  8235. *
  8236. * if not (<object>a).flags["C_CONTIGUOUS"]: # Array is not contiguous, need to make contiguous copy
  8237. * a = a.copy('C') # <<<<<<<<<<<<<<
  8238. *
  8239. * # Return data pointer
  8240. */
  8241. __pyx_tuple_ = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple_)) __PYX_ERR(0, 39, __pyx_L1_error)
  8242. __Pyx_GOTREF(__pyx_tuple_);
  8243. __Pyx_GIVEREF(__pyx_tuple_);
  8244. /* "scattnlay.pyx":68
  8245. * bni = np.zeros(nmax, dtype = np.float64)
  8246. *
  8247. * terms[i] = ScattCoeffs(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, npy2c(anr), npy2c(ani), npy2c(bnr), npy2c(bni)) # <<<<<<<<<<<<<<
  8248. *
  8249. * an[i] = anr.copy('C') + 1.0j*ani.copy('C')
  8250. */
  8251. __pyx_tuple__2 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__2)) __PYX_ERR(0, 68, __pyx_L1_error)
  8252. __Pyx_GOTREF(__pyx_tuple__2);
  8253. __Pyx_GIVEREF(__pyx_tuple__2);
  8254. __pyx_tuple__3 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 68, __pyx_L1_error)
  8255. __Pyx_GOTREF(__pyx_tuple__3);
  8256. __Pyx_GIVEREF(__pyx_tuple__3);
  8257. /* "scattnlay.pyx":70
  8258. * terms[i] = ScattCoeffs(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, npy2c(anr), npy2c(ani), npy2c(bnr), npy2c(bni))
  8259. *
  8260. * an[i] = anr.copy('C') + 1.0j*ani.copy('C') # <<<<<<<<<<<<<<
  8261. * bn[i] = bnr.copy('C') + 1.0j*bni.copy('C')
  8262. *
  8263. */
  8264. __pyx_tuple__4 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(0, 70, __pyx_L1_error)
  8265. __Pyx_GOTREF(__pyx_tuple__4);
  8266. __Pyx_GIVEREF(__pyx_tuple__4);
  8267. __pyx_tuple__5 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__5)) __PYX_ERR(0, 70, __pyx_L1_error)
  8268. __Pyx_GOTREF(__pyx_tuple__5);
  8269. __Pyx_GIVEREF(__pyx_tuple__5);
  8270. /* "scattnlay.pyx":71
  8271. *
  8272. * an[i] = anr.copy('C') + 1.0j*ani.copy('C')
  8273. * bn[i] = bnr.copy('C') + 1.0j*bni.copy('C') # <<<<<<<<<<<<<<
  8274. *
  8275. * return terms, an, bn
  8276. */
  8277. __pyx_tuple__6 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(0, 71, __pyx_L1_error)
  8278. __Pyx_GOTREF(__pyx_tuple__6);
  8279. __Pyx_GIVEREF(__pyx_tuple__6);
  8280. __pyx_tuple__7 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(0, 71, __pyx_L1_error)
  8281. __Pyx_GOTREF(__pyx_tuple__7);
  8282. __Pyx_GIVEREF(__pyx_tuple__7);
  8283. /* "scattnlay.pyx":102
  8284. * S2i = np.zeros(theta.shape[0], dtype = np.float64)
  8285. *
  8286. * terms[i] = nMie(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), theta.shape[0], theta.copy('C'), nmax, &Qext[i], &Qsca[i], &Qabs[i], &Qbk[i], &Qpr[i], &g[i], &Albedo[i], npy2c(S1r), npy2c(S1i), npy2c(S2r), npy2c(S2i)) # <<<<<<<<<<<<<<
  8287. *
  8288. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C')
  8289. */
  8290. __pyx_tuple__9 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(0, 102, __pyx_L1_error)
  8291. __Pyx_GOTREF(__pyx_tuple__9);
  8292. __Pyx_GIVEREF(__pyx_tuple__9);
  8293. __pyx_tuple__10 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__10)) __PYX_ERR(0, 102, __pyx_L1_error)
  8294. __Pyx_GOTREF(__pyx_tuple__10);
  8295. __Pyx_GIVEREF(__pyx_tuple__10);
  8296. __pyx_tuple__11 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__11)) __PYX_ERR(0, 102, __pyx_L1_error)
  8297. __Pyx_GOTREF(__pyx_tuple__11);
  8298. __Pyx_GIVEREF(__pyx_tuple__11);
  8299. /* "scattnlay.pyx":104
  8300. * terms[i] = nMie(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), theta.shape[0], theta.copy('C'), nmax, &Qext[i], &Qsca[i], &Qabs[i], &Qbk[i], &Qpr[i], &g[i], &Albedo[i], npy2c(S1r), npy2c(S1i), npy2c(S2r), npy2c(S2i))
  8301. *
  8302. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C') # <<<<<<<<<<<<<<
  8303. * S2[i] = S2r.copy('C') + 1.0j*S2i.copy('C')
  8304. *
  8305. */
  8306. __pyx_tuple__12 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__12)) __PYX_ERR(0, 104, __pyx_L1_error)
  8307. __Pyx_GOTREF(__pyx_tuple__12);
  8308. __Pyx_GIVEREF(__pyx_tuple__12);
  8309. __pyx_tuple__13 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__13)) __PYX_ERR(0, 104, __pyx_L1_error)
  8310. __Pyx_GOTREF(__pyx_tuple__13);
  8311. __Pyx_GIVEREF(__pyx_tuple__13);
  8312. /* "scattnlay.pyx":105
  8313. *
  8314. * S1[i] = S1r.copy('C') + 1.0j*S1i.copy('C')
  8315. * S2[i] = S2r.copy('C') + 1.0j*S2i.copy('C') # <<<<<<<<<<<<<<
  8316. *
  8317. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  8318. */
  8319. __pyx_tuple__14 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__14)) __PYX_ERR(0, 105, __pyx_L1_error)
  8320. __Pyx_GOTREF(__pyx_tuple__14);
  8321. __Pyx_GIVEREF(__pyx_tuple__14);
  8322. __pyx_tuple__15 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__15)) __PYX_ERR(0, 105, __pyx_L1_error)
  8323. __Pyx_GOTREF(__pyx_tuple__15);
  8324. __Pyx_GIVEREF(__pyx_tuple__15);
  8325. /* "scattnlay.pyx":144
  8326. * Hiz = np.zeros(coords.shape[0], dtype = np.float64)
  8327. *
  8328. * terms[i] = nField(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, mode_n, mode_type, coords.shape[0], coords[:, 0].copy('C'), coords[:, 1].copy('C'), coords[:, 2].copy('C'), npy2c(Erx), npy2c(Ery), npy2c(Erz), npy2c(Eix), npy2c(Eiy), npy2c(Eiz), npy2c(Hrx), npy2c(Hry), npy2c(Hrz), npy2c(Hix), npy2c(Hiy), npy2c(Hiz)) # <<<<<<<<<<<<<<
  8329. *
  8330. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose()
  8331. */
  8332. __pyx_tuple__16 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__16)) __PYX_ERR(0, 144, __pyx_L1_error)
  8333. __Pyx_GOTREF(__pyx_tuple__16);
  8334. __Pyx_GIVEREF(__pyx_tuple__16);
  8335. __pyx_tuple__17 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__17)) __PYX_ERR(0, 144, __pyx_L1_error)
  8336. __Pyx_GOTREF(__pyx_tuple__17);
  8337. __Pyx_GIVEREF(__pyx_tuple__17);
  8338. __pyx_slice__18 = PySlice_New(Py_None, Py_None, Py_None); if (unlikely(!__pyx_slice__18)) __PYX_ERR(0, 144, __pyx_L1_error)
  8339. __Pyx_GOTREF(__pyx_slice__18);
  8340. __Pyx_GIVEREF(__pyx_slice__18);
  8341. __pyx_tuple__19 = PyTuple_Pack(2, __pyx_slice__18, __pyx_int_0); if (unlikely(!__pyx_tuple__19)) __PYX_ERR(0, 144, __pyx_L1_error)
  8342. __Pyx_GOTREF(__pyx_tuple__19);
  8343. __Pyx_GIVEREF(__pyx_tuple__19);
  8344. __pyx_tuple__20 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__20)) __PYX_ERR(0, 144, __pyx_L1_error)
  8345. __Pyx_GOTREF(__pyx_tuple__20);
  8346. __Pyx_GIVEREF(__pyx_tuple__20);
  8347. __pyx_slice__21 = PySlice_New(Py_None, Py_None, Py_None); if (unlikely(!__pyx_slice__21)) __PYX_ERR(0, 144, __pyx_L1_error)
  8348. __Pyx_GOTREF(__pyx_slice__21);
  8349. __Pyx_GIVEREF(__pyx_slice__21);
  8350. __pyx_tuple__22 = PyTuple_Pack(2, __pyx_slice__21, __pyx_int_1); if (unlikely(!__pyx_tuple__22)) __PYX_ERR(0, 144, __pyx_L1_error)
  8351. __Pyx_GOTREF(__pyx_tuple__22);
  8352. __Pyx_GIVEREF(__pyx_tuple__22);
  8353. __pyx_tuple__23 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__23)) __PYX_ERR(0, 144, __pyx_L1_error)
  8354. __Pyx_GOTREF(__pyx_tuple__23);
  8355. __Pyx_GIVEREF(__pyx_tuple__23);
  8356. __pyx_slice__24 = PySlice_New(Py_None, Py_None, Py_None); if (unlikely(!__pyx_slice__24)) __PYX_ERR(0, 144, __pyx_L1_error)
  8357. __Pyx_GOTREF(__pyx_slice__24);
  8358. __Pyx_GIVEREF(__pyx_slice__24);
  8359. __pyx_tuple__25 = PyTuple_Pack(2, __pyx_slice__24, __pyx_int_2); if (unlikely(!__pyx_tuple__25)) __PYX_ERR(0, 144, __pyx_L1_error)
  8360. __Pyx_GOTREF(__pyx_tuple__25);
  8361. __Pyx_GIVEREF(__pyx_tuple__25);
  8362. __pyx_tuple__26 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__26)) __PYX_ERR(0, 144, __pyx_L1_error)
  8363. __Pyx_GOTREF(__pyx_tuple__26);
  8364. __Pyx_GIVEREF(__pyx_tuple__26);
  8365. /* "scattnlay.pyx":146
  8366. * terms[i] = nField(x.shape[1], pl, x[i].copy('C'), m[i].copy('C'), nmax, mode_n, mode_type, coords.shape[0], coords[:, 0].copy('C'), coords[:, 1].copy('C'), coords[:, 2].copy('C'), npy2c(Erx), npy2c(Ery), npy2c(Erz), npy2c(Eix), npy2c(Eiy), npy2c(Eiz), npy2c(Hrx), npy2c(Hry), npy2c(Hrz), npy2c(Hix), npy2c(Hiy), npy2c(Hiz))
  8367. *
  8368. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose() # <<<<<<<<<<<<<<
  8369. * H[i] = np.vstack((Hrx.copy('C') + 1.0j*Hix.copy('C'), Hry.copy('C') + 1.0j*Hiy.copy('C'), Hrz.copy('C') + 1.0j*Hiz.copy('C'))).transpose()
  8370. *
  8371. */
  8372. __pyx_tuple__27 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__27)) __PYX_ERR(0, 146, __pyx_L1_error)
  8373. __Pyx_GOTREF(__pyx_tuple__27);
  8374. __Pyx_GIVEREF(__pyx_tuple__27);
  8375. __pyx_tuple__28 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__28)) __PYX_ERR(0, 146, __pyx_L1_error)
  8376. __Pyx_GOTREF(__pyx_tuple__28);
  8377. __Pyx_GIVEREF(__pyx_tuple__28);
  8378. __pyx_tuple__29 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__29)) __PYX_ERR(0, 146, __pyx_L1_error)
  8379. __Pyx_GOTREF(__pyx_tuple__29);
  8380. __Pyx_GIVEREF(__pyx_tuple__29);
  8381. __pyx_tuple__30 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__30)) __PYX_ERR(0, 146, __pyx_L1_error)
  8382. __Pyx_GOTREF(__pyx_tuple__30);
  8383. __Pyx_GIVEREF(__pyx_tuple__30);
  8384. __pyx_tuple__31 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__31)) __PYX_ERR(0, 146, __pyx_L1_error)
  8385. __Pyx_GOTREF(__pyx_tuple__31);
  8386. __Pyx_GIVEREF(__pyx_tuple__31);
  8387. __pyx_tuple__32 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__32)) __PYX_ERR(0, 146, __pyx_L1_error)
  8388. __Pyx_GOTREF(__pyx_tuple__32);
  8389. __Pyx_GIVEREF(__pyx_tuple__32);
  8390. /* "scattnlay.pyx":147
  8391. *
  8392. * E[i] = np.vstack((Erx.copy('C') + 1.0j*Eix.copy('C'), Ery.copy('C') + 1.0j*Eiy.copy('C'), Erz.copy('C') + 1.0j*Eiz.copy('C'))).transpose()
  8393. * H[i] = np.vstack((Hrx.copy('C') + 1.0j*Hix.copy('C'), Hry.copy('C') + 1.0j*Hiy.copy('C'), Hrz.copy('C') + 1.0j*Hiz.copy('C'))).transpose() # <<<<<<<<<<<<<<
  8394. *
  8395. * return terms, E, H
  8396. */
  8397. __pyx_tuple__33 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__33)) __PYX_ERR(0, 147, __pyx_L1_error)
  8398. __Pyx_GOTREF(__pyx_tuple__33);
  8399. __Pyx_GIVEREF(__pyx_tuple__33);
  8400. __pyx_tuple__34 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__34)) __PYX_ERR(0, 147, __pyx_L1_error)
  8401. __Pyx_GOTREF(__pyx_tuple__34);
  8402. __Pyx_GIVEREF(__pyx_tuple__34);
  8403. __pyx_tuple__35 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__35)) __PYX_ERR(0, 147, __pyx_L1_error)
  8404. __Pyx_GOTREF(__pyx_tuple__35);
  8405. __Pyx_GIVEREF(__pyx_tuple__35);
  8406. __pyx_tuple__36 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__36)) __PYX_ERR(0, 147, __pyx_L1_error)
  8407. __Pyx_GOTREF(__pyx_tuple__36);
  8408. __Pyx_GIVEREF(__pyx_tuple__36);
  8409. __pyx_tuple__37 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__37)) __PYX_ERR(0, 147, __pyx_L1_error)
  8410. __Pyx_GOTREF(__pyx_tuple__37);
  8411. __Pyx_GIVEREF(__pyx_tuple__37);
  8412. __pyx_tuple__38 = PyTuple_Pack(1, __pyx_n_s_C); if (unlikely(!__pyx_tuple__38)) __PYX_ERR(0, 147, __pyx_L1_error)
  8413. __Pyx_GOTREF(__pyx_tuple__38);
  8414. __Pyx_GIVEREF(__pyx_tuple__38);
  8415. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":235
  8416. * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS)
  8417. * and not PyArray_CHKFLAGS(self, NPY_C_CONTIGUOUS)):
  8418. * raise ValueError(u"ndarray is not C contiguous") # <<<<<<<<<<<<<<
  8419. *
  8420. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
  8421. */
  8422. __pyx_tuple__39 = PyTuple_Pack(1, __pyx_kp_u_ndarray_is_not_C_contiguous); if (unlikely(!__pyx_tuple__39)) __PYX_ERR(1, 235, __pyx_L1_error)
  8423. __Pyx_GOTREF(__pyx_tuple__39);
  8424. __Pyx_GIVEREF(__pyx_tuple__39);
  8425. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":239
  8426. * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS)
  8427. * and not PyArray_CHKFLAGS(self, NPY_F_CONTIGUOUS)):
  8428. * raise ValueError(u"ndarray is not Fortran contiguous") # <<<<<<<<<<<<<<
  8429. *
  8430. * info.buf = PyArray_DATA(self)
  8431. */
  8432. __pyx_tuple__40 = PyTuple_Pack(1, __pyx_kp_u_ndarray_is_not_Fortran_contiguou); if (unlikely(!__pyx_tuple__40)) __PYX_ERR(1, 239, __pyx_L1_error)
  8433. __Pyx_GOTREF(__pyx_tuple__40);
  8434. __Pyx_GIVEREF(__pyx_tuple__40);
  8435. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":276
  8436. * if ((descr.byteorder == c'>' and little_endian) or
  8437. * (descr.byteorder == c'<' and not little_endian)):
  8438. * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
  8439. * if t == NPY_BYTE: f = "b"
  8440. * elif t == NPY_UBYTE: f = "B"
  8441. */
  8442. __pyx_tuple__41 = PyTuple_Pack(1, __pyx_kp_u_Non_native_byte_order_not_suppor); if (unlikely(!__pyx_tuple__41)) __PYX_ERR(1, 276, __pyx_L1_error)
  8443. __Pyx_GOTREF(__pyx_tuple__41);
  8444. __Pyx_GIVEREF(__pyx_tuple__41);
  8445. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":823
  8446. *
  8447. * if (end - f) - <int>(new_offset - offset[0]) < 15:
  8448. * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<<
  8449. *
  8450. * if ((child.byteorder == c'>' and little_endian) or
  8451. */
  8452. __pyx_tuple__42 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor); if (unlikely(!__pyx_tuple__42)) __PYX_ERR(1, 823, __pyx_L1_error)
  8453. __Pyx_GOTREF(__pyx_tuple__42);
  8454. __Pyx_GIVEREF(__pyx_tuple__42);
  8455. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":827
  8456. * if ((child.byteorder == c'>' and little_endian) or
  8457. * (child.byteorder == c'<' and not little_endian)):
  8458. * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<<
  8459. * # One could encode it in the format string and have Cython
  8460. * # complain instead, BUT: < and > in format strings also imply
  8461. */
  8462. __pyx_tuple__43 = PyTuple_Pack(1, __pyx_kp_u_Non_native_byte_order_not_suppor); if (unlikely(!__pyx_tuple__43)) __PYX_ERR(1, 827, __pyx_L1_error)
  8463. __Pyx_GOTREF(__pyx_tuple__43);
  8464. __Pyx_GIVEREF(__pyx_tuple__43);
  8465. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":847
  8466. * t = child.type_num
  8467. * if end - f < 5:
  8468. * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<<
  8469. *
  8470. * # Until ticket #99 is fixed, use integers to avoid warnings
  8471. */
  8472. __pyx_tuple__44 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor_2); if (unlikely(!__pyx_tuple__44)) __PYX_ERR(1, 847, __pyx_L1_error)
  8473. __Pyx_GOTREF(__pyx_tuple__44);
  8474. __Pyx_GIVEREF(__pyx_tuple__44);
  8475. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1013
  8476. * _import_array()
  8477. * except Exception:
  8478. * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
  8479. *
  8480. * cdef inline int import_umath() except -1:
  8481. */
  8482. __pyx_tuple__45 = PyTuple_Pack(1, __pyx_kp_s_numpy_core_multiarray_failed_to); if (unlikely(!__pyx_tuple__45)) __PYX_ERR(1, 1013, __pyx_L1_error)
  8483. __Pyx_GOTREF(__pyx_tuple__45);
  8484. __Pyx_GIVEREF(__pyx_tuple__45);
  8485. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1019
  8486. * _import_umath()
  8487. * except Exception:
  8488. * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
  8489. *
  8490. * cdef inline int import_ufunc() except -1:
  8491. */
  8492. __pyx_tuple__46 = PyTuple_Pack(1, __pyx_kp_s_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__46)) __PYX_ERR(1, 1019, __pyx_L1_error)
  8493. __Pyx_GOTREF(__pyx_tuple__46);
  8494. __Pyx_GIVEREF(__pyx_tuple__46);
  8495. /* "../../../../../../../../usr/local/lib/python3.6/dist-packages/Cython/Includes/numpy/__init__.pxd":1025
  8496. * _import_umath()
  8497. * except Exception:
  8498. * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
  8499. */
  8500. __pyx_tuple__47 = PyTuple_Pack(1, __pyx_kp_s_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__47)) __PYX_ERR(1, 1025, __pyx_L1_error)
  8501. __Pyx_GOTREF(__pyx_tuple__47);
  8502. __Pyx_GIVEREF(__pyx_tuple__47);
  8503. /* "scattnlay.pyx":49
  8504. * cdef int nField(int L, int pl, vector[double] x, vector[complex] m, int nmax, int mode_n, int mode_type, int nCoords, vector[double] Xp, vector[double] Yp, vector[double] Zp, double Erx[], double Ery[], double Erz[], double Eix[], double Eiy[], double Eiz[], double Hrx[], double Hry[], double Hrz[], double Hix[], double Hiy[], double Hiz[])
  8505. *
  8506. * def scattcoeffs(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.int_t nmax, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8507. * cdef Py_ssize_t i
  8508. *
  8509. */
  8510. __pyx_tuple__48 = PyTuple_Pack(12, __pyx_n_s_x, __pyx_n_s_m, __pyx_n_s_nmax, __pyx_n_s_pl, __pyx_n_s_i, __pyx_n_s_terms, __pyx_n_s_an, __pyx_n_s_bn, __pyx_n_s_anr, __pyx_n_s_ani, __pyx_n_s_bnr, __pyx_n_s_bni); if (unlikely(!__pyx_tuple__48)) __PYX_ERR(0, 49, __pyx_L1_error)
  8511. __Pyx_GOTREF(__pyx_tuple__48);
  8512. __Pyx_GIVEREF(__pyx_tuple__48);
  8513. __pyx_codeobj__49 = (PyObject*)__Pyx_PyCode_New(4, 0, 12, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__48, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_scattnlay_pyx, __pyx_n_s_scattcoeffs, 49, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__49)) __PYX_ERR(0, 49, __pyx_L1_error)
  8514. /* "scattnlay.pyx":75
  8515. * return terms, an, bn
  8516. *
  8517. * def scattnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 1] theta = np.zeros(0, dtype = np.float64), np.int_t nmax = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8518. * cdef Py_ssize_t i
  8519. *
  8520. */
  8521. __pyx_tuple__50 = PyTuple_Pack(1, __pyx_int_0); if (unlikely(!__pyx_tuple__50)) __PYX_ERR(0, 75, __pyx_L1_error)
  8522. __Pyx_GOTREF(__pyx_tuple__50);
  8523. __Pyx_GIVEREF(__pyx_tuple__50);
  8524. __pyx_tuple__51 = PyTuple_Pack(20, __pyx_n_s_x, __pyx_n_s_m, __pyx_n_s_theta, __pyx_n_s_nmax, __pyx_n_s_pl, __pyx_n_s_i, __pyx_n_s_terms, __pyx_n_s_Qext, __pyx_n_s_Qabs, __pyx_n_s_Qsca, __pyx_n_s_Qbk, __pyx_n_s_Qpr, __pyx_n_s_g, __pyx_n_s_Albedo, __pyx_n_s_S1, __pyx_n_s_S2, __pyx_n_s_S1r, __pyx_n_s_S1i, __pyx_n_s_S2r, __pyx_n_s_S2i); if (unlikely(!__pyx_tuple__51)) __PYX_ERR(0, 75, __pyx_L1_error)
  8525. __Pyx_GOTREF(__pyx_tuple__51);
  8526. __Pyx_GIVEREF(__pyx_tuple__51);
  8527. __pyx_codeobj__52 = (PyObject*)__Pyx_PyCode_New(5, 0, 20, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__51, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_scattnlay_pyx, __pyx_n_s_scattnlay, 75, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__52)) __PYX_ERR(0, 75, __pyx_L1_error)
  8528. /* "scattnlay.pyx":109
  8529. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  8530. *
  8531. * def fieldnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 2] coords, np.int_t nmax = -1, np.int_t mode_n = -1, np.int_t mode_type = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8532. * cdef Py_ssize_t i
  8533. *
  8534. */
  8535. __pyx_tuple__53 = PyTuple_Pack(23, __pyx_n_s_x, __pyx_n_s_m, __pyx_n_s_coords, __pyx_n_s_nmax, __pyx_n_s_mode_n, __pyx_n_s_mode_type, __pyx_n_s_pl, __pyx_n_s_i, __pyx_n_s_terms, __pyx_n_s_E, __pyx_n_s_H, __pyx_n_s_Erx, __pyx_n_s_Ery, __pyx_n_s_Erz, __pyx_n_s_Eix, __pyx_n_s_Eiy, __pyx_n_s_Eiz, __pyx_n_s_Hrx, __pyx_n_s_Hry, __pyx_n_s_Hrz, __pyx_n_s_Hix, __pyx_n_s_Hiy, __pyx_n_s_Hiz); if (unlikely(!__pyx_tuple__53)) __PYX_ERR(0, 109, __pyx_L1_error)
  8536. __Pyx_GOTREF(__pyx_tuple__53);
  8537. __Pyx_GIVEREF(__pyx_tuple__53);
  8538. __pyx_codeobj__54 = (PyObject*)__Pyx_PyCode_New(7, 0, 23, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__53, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_scattnlay_pyx, __pyx_n_s_fieldnlay, 109, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__54)) __PYX_ERR(0, 109, __pyx_L1_error)
  8539. __Pyx_RefNannyFinishContext();
  8540. return 0;
  8541. __pyx_L1_error:;
  8542. __Pyx_RefNannyFinishContext();
  8543. return -1;
  8544. }
  8545. static int __Pyx_InitGlobals(void) {
  8546. if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error);
  8547. __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) __PYX_ERR(0, 1, __pyx_L1_error)
  8548. __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) __PYX_ERR(0, 1, __pyx_L1_error)
  8549. __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) __PYX_ERR(0, 1, __pyx_L1_error)
  8550. __pyx_int_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) __PYX_ERR(0, 1, __pyx_L1_error)
  8551. return 0;
  8552. __pyx_L1_error:;
  8553. return -1;
  8554. }
  8555. #if PY_MAJOR_VERSION < 3
  8556. PyMODINIT_FUNC initscattnlay(void); /*proto*/
  8557. PyMODINIT_FUNC initscattnlay(void)
  8558. #else
  8559. PyMODINIT_FUNC PyInit_scattnlay(void); /*proto*/
  8560. PyMODINIT_FUNC PyInit_scattnlay(void)
  8561. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8562. {
  8563. return PyModuleDef_Init(&__pyx_moduledef);
  8564. }
  8565. static int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name) {
  8566. PyObject *value = PyObject_GetAttrString(spec, from_name);
  8567. int result = 0;
  8568. if (likely(value)) {
  8569. result = PyDict_SetItemString(moddict, to_name, value);
  8570. Py_DECREF(value);
  8571. } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
  8572. PyErr_Clear();
  8573. } else {
  8574. result = -1;
  8575. }
  8576. return result;
  8577. }
  8578. static PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) {
  8579. PyObject *module = NULL, *moddict, *modname;
  8580. if (__pyx_m)
  8581. return __Pyx_NewRef(__pyx_m);
  8582. modname = PyObject_GetAttrString(spec, "name");
  8583. if (unlikely(!modname)) goto bad;
  8584. module = PyModule_NewObject(modname);
  8585. Py_DECREF(modname);
  8586. if (unlikely(!module)) goto bad;
  8587. moddict = PyModule_GetDict(module);
  8588. if (unlikely(!moddict)) goto bad;
  8589. if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__") < 0)) goto bad;
  8590. if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__") < 0)) goto bad;
  8591. if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__") < 0)) goto bad;
  8592. if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__") < 0)) goto bad;
  8593. return module;
  8594. bad:
  8595. Py_XDECREF(module);
  8596. return NULL;
  8597. }
  8598. static int __pyx_pymod_exec_scattnlay(PyObject *__pyx_pyinit_module)
  8599. #endif
  8600. #endif
  8601. {
  8602. PyObject *__pyx_t_1 = NULL;
  8603. PyObject *__pyx_t_2 = NULL;
  8604. PyObject *__pyx_t_3 = NULL;
  8605. PyObject *__pyx_t_4 = NULL;
  8606. __Pyx_RefNannyDeclarations
  8607. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8608. if (__pyx_m && __pyx_m == __pyx_pyinit_module) return 0;
  8609. #endif
  8610. #if CYTHON_REFNANNY
  8611. __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny");
  8612. if (!__Pyx_RefNanny) {
  8613. PyErr_Clear();
  8614. __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny");
  8615. if (!__Pyx_RefNanny)
  8616. Py_FatalError("failed to import 'refnanny' module");
  8617. }
  8618. #endif
  8619. __Pyx_RefNannySetupContext("PyMODINIT_FUNC PyInit_scattnlay(void)", 0);
  8620. if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8621. __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error)
  8622. __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error)
  8623. __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error)
  8624. #ifdef __Pyx_CyFunction_USED
  8625. if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8626. #endif
  8627. #ifdef __Pyx_FusedFunction_USED
  8628. if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8629. #endif
  8630. #ifdef __Pyx_Coroutine_USED
  8631. if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8632. #endif
  8633. #ifdef __Pyx_Generator_USED
  8634. if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8635. #endif
  8636. #ifdef __Pyx_AsyncGen_USED
  8637. if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8638. #endif
  8639. #ifdef __Pyx_StopAsyncIteration_USED
  8640. if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8641. #endif
  8642. /*--- Library function declarations ---*/
  8643. /*--- Threads initialization code ---*/
  8644. #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS
  8645. #ifdef WITH_THREAD /* Python build with threading support? */
  8646. PyEval_InitThreads();
  8647. #endif
  8648. #endif
  8649. /*--- Module creation code ---*/
  8650. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8651. __pyx_m = __pyx_pyinit_module;
  8652. Py_INCREF(__pyx_m);
  8653. #else
  8654. #if PY_MAJOR_VERSION < 3
  8655. __pyx_m = Py_InitModule4("scattnlay", __pyx_methods, 0, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m);
  8656. #else
  8657. __pyx_m = PyModule_Create(&__pyx_moduledef);
  8658. #endif
  8659. if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error)
  8660. #endif
  8661. __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error)
  8662. Py_INCREF(__pyx_d);
  8663. __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error)
  8664. __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error)
  8665. #if CYTHON_COMPILING_IN_PYPY
  8666. Py_INCREF(__pyx_b);
  8667. #endif
  8668. if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error);
  8669. /*--- Initialize various global constants etc. ---*/
  8670. if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8671. #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT)
  8672. if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8673. #endif
  8674. if (__pyx_module_is_main_scattnlay) {
  8675. if (PyObject_SetAttrString(__pyx_m, "__name__", __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8676. }
  8677. #if PY_MAJOR_VERSION >= 3
  8678. {
  8679. PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error)
  8680. if (!PyDict_GetItemString(modules, "scattnlay")) {
  8681. if (unlikely(PyDict_SetItemString(modules, "scattnlay", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error)
  8682. }
  8683. }
  8684. #endif
  8685. /*--- Builtin init code ---*/
  8686. if (__Pyx_InitCachedBuiltins() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8687. /*--- Constants init code ---*/
  8688. if (__Pyx_InitCachedConstants() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8689. /*--- Global init code ---*/
  8690. /*--- Variable export code ---*/
  8691. /*--- Function export code ---*/
  8692. /*--- Type init code ---*/
  8693. /*--- Type import code ---*/
  8694. __pyx_ptype_7cpython_4type_type = __Pyx_ImportType(__Pyx_BUILTIN_MODULE_NAME, "type",
  8695. #if CYTHON_COMPILING_IN_PYPY
  8696. sizeof(PyTypeObject),
  8697. #else
  8698. sizeof(PyHeapTypeObject),
  8699. #endif
  8700. 0); if (unlikely(!__pyx_ptype_7cpython_4type_type)) __PYX_ERR(3, 9, __pyx_L1_error)
  8701. __pyx_ptype_5numpy_dtype = __Pyx_ImportType("numpy", "dtype", sizeof(PyArray_Descr), 0); if (unlikely(!__pyx_ptype_5numpy_dtype)) __PYX_ERR(1, 163, __pyx_L1_error)
  8702. __pyx_ptype_5numpy_flatiter = __Pyx_ImportType("numpy", "flatiter", sizeof(PyArrayIterObject), 0); if (unlikely(!__pyx_ptype_5numpy_flatiter)) __PYX_ERR(1, 185, __pyx_L1_error)
  8703. __pyx_ptype_5numpy_broadcast = __Pyx_ImportType("numpy", "broadcast", sizeof(PyArrayMultiIterObject), 0); if (unlikely(!__pyx_ptype_5numpy_broadcast)) __PYX_ERR(1, 189, __pyx_L1_error)
  8704. __pyx_ptype_5numpy_ndarray = __Pyx_ImportType("numpy", "ndarray", sizeof(PyArrayObject), 0); if (unlikely(!__pyx_ptype_5numpy_ndarray)) __PYX_ERR(1, 198, __pyx_L1_error)
  8705. __pyx_ptype_5numpy_ufunc = __Pyx_ImportType("numpy", "ufunc", sizeof(PyUFuncObject), 0); if (unlikely(!__pyx_ptype_5numpy_ufunc)) __PYX_ERR(1, 885, __pyx_L1_error)
  8706. /*--- Variable import code ---*/
  8707. /*--- Function import code ---*/
  8708. /*--- Execution code ---*/
  8709. #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED)
  8710. if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8711. #endif
  8712. /* "scattnlay.pyx":30
  8713. *
  8714. * from __future__ import division
  8715. * import numpy as np # <<<<<<<<<<<<<<
  8716. * cimport numpy as np
  8717. * from libcpp.vector cimport vector
  8718. */
  8719. __pyx_t_1 = __Pyx_Import(__pyx_n_s_numpy, 0, -1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 30, __pyx_L1_error)
  8720. __Pyx_GOTREF(__pyx_t_1);
  8721. if (PyDict_SetItem(__pyx_d, __pyx_n_s_np, __pyx_t_1) < 0) __PYX_ERR(0, 30, __pyx_L1_error)
  8722. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  8723. /* "scattnlay.pyx":49
  8724. * cdef int nField(int L, int pl, vector[double] x, vector[complex] m, int nmax, int mode_n, int mode_type, int nCoords, vector[double] Xp, vector[double] Yp, vector[double] Zp, double Erx[], double Ery[], double Erz[], double Eix[], double Eiy[], double Eiz[], double Hrx[], double Hry[], double Hrz[], double Hix[], double Hiy[], double Hiz[])
  8725. *
  8726. * def scattcoeffs(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.int_t nmax, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8727. * cdef Py_ssize_t i
  8728. *
  8729. */
  8730. __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_9scattnlay_1scattcoeffs, NULL, __pyx_n_s_scattnlay); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 49, __pyx_L1_error)
  8731. __Pyx_GOTREF(__pyx_t_1);
  8732. if (PyDict_SetItem(__pyx_d, __pyx_n_s_scattcoeffs, __pyx_t_1) < 0) __PYX_ERR(0, 49, __pyx_L1_error)
  8733. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  8734. /* "scattnlay.pyx":75
  8735. * return terms, an, bn
  8736. *
  8737. * def scattnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 1] theta = np.zeros(0, dtype = np.float64), np.int_t nmax = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8738. * cdef Py_ssize_t i
  8739. *
  8740. */
  8741. __pyx_t_1 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error)
  8742. __Pyx_GOTREF(__pyx_t_1);
  8743. __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 75, __pyx_L1_error)
  8744. __Pyx_GOTREF(__pyx_t_2);
  8745. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  8746. __pyx_t_1 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error)
  8747. __Pyx_GOTREF(__pyx_t_1);
  8748. __pyx_t_3 = __Pyx_GetModuleGlobalName(__pyx_n_s_np); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 75, __pyx_L1_error)
  8749. __Pyx_GOTREF(__pyx_t_3);
  8750. __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error)
  8751. __Pyx_GOTREF(__pyx_t_4);
  8752. __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
  8753. if (PyDict_SetItem(__pyx_t_1, __pyx_n_s_dtype, __pyx_t_4) < 0) __PYX_ERR(0, 75, __pyx_L1_error)
  8754. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  8755. __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_tuple__50, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error)
  8756. __Pyx_GOTREF(__pyx_t_4);
  8757. __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
  8758. __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  8759. if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 75, __pyx_L1_error)
  8760. __pyx_k__8 = ((PyArrayObject *)__pyx_t_4);
  8761. __Pyx_GIVEREF(__pyx_t_4);
  8762. __pyx_t_4 = 0;
  8763. __pyx_t_4 = PyCFunction_NewEx(&__pyx_mdef_9scattnlay_3scattnlay, NULL, __pyx_n_s_scattnlay); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 75, __pyx_L1_error)
  8764. __Pyx_GOTREF(__pyx_t_4);
  8765. if (PyDict_SetItem(__pyx_d, __pyx_n_s_scattnlay, __pyx_t_4) < 0) __PYX_ERR(0, 75, __pyx_L1_error)
  8766. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  8767. /* "scattnlay.pyx":109
  8768. * return terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2
  8769. *
  8770. * def fieldnlay(np.ndarray[np.float64_t, ndim = 2] x, np.ndarray[np.complex128_t, ndim = 2] m, np.ndarray[np.float64_t, ndim = 2] coords, np.int_t nmax = -1, np.int_t mode_n = -1, np.int_t mode_type = -1, np.int_t pl = -1): # <<<<<<<<<<<<<<
  8771. * cdef Py_ssize_t i
  8772. *
  8773. */
  8774. __pyx_t_4 = PyCFunction_NewEx(&__pyx_mdef_9scattnlay_5fieldnlay, NULL, __pyx_n_s_scattnlay); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 109, __pyx_L1_error)
  8775. __Pyx_GOTREF(__pyx_t_4);
  8776. if (PyDict_SetItem(__pyx_d, __pyx_n_s_fieldnlay, __pyx_t_4) < 0) __PYX_ERR(0, 109, __pyx_L1_error)
  8777. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  8778. /* "scattnlay.pyx":1
  8779. * # Copyright (C) 2009-2017 Ovidio Pena <ovidio@bytesfall.com> # <<<<<<<<<<<<<<
  8780. * # Copyright (C) 2013-2017 Konstantin Ladutenko <kostyfisik@gmail.com>
  8781. * #
  8782. */
  8783. __pyx_t_4 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 1, __pyx_L1_error)
  8784. __Pyx_GOTREF(__pyx_t_4);
  8785. if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_4) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
  8786. __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
  8787. /* "vector.from_py":45
  8788. *
  8789. * @cname("__pyx_convert_vector_from_py___pyx_t_double_complex")
  8790. * cdef vector[X] __pyx_convert_vector_from_py___pyx_t_double_complex(object o) except *: # <<<<<<<<<<<<<<
  8791. * cdef vector[X] v
  8792. * for item in o:
  8793. */
  8794. /*--- Wrapped vars code ---*/
  8795. goto __pyx_L0;
  8796. __pyx_L1_error:;
  8797. __Pyx_XDECREF(__pyx_t_1);
  8798. __Pyx_XDECREF(__pyx_t_2);
  8799. __Pyx_XDECREF(__pyx_t_3);
  8800. __Pyx_XDECREF(__pyx_t_4);
  8801. if (__pyx_m) {
  8802. if (__pyx_d) {
  8803. __Pyx_AddTraceback("init scattnlay", 0, __pyx_lineno, __pyx_filename);
  8804. }
  8805. Py_DECREF(__pyx_m); __pyx_m = 0;
  8806. } else if (!PyErr_Occurred()) {
  8807. PyErr_SetString(PyExc_ImportError, "init scattnlay");
  8808. }
  8809. __pyx_L0:;
  8810. __Pyx_RefNannyFinishContext();
  8811. #if CYTHON_PEP489_MULTI_PHASE_INIT
  8812. return (__pyx_m != NULL) ? 0 : -1;
  8813. #elif PY_MAJOR_VERSION >= 3
  8814. return __pyx_m;
  8815. #else
  8816. return;
  8817. #endif
  8818. }
  8819. /* --- Runtime support code --- */
  8820. /* Refnanny */
  8821. #if CYTHON_REFNANNY
  8822. static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) {
  8823. PyObject *m = NULL, *p = NULL;
  8824. void *r = NULL;
  8825. m = PyImport_ImportModule((char *)modname);
  8826. if (!m) goto end;
  8827. p = PyObject_GetAttrString(m, (char *)"RefNannyAPI");
  8828. if (!p) goto end;
  8829. r = PyLong_AsVoidPtr(p);
  8830. end:
  8831. Py_XDECREF(p);
  8832. Py_XDECREF(m);
  8833. return (__Pyx_RefNannyAPIStruct *)r;
  8834. }
  8835. #endif
  8836. /* GetBuiltinName */
  8837. static PyObject *__Pyx_GetBuiltinName(PyObject *name) {
  8838. PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name);
  8839. if (unlikely(!result)) {
  8840. PyErr_Format(PyExc_NameError,
  8841. #if PY_MAJOR_VERSION >= 3
  8842. "name '%U' is not defined", name);
  8843. #else
  8844. "name '%.200s' is not defined", PyString_AS_STRING(name));
  8845. #endif
  8846. }
  8847. return result;
  8848. }
  8849. /* GetModuleGlobalName */
  8850. static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name) {
  8851. PyObject *result;
  8852. #if !CYTHON_AVOID_BORROWED_REFS
  8853. result = PyDict_GetItem(__pyx_d, name);
  8854. if (likely(result)) {
  8855. Py_INCREF(result);
  8856. } else {
  8857. #else
  8858. result = PyObject_GetItem(__pyx_d, name);
  8859. if (!result) {
  8860. PyErr_Clear();
  8861. #endif
  8862. result = __Pyx_GetBuiltinName(name);
  8863. }
  8864. return result;
  8865. }
  8866. /* PyObjectCall */
  8867. #if CYTHON_COMPILING_IN_CPYTHON
  8868. static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) {
  8869. PyObject *result;
  8870. ternaryfunc call = func->ob_type->tp_call;
  8871. if (unlikely(!call))
  8872. return PyObject_Call(func, arg, kw);
  8873. if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
  8874. return NULL;
  8875. result = (*call)(func, arg, kw);
  8876. Py_LeaveRecursiveCall();
  8877. if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
  8878. PyErr_SetString(
  8879. PyExc_SystemError,
  8880. "NULL result without error in PyObject_Call");
  8881. }
  8882. return result;
  8883. }
  8884. #endif
  8885. /* ExtTypeTest */
  8886. static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) {
  8887. if (unlikely(!type)) {
  8888. PyErr_SetString(PyExc_SystemError, "Missing type object");
  8889. return 0;
  8890. }
  8891. if (likely(__Pyx_TypeCheck(obj, type)))
  8892. return 1;
  8893. PyErr_Format(PyExc_TypeError, "Cannot convert %.200s to %.200s",
  8894. Py_TYPE(obj)->tp_name, type->tp_name);
  8895. return 0;
  8896. }
  8897. /* PyErrFetchRestore */
  8898. #if CYTHON_FAST_THREAD_STATE
  8899. static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) {
  8900. PyObject *tmp_type, *tmp_value, *tmp_tb;
  8901. tmp_type = tstate->curexc_type;
  8902. tmp_value = tstate->curexc_value;
  8903. tmp_tb = tstate->curexc_traceback;
  8904. tstate->curexc_type = type;
  8905. tstate->curexc_value = value;
  8906. tstate->curexc_traceback = tb;
  8907. Py_XDECREF(tmp_type);
  8908. Py_XDECREF(tmp_value);
  8909. Py_XDECREF(tmp_tb);
  8910. }
  8911. static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {
  8912. *type = tstate->curexc_type;
  8913. *value = tstate->curexc_value;
  8914. *tb = tstate->curexc_traceback;
  8915. tstate->curexc_type = 0;
  8916. tstate->curexc_value = 0;
  8917. tstate->curexc_traceback = 0;
  8918. }
  8919. #endif
  8920. /* WriteUnraisableException */
  8921. static void __Pyx_WriteUnraisable(const char *name, CYTHON_UNUSED int clineno,
  8922. CYTHON_UNUSED int lineno, CYTHON_UNUSED const char *filename,
  8923. int full_traceback, CYTHON_UNUSED int nogil) {
  8924. PyObject *old_exc, *old_val, *old_tb;
  8925. PyObject *ctx;
  8926. __Pyx_PyThreadState_declare
  8927. #ifdef WITH_THREAD
  8928. PyGILState_STATE state;
  8929. if (nogil)
  8930. state = PyGILState_Ensure();
  8931. #ifdef _MSC_VER
  8932. else state = (PyGILState_STATE)-1;
  8933. #endif
  8934. #endif
  8935. __Pyx_PyThreadState_assign
  8936. __Pyx_ErrFetch(&old_exc, &old_val, &old_tb);
  8937. if (full_traceback) {
  8938. Py_XINCREF(old_exc);
  8939. Py_XINCREF(old_val);
  8940. Py_XINCREF(old_tb);
  8941. __Pyx_ErrRestore(old_exc, old_val, old_tb);
  8942. PyErr_PrintEx(1);
  8943. }
  8944. #if PY_MAJOR_VERSION < 3
  8945. ctx = PyString_FromString(name);
  8946. #else
  8947. ctx = PyUnicode_FromString(name);
  8948. #endif
  8949. __Pyx_ErrRestore(old_exc, old_val, old_tb);
  8950. if (!ctx) {
  8951. PyErr_WriteUnraisable(Py_None);
  8952. } else {
  8953. PyErr_WriteUnraisable(ctx);
  8954. Py_DECREF(ctx);
  8955. }
  8956. #ifdef WITH_THREAD
  8957. if (nogil)
  8958. PyGILState_Release(state);
  8959. #endif
  8960. }
  8961. /* RaiseArgTupleInvalid */
  8962. static void __Pyx_RaiseArgtupleInvalid(
  8963. const char* func_name,
  8964. int exact,
  8965. Py_ssize_t num_min,
  8966. Py_ssize_t num_max,
  8967. Py_ssize_t num_found)
  8968. {
  8969. Py_ssize_t num_expected;
  8970. const char *more_or_less;
  8971. if (num_found < num_min) {
  8972. num_expected = num_min;
  8973. more_or_less = "at least";
  8974. } else {
  8975. num_expected = num_max;
  8976. more_or_less = "at most";
  8977. }
  8978. if (exact) {
  8979. more_or_less = "exactly";
  8980. }
  8981. PyErr_Format(PyExc_TypeError,
  8982. "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)",
  8983. func_name, more_or_less, num_expected,
  8984. (num_expected == 1) ? "" : "s", num_found);
  8985. }
  8986. /* RaiseDoubleKeywords */
  8987. static void __Pyx_RaiseDoubleKeywordsError(
  8988. const char* func_name,
  8989. PyObject* kw_name)
  8990. {
  8991. PyErr_Format(PyExc_TypeError,
  8992. #if PY_MAJOR_VERSION >= 3
  8993. "%s() got multiple values for keyword argument '%U'", func_name, kw_name);
  8994. #else
  8995. "%s() got multiple values for keyword argument '%s'", func_name,
  8996. PyString_AsString(kw_name));
  8997. #endif
  8998. }
  8999. /* ParseKeywords */
  9000. static int __Pyx_ParseOptionalKeywords(
  9001. PyObject *kwds,
  9002. PyObject **argnames[],
  9003. PyObject *kwds2,
  9004. PyObject *values[],
  9005. Py_ssize_t num_pos_args,
  9006. const char* function_name)
  9007. {
  9008. PyObject *key = 0, *value = 0;
  9009. Py_ssize_t pos = 0;
  9010. PyObject*** name;
  9011. PyObject*** first_kw_arg = argnames + num_pos_args;
  9012. while (PyDict_Next(kwds, &pos, &key, &value)) {
  9013. name = first_kw_arg;
  9014. while (*name && (**name != key)) name++;
  9015. if (*name) {
  9016. values[name-argnames] = value;
  9017. continue;
  9018. }
  9019. name = first_kw_arg;
  9020. #if PY_MAJOR_VERSION < 3
  9021. if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) {
  9022. while (*name) {
  9023. if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key))
  9024. && _PyString_Eq(**name, key)) {
  9025. values[name-argnames] = value;
  9026. break;
  9027. }
  9028. name++;
  9029. }
  9030. if (*name) continue;
  9031. else {
  9032. PyObject*** argname = argnames;
  9033. while (argname != first_kw_arg) {
  9034. if ((**argname == key) || (
  9035. (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key))
  9036. && _PyString_Eq(**argname, key))) {
  9037. goto arg_passed_twice;
  9038. }
  9039. argname++;
  9040. }
  9041. }
  9042. } else
  9043. #endif
  9044. if (likely(PyUnicode_Check(key))) {
  9045. while (*name) {
  9046. int cmp = (**name == key) ? 0 :
  9047. #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3
  9048. (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 :
  9049. #endif
  9050. PyUnicode_Compare(**name, key);
  9051. if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
  9052. if (cmp == 0) {
  9053. values[name-argnames] = value;
  9054. break;
  9055. }
  9056. name++;
  9057. }
  9058. if (*name) continue;
  9059. else {
  9060. PyObject*** argname = argnames;
  9061. while (argname != first_kw_arg) {
  9062. int cmp = (**argname == key) ? 0 :
  9063. #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3
  9064. (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 :
  9065. #endif
  9066. PyUnicode_Compare(**argname, key);
  9067. if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad;
  9068. if (cmp == 0) goto arg_passed_twice;
  9069. argname++;
  9070. }
  9071. }
  9072. } else
  9073. goto invalid_keyword_type;
  9074. if (kwds2) {
  9075. if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad;
  9076. } else {
  9077. goto invalid_keyword;
  9078. }
  9079. }
  9080. return 0;
  9081. arg_passed_twice:
  9082. __Pyx_RaiseDoubleKeywordsError(function_name, key);
  9083. goto bad;
  9084. invalid_keyword_type:
  9085. PyErr_Format(PyExc_TypeError,
  9086. "%.200s() keywords must be strings", function_name);
  9087. goto bad;
  9088. invalid_keyword:
  9089. PyErr_Format(PyExc_TypeError,
  9090. #if PY_MAJOR_VERSION < 3
  9091. "%.200s() got an unexpected keyword argument '%.200s'",
  9092. function_name, PyString_AsString(key));
  9093. #else
  9094. "%s() got an unexpected keyword argument '%U'",
  9095. function_name, key);
  9096. #endif
  9097. bad:
  9098. return -1;
  9099. }
  9100. /* ArgTypeTest */
  9101. static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact)
  9102. {
  9103. if (unlikely(!type)) {
  9104. PyErr_SetString(PyExc_SystemError, "Missing type object");
  9105. return 0;
  9106. }
  9107. else if (exact) {
  9108. #if PY_MAJOR_VERSION == 2
  9109. if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1;
  9110. #endif
  9111. }
  9112. else {
  9113. if (likely(__Pyx_TypeCheck(obj, type))) return 1;
  9114. }
  9115. PyErr_Format(PyExc_TypeError,
  9116. "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)",
  9117. name, type->tp_name, Py_TYPE(obj)->tp_name);
  9118. return 0;
  9119. }
  9120. /* IsLittleEndian */
  9121. static CYTHON_INLINE int __Pyx_Is_Little_Endian(void)
  9122. {
  9123. union {
  9124. uint32_t u32;
  9125. uint8_t u8[4];
  9126. } S;
  9127. S.u32 = 0x01020304;
  9128. return S.u8[0] == 4;
  9129. }
  9130. /* BufferFormatCheck */
  9131. static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx,
  9132. __Pyx_BufFmt_StackElem* stack,
  9133. __Pyx_TypeInfo* type) {
  9134. stack[0].field = &ctx->root;
  9135. stack[0].parent_offset = 0;
  9136. ctx->root.type = type;
  9137. ctx->root.name = "buffer dtype";
  9138. ctx->root.offset = 0;
  9139. ctx->head = stack;
  9140. ctx->head->field = &ctx->root;
  9141. ctx->fmt_offset = 0;
  9142. ctx->head->parent_offset = 0;
  9143. ctx->new_packmode = '@';
  9144. ctx->enc_packmode = '@';
  9145. ctx->new_count = 1;
  9146. ctx->enc_count = 0;
  9147. ctx->enc_type = 0;
  9148. ctx->is_complex = 0;
  9149. ctx->is_valid_array = 0;
  9150. ctx->struct_alignment = 0;
  9151. while (type->typegroup == 'S') {
  9152. ++ctx->head;
  9153. ctx->head->field = type->fields;
  9154. ctx->head->parent_offset = 0;
  9155. type = type->fields->type;
  9156. }
  9157. }
  9158. static int __Pyx_BufFmt_ParseNumber(const char** ts) {
  9159. int count;
  9160. const char* t = *ts;
  9161. if (*t < '0' || *t > '9') {
  9162. return -1;
  9163. } else {
  9164. count = *t++ - '0';
  9165. while (*t >= '0' && *t < '9') {
  9166. count *= 10;
  9167. count += *t++ - '0';
  9168. }
  9169. }
  9170. *ts = t;
  9171. return count;
  9172. }
  9173. static int __Pyx_BufFmt_ExpectNumber(const char **ts) {
  9174. int number = __Pyx_BufFmt_ParseNumber(ts);
  9175. if (number == -1)
  9176. PyErr_Format(PyExc_ValueError,\
  9177. "Does not understand character buffer dtype format string ('%c')", **ts);
  9178. return number;
  9179. }
  9180. static void __Pyx_BufFmt_RaiseUnexpectedChar(char ch) {
  9181. PyErr_Format(PyExc_ValueError,
  9182. "Unexpected format string character: '%c'", ch);
  9183. }
  9184. static const char* __Pyx_BufFmt_DescribeTypeChar(char ch, int is_complex) {
  9185. switch (ch) {
  9186. case 'c': return "'char'";
  9187. case 'b': return "'signed char'";
  9188. case 'B': return "'unsigned char'";
  9189. case 'h': return "'short'";
  9190. case 'H': return "'unsigned short'";
  9191. case 'i': return "'int'";
  9192. case 'I': return "'unsigned int'";
  9193. case 'l': return "'long'";
  9194. case 'L': return "'unsigned long'";
  9195. case 'q': return "'long long'";
  9196. case 'Q': return "'unsigned long long'";
  9197. case 'f': return (is_complex ? "'complex float'" : "'float'");
  9198. case 'd': return (is_complex ? "'complex double'" : "'double'");
  9199. case 'g': return (is_complex ? "'complex long double'" : "'long double'");
  9200. case 'T': return "a struct";
  9201. case 'O': return "Python object";
  9202. case 'P': return "a pointer";
  9203. case 's': case 'p': return "a string";
  9204. case 0: return "end";
  9205. default: return "unparseable format string";
  9206. }
  9207. }
  9208. static size_t __Pyx_BufFmt_TypeCharToStandardSize(char ch, int is_complex) {
  9209. switch (ch) {
  9210. case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1;
  9211. case 'h': case 'H': return 2;
  9212. case 'i': case 'I': case 'l': case 'L': return 4;
  9213. case 'q': case 'Q': return 8;
  9214. case 'f': return (is_complex ? 8 : 4);
  9215. case 'd': return (is_complex ? 16 : 8);
  9216. case 'g': {
  9217. PyErr_SetString(PyExc_ValueError, "Python does not define a standard format string size for long double ('g')..");
  9218. return 0;
  9219. }
  9220. case 'O': case 'P': return sizeof(void*);
  9221. default:
  9222. __Pyx_BufFmt_RaiseUnexpectedChar(ch);
  9223. return 0;
  9224. }
  9225. }
  9226. static size_t __Pyx_BufFmt_TypeCharToNativeSize(char ch, int is_complex) {
  9227. switch (ch) {
  9228. case 'c': case 'b': case 'B': case 's': case 'p': return 1;
  9229. case 'h': case 'H': return sizeof(short);
  9230. case 'i': case 'I': return sizeof(int);
  9231. case 'l': case 'L': return sizeof(long);
  9232. #ifdef HAVE_LONG_LONG
  9233. case 'q': case 'Q': return sizeof(PY_LONG_LONG);
  9234. #endif
  9235. case 'f': return sizeof(float) * (is_complex ? 2 : 1);
  9236. case 'd': return sizeof(double) * (is_complex ? 2 : 1);
  9237. case 'g': return sizeof(long double) * (is_complex ? 2 : 1);
  9238. case 'O': case 'P': return sizeof(void*);
  9239. default: {
  9240. __Pyx_BufFmt_RaiseUnexpectedChar(ch);
  9241. return 0;
  9242. }
  9243. }
  9244. }
  9245. typedef struct { char c; short x; } __Pyx_st_short;
  9246. typedef struct { char c; int x; } __Pyx_st_int;
  9247. typedef struct { char c; long x; } __Pyx_st_long;
  9248. typedef struct { char c; float x; } __Pyx_st_float;
  9249. typedef struct { char c; double x; } __Pyx_st_double;
  9250. typedef struct { char c; long double x; } __Pyx_st_longdouble;
  9251. typedef struct { char c; void *x; } __Pyx_st_void_p;
  9252. #ifdef HAVE_LONG_LONG
  9253. typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong;
  9254. #endif
  9255. static size_t __Pyx_BufFmt_TypeCharToAlignment(char ch, CYTHON_UNUSED int is_complex) {
  9256. switch (ch) {
  9257. case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1;
  9258. case 'h': case 'H': return sizeof(__Pyx_st_short) - sizeof(short);
  9259. case 'i': case 'I': return sizeof(__Pyx_st_int) - sizeof(int);
  9260. case 'l': case 'L': return sizeof(__Pyx_st_long) - sizeof(long);
  9261. #ifdef HAVE_LONG_LONG
  9262. case 'q': case 'Q': return sizeof(__Pyx_st_longlong) - sizeof(PY_LONG_LONG);
  9263. #endif
  9264. case 'f': return sizeof(__Pyx_st_float) - sizeof(float);
  9265. case 'd': return sizeof(__Pyx_st_double) - sizeof(double);
  9266. case 'g': return sizeof(__Pyx_st_longdouble) - sizeof(long double);
  9267. case 'P': case 'O': return sizeof(__Pyx_st_void_p) - sizeof(void*);
  9268. default:
  9269. __Pyx_BufFmt_RaiseUnexpectedChar(ch);
  9270. return 0;
  9271. }
  9272. }
  9273. /* These are for computing the padding at the end of the struct to align
  9274. on the first member of the struct. This will probably the same as above,
  9275. but we don't have any guarantees.
  9276. */
  9277. typedef struct { short x; char c; } __Pyx_pad_short;
  9278. typedef struct { int x; char c; } __Pyx_pad_int;
  9279. typedef struct { long x; char c; } __Pyx_pad_long;
  9280. typedef struct { float x; char c; } __Pyx_pad_float;
  9281. typedef struct { double x; char c; } __Pyx_pad_double;
  9282. typedef struct { long double x; char c; } __Pyx_pad_longdouble;
  9283. typedef struct { void *x; char c; } __Pyx_pad_void_p;
  9284. #ifdef HAVE_LONG_LONG
  9285. typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong;
  9286. #endif
  9287. static size_t __Pyx_BufFmt_TypeCharToPadding(char ch, CYTHON_UNUSED int is_complex) {
  9288. switch (ch) {
  9289. case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1;
  9290. case 'h': case 'H': return sizeof(__Pyx_pad_short) - sizeof(short);
  9291. case 'i': case 'I': return sizeof(__Pyx_pad_int) - sizeof(int);
  9292. case 'l': case 'L': return sizeof(__Pyx_pad_long) - sizeof(long);
  9293. #ifdef HAVE_LONG_LONG
  9294. case 'q': case 'Q': return sizeof(__Pyx_pad_longlong) - sizeof(PY_LONG_LONG);
  9295. #endif
  9296. case 'f': return sizeof(__Pyx_pad_float) - sizeof(float);
  9297. case 'd': return sizeof(__Pyx_pad_double) - sizeof(double);
  9298. case 'g': return sizeof(__Pyx_pad_longdouble) - sizeof(long double);
  9299. case 'P': case 'O': return sizeof(__Pyx_pad_void_p) - sizeof(void*);
  9300. default:
  9301. __Pyx_BufFmt_RaiseUnexpectedChar(ch);
  9302. return 0;
  9303. }
  9304. }
  9305. static char __Pyx_BufFmt_TypeCharToGroup(char ch, int is_complex) {
  9306. switch (ch) {
  9307. case 'c':
  9308. return 'H';
  9309. case 'b': case 'h': case 'i':
  9310. case 'l': case 'q': case 's': case 'p':
  9311. return 'I';
  9312. case 'B': case 'H': case 'I': case 'L': case 'Q':
  9313. return 'U';
  9314. case 'f': case 'd': case 'g':
  9315. return (is_complex ? 'C' : 'R');
  9316. case 'O':
  9317. return 'O';
  9318. case 'P':
  9319. return 'P';
  9320. default: {
  9321. __Pyx_BufFmt_RaiseUnexpectedChar(ch);
  9322. return 0;
  9323. }
  9324. }
  9325. }
  9326. static void __Pyx_BufFmt_RaiseExpected(__Pyx_BufFmt_Context* ctx) {
  9327. if (ctx->head == NULL || ctx->head->field == &ctx->root) {
  9328. const char* expected;
  9329. const char* quote;
  9330. if (ctx->head == NULL) {
  9331. expected = "end";
  9332. quote = "";
  9333. } else {
  9334. expected = ctx->head->field->type->name;
  9335. quote = "'";
  9336. }
  9337. PyErr_Format(PyExc_ValueError,
  9338. "Buffer dtype mismatch, expected %s%s%s but got %s",
  9339. quote, expected, quote,
  9340. __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex));
  9341. } else {
  9342. __Pyx_StructField* field = ctx->head->field;
  9343. __Pyx_StructField* parent = (ctx->head - 1)->field;
  9344. PyErr_Format(PyExc_ValueError,
  9345. "Buffer dtype mismatch, expected '%s' but got %s in '%s.%s'",
  9346. field->type->name, __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex),
  9347. parent->type->name, field->name);
  9348. }
  9349. }
  9350. static int __Pyx_BufFmt_ProcessTypeChunk(__Pyx_BufFmt_Context* ctx) {
  9351. char group;
  9352. size_t size, offset, arraysize = 1;
  9353. if (ctx->enc_type == 0) return 0;
  9354. if (ctx->head->field->type->arraysize[0]) {
  9355. int i, ndim = 0;
  9356. if (ctx->enc_type == 's' || ctx->enc_type == 'p') {
  9357. ctx->is_valid_array = ctx->head->field->type->ndim == 1;
  9358. ndim = 1;
  9359. if (ctx->enc_count != ctx->head->field->type->arraysize[0]) {
  9360. PyErr_Format(PyExc_ValueError,
  9361. "Expected a dimension of size %zu, got %zu",
  9362. ctx->head->field->type->arraysize[0], ctx->enc_count);
  9363. return -1;
  9364. }
  9365. }
  9366. if (!ctx->is_valid_array) {
  9367. PyErr_Format(PyExc_ValueError, "Expected %d dimensions, got %d",
  9368. ctx->head->field->type->ndim, ndim);
  9369. return -1;
  9370. }
  9371. for (i = 0; i < ctx->head->field->type->ndim; i++) {
  9372. arraysize *= ctx->head->field->type->arraysize[i];
  9373. }
  9374. ctx->is_valid_array = 0;
  9375. ctx->enc_count = 1;
  9376. }
  9377. group = __Pyx_BufFmt_TypeCharToGroup(ctx->enc_type, ctx->is_complex);
  9378. do {
  9379. __Pyx_StructField* field = ctx->head->field;
  9380. __Pyx_TypeInfo* type = field->type;
  9381. if (ctx->enc_packmode == '@' || ctx->enc_packmode == '^') {
  9382. size = __Pyx_BufFmt_TypeCharToNativeSize(ctx->enc_type, ctx->is_complex);
  9383. } else {
  9384. size = __Pyx_BufFmt_TypeCharToStandardSize(ctx->enc_type, ctx->is_complex);
  9385. }
  9386. if (ctx->enc_packmode == '@') {
  9387. size_t align_at = __Pyx_BufFmt_TypeCharToAlignment(ctx->enc_type, ctx->is_complex);
  9388. size_t align_mod_offset;
  9389. if (align_at == 0) return -1;
  9390. align_mod_offset = ctx->fmt_offset % align_at;
  9391. if (align_mod_offset > 0) ctx->fmt_offset += align_at - align_mod_offset;
  9392. if (ctx->struct_alignment == 0)
  9393. ctx->struct_alignment = __Pyx_BufFmt_TypeCharToPadding(ctx->enc_type,
  9394. ctx->is_complex);
  9395. }
  9396. if (type->size != size || type->typegroup != group) {
  9397. if (type->typegroup == 'C' && type->fields != NULL) {
  9398. size_t parent_offset = ctx->head->parent_offset + field->offset;
  9399. ++ctx->head;
  9400. ctx->head->field = type->fields;
  9401. ctx->head->parent_offset = parent_offset;
  9402. continue;
  9403. }
  9404. if ((type->typegroup == 'H' || group == 'H') && type->size == size) {
  9405. } else {
  9406. __Pyx_BufFmt_RaiseExpected(ctx);
  9407. return -1;
  9408. }
  9409. }
  9410. offset = ctx->head->parent_offset + field->offset;
  9411. if (ctx->fmt_offset != offset) {
  9412. PyErr_Format(PyExc_ValueError,
  9413. "Buffer dtype mismatch; next field is at offset %" CYTHON_FORMAT_SSIZE_T "d but %" CYTHON_FORMAT_SSIZE_T "d expected",
  9414. (Py_ssize_t)ctx->fmt_offset, (Py_ssize_t)offset);
  9415. return -1;
  9416. }
  9417. ctx->fmt_offset += size;
  9418. if (arraysize)
  9419. ctx->fmt_offset += (arraysize - 1) * size;
  9420. --ctx->enc_count;
  9421. while (1) {
  9422. if (field == &ctx->root) {
  9423. ctx->head = NULL;
  9424. if (ctx->enc_count != 0) {
  9425. __Pyx_BufFmt_RaiseExpected(ctx);
  9426. return -1;
  9427. }
  9428. break;
  9429. }
  9430. ctx->head->field = ++field;
  9431. if (field->type == NULL) {
  9432. --ctx->head;
  9433. field = ctx->head->field;
  9434. continue;
  9435. } else if (field->type->typegroup == 'S') {
  9436. size_t parent_offset = ctx->head->parent_offset + field->offset;
  9437. if (field->type->fields->type == NULL) continue;
  9438. field = field->type->fields;
  9439. ++ctx->head;
  9440. ctx->head->field = field;
  9441. ctx->head->parent_offset = parent_offset;
  9442. break;
  9443. } else {
  9444. break;
  9445. }
  9446. }
  9447. } while (ctx->enc_count);
  9448. ctx->enc_type = 0;
  9449. ctx->is_complex = 0;
  9450. return 0;
  9451. }
  9452. static PyObject *
  9453. __pyx_buffmt_parse_array(__Pyx_BufFmt_Context* ctx, const char** tsp)
  9454. {
  9455. const char *ts = *tsp;
  9456. int i = 0, number;
  9457. int ndim = ctx->head->field->type->ndim;
  9458. ;
  9459. ++ts;
  9460. if (ctx->new_count != 1) {
  9461. PyErr_SetString(PyExc_ValueError,
  9462. "Cannot handle repeated arrays in format string");
  9463. return NULL;
  9464. }
  9465. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9466. while (*ts && *ts != ')') {
  9467. switch (*ts) {
  9468. case ' ': case '\f': case '\r': case '\n': case '\t': case '\v': continue;
  9469. default: break;
  9470. }
  9471. number = __Pyx_BufFmt_ExpectNumber(&ts);
  9472. if (number == -1) return NULL;
  9473. if (i < ndim && (size_t) number != ctx->head->field->type->arraysize[i])
  9474. return PyErr_Format(PyExc_ValueError,
  9475. "Expected a dimension of size %zu, got %d",
  9476. ctx->head->field->type->arraysize[i], number);
  9477. if (*ts != ',' && *ts != ')')
  9478. return PyErr_Format(PyExc_ValueError,
  9479. "Expected a comma in format string, got '%c'", *ts);
  9480. if (*ts == ',') ts++;
  9481. i++;
  9482. }
  9483. if (i != ndim)
  9484. return PyErr_Format(PyExc_ValueError, "Expected %d dimension(s), got %d",
  9485. ctx->head->field->type->ndim, i);
  9486. if (!*ts) {
  9487. PyErr_SetString(PyExc_ValueError,
  9488. "Unexpected end of format string, expected ')'");
  9489. return NULL;
  9490. }
  9491. ctx->is_valid_array = 1;
  9492. ctx->new_count = 1;
  9493. *tsp = ++ts;
  9494. return Py_None;
  9495. }
  9496. static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts) {
  9497. int got_Z = 0;
  9498. while (1) {
  9499. switch(*ts) {
  9500. case 0:
  9501. if (ctx->enc_type != 0 && ctx->head == NULL) {
  9502. __Pyx_BufFmt_RaiseExpected(ctx);
  9503. return NULL;
  9504. }
  9505. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9506. if (ctx->head != NULL) {
  9507. __Pyx_BufFmt_RaiseExpected(ctx);
  9508. return NULL;
  9509. }
  9510. return ts;
  9511. case ' ':
  9512. case '\r':
  9513. case '\n':
  9514. ++ts;
  9515. break;
  9516. case '<':
  9517. if (!__Pyx_Is_Little_Endian()) {
  9518. PyErr_SetString(PyExc_ValueError, "Little-endian buffer not supported on big-endian compiler");
  9519. return NULL;
  9520. }
  9521. ctx->new_packmode = '=';
  9522. ++ts;
  9523. break;
  9524. case '>':
  9525. case '!':
  9526. if (__Pyx_Is_Little_Endian()) {
  9527. PyErr_SetString(PyExc_ValueError, "Big-endian buffer not supported on little-endian compiler");
  9528. return NULL;
  9529. }
  9530. ctx->new_packmode = '=';
  9531. ++ts;
  9532. break;
  9533. case '=':
  9534. case '@':
  9535. case '^':
  9536. ctx->new_packmode = *ts++;
  9537. break;
  9538. case 'T':
  9539. {
  9540. const char* ts_after_sub;
  9541. size_t i, struct_count = ctx->new_count;
  9542. size_t struct_alignment = ctx->struct_alignment;
  9543. ctx->new_count = 1;
  9544. ++ts;
  9545. if (*ts != '{') {
  9546. PyErr_SetString(PyExc_ValueError, "Buffer acquisition: Expected '{' after 'T'");
  9547. return NULL;
  9548. }
  9549. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9550. ctx->enc_type = 0;
  9551. ctx->enc_count = 0;
  9552. ctx->struct_alignment = 0;
  9553. ++ts;
  9554. ts_after_sub = ts;
  9555. for (i = 0; i != struct_count; ++i) {
  9556. ts_after_sub = __Pyx_BufFmt_CheckString(ctx, ts);
  9557. if (!ts_after_sub) return NULL;
  9558. }
  9559. ts = ts_after_sub;
  9560. if (struct_alignment) ctx->struct_alignment = struct_alignment;
  9561. }
  9562. break;
  9563. case '}':
  9564. {
  9565. size_t alignment = ctx->struct_alignment;
  9566. ++ts;
  9567. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9568. ctx->enc_type = 0;
  9569. if (alignment && ctx->fmt_offset % alignment) {
  9570. ctx->fmt_offset += alignment - (ctx->fmt_offset % alignment);
  9571. }
  9572. }
  9573. return ts;
  9574. case 'x':
  9575. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9576. ctx->fmt_offset += ctx->new_count;
  9577. ctx->new_count = 1;
  9578. ctx->enc_count = 0;
  9579. ctx->enc_type = 0;
  9580. ctx->enc_packmode = ctx->new_packmode;
  9581. ++ts;
  9582. break;
  9583. case 'Z':
  9584. got_Z = 1;
  9585. ++ts;
  9586. if (*ts != 'f' && *ts != 'd' && *ts != 'g') {
  9587. __Pyx_BufFmt_RaiseUnexpectedChar('Z');
  9588. return NULL;
  9589. }
  9590. case 'c': case 'b': case 'B': case 'h': case 'H': case 'i': case 'I':
  9591. case 'l': case 'L': case 'q': case 'Q':
  9592. case 'f': case 'd': case 'g':
  9593. case 'O': case 'p':
  9594. if (ctx->enc_type == *ts && got_Z == ctx->is_complex &&
  9595. ctx->enc_packmode == ctx->new_packmode) {
  9596. ctx->enc_count += ctx->new_count;
  9597. ctx->new_count = 1;
  9598. got_Z = 0;
  9599. ++ts;
  9600. break;
  9601. }
  9602. case 's':
  9603. if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL;
  9604. ctx->enc_count = ctx->new_count;
  9605. ctx->enc_packmode = ctx->new_packmode;
  9606. ctx->enc_type = *ts;
  9607. ctx->is_complex = got_Z;
  9608. ++ts;
  9609. ctx->new_count = 1;
  9610. got_Z = 0;
  9611. break;
  9612. case ':':
  9613. ++ts;
  9614. while(*ts != ':') ++ts;
  9615. ++ts;
  9616. break;
  9617. case '(':
  9618. if (!__pyx_buffmt_parse_array(ctx, &ts)) return NULL;
  9619. break;
  9620. default:
  9621. {
  9622. int number = __Pyx_BufFmt_ExpectNumber(&ts);
  9623. if (number == -1) return NULL;
  9624. ctx->new_count = (size_t)number;
  9625. }
  9626. }
  9627. }
  9628. }
  9629. /* BufferGetAndValidate */
  9630. static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info) {
  9631. if (unlikely(info->buf == NULL)) return;
  9632. if (info->suboffsets == __Pyx_minusones) info->suboffsets = NULL;
  9633. __Pyx_ReleaseBuffer(info);
  9634. }
  9635. static void __Pyx_ZeroBuffer(Py_buffer* buf) {
  9636. buf->buf = NULL;
  9637. buf->obj = NULL;
  9638. buf->strides = __Pyx_zeros;
  9639. buf->shape = __Pyx_zeros;
  9640. buf->suboffsets = __Pyx_minusones;
  9641. }
  9642. static int __Pyx__GetBufferAndValidate(
  9643. Py_buffer* buf, PyObject* obj, __Pyx_TypeInfo* dtype, int flags,
  9644. int nd, int cast, __Pyx_BufFmt_StackElem* stack)
  9645. {
  9646. buf->buf = NULL;
  9647. if (unlikely(__Pyx_GetBuffer(obj, buf, flags) == -1)) {
  9648. __Pyx_ZeroBuffer(buf);
  9649. return -1;
  9650. }
  9651. if (unlikely(buf->ndim != nd)) {
  9652. PyErr_Format(PyExc_ValueError,
  9653. "Buffer has wrong number of dimensions (expected %d, got %d)",
  9654. nd, buf->ndim);
  9655. goto fail;
  9656. }
  9657. if (!cast) {
  9658. __Pyx_BufFmt_Context ctx;
  9659. __Pyx_BufFmt_Init(&ctx, stack, dtype);
  9660. if (!__Pyx_BufFmt_CheckString(&ctx, buf->format)) goto fail;
  9661. }
  9662. if (unlikely((unsigned)buf->itemsize != dtype->size)) {
  9663. PyErr_Format(PyExc_ValueError,
  9664. "Item size of buffer (%" CYTHON_FORMAT_SSIZE_T "d byte%s) does not match size of '%s' (%" CYTHON_FORMAT_SSIZE_T "d byte%s)",
  9665. buf->itemsize, (buf->itemsize > 1) ? "s" : "",
  9666. dtype->name, (Py_ssize_t)dtype->size, (dtype->size > 1) ? "s" : "");
  9667. goto fail;
  9668. }
  9669. if (buf->suboffsets == NULL) buf->suboffsets = __Pyx_minusones;
  9670. return 0;
  9671. fail:;
  9672. __Pyx_SafeReleaseBuffer(buf);
  9673. return -1;
  9674. }
  9675. /* BufferFallbackError */
  9676. static void __Pyx_RaiseBufferFallbackError(void) {
  9677. PyErr_SetString(PyExc_ValueError,
  9678. "Buffer acquisition failed on assignment; and then reacquiring the old buffer failed too!");
  9679. }
  9680. /* GetItemInt */
  9681. static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) {
  9682. PyObject *r;
  9683. if (!j) return NULL;
  9684. r = PyObject_GetItem(o, j);
  9685. Py_DECREF(j);
  9686. return r;
  9687. }
  9688. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i,
  9689. CYTHON_NCP_UNUSED int wraparound,
  9690. CYTHON_NCP_UNUSED int boundscheck) {
  9691. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  9692. Py_ssize_t wrapped_i = i;
  9693. if (wraparound & unlikely(i < 0)) {
  9694. wrapped_i += PyList_GET_SIZE(o);
  9695. }
  9696. if ((!boundscheck) || likely((0 <= wrapped_i) & (wrapped_i < PyList_GET_SIZE(o)))) {
  9697. PyObject *r = PyList_GET_ITEM(o, wrapped_i);
  9698. Py_INCREF(r);
  9699. return r;
  9700. }
  9701. return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
  9702. #else
  9703. return PySequence_GetItem(o, i);
  9704. #endif
  9705. }
  9706. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i,
  9707. CYTHON_NCP_UNUSED int wraparound,
  9708. CYTHON_NCP_UNUSED int boundscheck) {
  9709. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
  9710. Py_ssize_t wrapped_i = i;
  9711. if (wraparound & unlikely(i < 0)) {
  9712. wrapped_i += PyTuple_GET_SIZE(o);
  9713. }
  9714. if ((!boundscheck) || likely((0 <= wrapped_i) & (wrapped_i < PyTuple_GET_SIZE(o)))) {
  9715. PyObject *r = PyTuple_GET_ITEM(o, wrapped_i);
  9716. Py_INCREF(r);
  9717. return r;
  9718. }
  9719. return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
  9720. #else
  9721. return PySequence_GetItem(o, i);
  9722. #endif
  9723. }
  9724. static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list,
  9725. CYTHON_NCP_UNUSED int wraparound,
  9726. CYTHON_NCP_UNUSED int boundscheck) {
  9727. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS
  9728. if (is_list || PyList_CheckExact(o)) {
  9729. Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o);
  9730. if ((!boundscheck) || (likely((n >= 0) & (n < PyList_GET_SIZE(o))))) {
  9731. PyObject *r = PyList_GET_ITEM(o, n);
  9732. Py_INCREF(r);
  9733. return r;
  9734. }
  9735. }
  9736. else if (PyTuple_CheckExact(o)) {
  9737. Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o);
  9738. if ((!boundscheck) || likely((n >= 0) & (n < PyTuple_GET_SIZE(o)))) {
  9739. PyObject *r = PyTuple_GET_ITEM(o, n);
  9740. Py_INCREF(r);
  9741. return r;
  9742. }
  9743. } else {
  9744. PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence;
  9745. if (likely(m && m->sq_item)) {
  9746. if (wraparound && unlikely(i < 0) && likely(m->sq_length)) {
  9747. Py_ssize_t l = m->sq_length(o);
  9748. if (likely(l >= 0)) {
  9749. i += l;
  9750. } else {
  9751. if (!PyErr_ExceptionMatches(PyExc_OverflowError))
  9752. return NULL;
  9753. PyErr_Clear();
  9754. }
  9755. }
  9756. return m->sq_item(o, i);
  9757. }
  9758. }
  9759. #else
  9760. if (is_list || PySequence_Check(o)) {
  9761. return PySequence_GetItem(o, i);
  9762. }
  9763. #endif
  9764. return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
  9765. }
  9766. /* BufferIndexError */
  9767. static void __Pyx_RaiseBufferIndexError(int axis) {
  9768. PyErr_Format(PyExc_IndexError,
  9769. "Out of bounds on buffer access (axis %d)", axis);
  9770. }
  9771. /* SetItemInt */
  9772. static int __Pyx_SetItemInt_Generic(PyObject *o, PyObject *j, PyObject *v) {
  9773. int r;
  9774. if (!j) return -1;
  9775. r = PyObject_SetItem(o, j, v);
  9776. Py_DECREF(j);
  9777. return r;
  9778. }
  9779. static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v, int is_list,
  9780. CYTHON_NCP_UNUSED int wraparound, CYTHON_NCP_UNUSED int boundscheck) {
  9781. #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS && CYTHON_USE_TYPE_SLOTS
  9782. if (is_list || PyList_CheckExact(o)) {
  9783. Py_ssize_t n = (!wraparound) ? i : ((likely(i >= 0)) ? i : i + PyList_GET_SIZE(o));
  9784. if ((!boundscheck) || likely((n >= 0) & (n < PyList_GET_SIZE(o)))) {
  9785. PyObject* old = PyList_GET_ITEM(o, n);
  9786. Py_INCREF(v);
  9787. PyList_SET_ITEM(o, n, v);
  9788. Py_DECREF(old);
  9789. return 1;
  9790. }
  9791. } else {
  9792. PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence;
  9793. if (likely(m && m->sq_ass_item)) {
  9794. if (wraparound && unlikely(i < 0) && likely(m->sq_length)) {
  9795. Py_ssize_t l = m->sq_length(o);
  9796. if (likely(l >= 0)) {
  9797. i += l;
  9798. } else {
  9799. if (!PyErr_ExceptionMatches(PyExc_OverflowError))
  9800. return -1;
  9801. PyErr_Clear();
  9802. }
  9803. }
  9804. return m->sq_ass_item(o, i, v);
  9805. }
  9806. }
  9807. #else
  9808. #if CYTHON_COMPILING_IN_PYPY
  9809. if (is_list || (PySequence_Check(o) && !PyDict_Check(o))) {
  9810. #else
  9811. if (is_list || PySequence_Check(o)) {
  9812. #endif
  9813. return PySequence_SetItem(o, i, v);
  9814. }
  9815. #endif
  9816. return __Pyx_SetItemInt_Generic(o, PyInt_FromSsize_t(i), v);
  9817. }
  9818. /* PyCFunctionFastCall */
  9819. #if CYTHON_FAST_PYCCALL
  9820. static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) {
  9821. PyCFunctionObject *func = (PyCFunctionObject*)func_obj;
  9822. PyCFunction meth = PyCFunction_GET_FUNCTION(func);
  9823. PyObject *self = PyCFunction_GET_SELF(func);
  9824. int flags = PyCFunction_GET_FLAGS(func);
  9825. assert(PyCFunction_Check(func));
  9826. assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS)));
  9827. assert(nargs >= 0);
  9828. assert(nargs == 0 || args != NULL);
  9829. /* _PyCFunction_FastCallDict() must not be called with an exception set,
  9830. because it may clear it (directly or indirectly) and so the
  9831. caller loses its exception */
  9832. assert(!PyErr_Occurred());
  9833. if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) {
  9834. return (*((__Pyx_PyCFunctionFastWithKeywords)meth)) (self, args, nargs, NULL);
  9835. } else {
  9836. return (*((__Pyx_PyCFunctionFast)meth)) (self, args, nargs);
  9837. }
  9838. }
  9839. #endif
  9840. /* PyFunctionFastCall */
  9841. #if CYTHON_FAST_PYCALL
  9842. #include "frameobject.h"
  9843. static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na,
  9844. PyObject *globals) {
  9845. PyFrameObject *f;
  9846. PyThreadState *tstate = __Pyx_PyThreadState_Current;
  9847. PyObject **fastlocals;
  9848. Py_ssize_t i;
  9849. PyObject *result;
  9850. assert(globals != NULL);
  9851. /* XXX Perhaps we should create a specialized
  9852. PyFrame_New() that doesn't take locals, but does
  9853. take builtins without sanity checking them.
  9854. */
  9855. assert(tstate != NULL);
  9856. f = PyFrame_New(tstate, co, globals, NULL);
  9857. if (f == NULL) {
  9858. return NULL;
  9859. }
  9860. fastlocals = f->f_localsplus;
  9861. for (i = 0; i < na; i++) {
  9862. Py_INCREF(*args);
  9863. fastlocals[i] = *args++;
  9864. }
  9865. result = PyEval_EvalFrameEx(f,0);
  9866. ++tstate->recursion_depth;
  9867. Py_DECREF(f);
  9868. --tstate->recursion_depth;
  9869. return result;
  9870. }
  9871. #if 1 || PY_VERSION_HEX < 0x030600B1
  9872. static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs) {
  9873. PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
  9874. PyObject *globals = PyFunction_GET_GLOBALS(func);
  9875. PyObject *argdefs = PyFunction_GET_DEFAULTS(func);
  9876. PyObject *closure;
  9877. #if PY_MAJOR_VERSION >= 3
  9878. PyObject *kwdefs;
  9879. #endif
  9880. PyObject *kwtuple, **k;
  9881. PyObject **d;
  9882. Py_ssize_t nd;
  9883. Py_ssize_t nk;
  9884. PyObject *result;
  9885. assert(kwargs == NULL || PyDict_Check(kwargs));
  9886. nk = kwargs ? PyDict_Size(kwargs) : 0;
  9887. if (Py_EnterRecursiveCall((char*)" while calling a Python object")) {
  9888. return NULL;
  9889. }
  9890. if (
  9891. #if PY_MAJOR_VERSION >= 3
  9892. co->co_kwonlyargcount == 0 &&
  9893. #endif
  9894. likely(kwargs == NULL || nk == 0) &&
  9895. co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) {
  9896. if (argdefs == NULL && co->co_argcount == nargs) {
  9897. result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals);
  9898. goto done;
  9899. }
  9900. else if (nargs == 0 && argdefs != NULL
  9901. && co->co_argcount == Py_SIZE(argdefs)) {
  9902. /* function called with no arguments, but all parameters have
  9903. a default value: use default values as arguments .*/
  9904. args = &PyTuple_GET_ITEM(argdefs, 0);
  9905. result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals);
  9906. goto done;
  9907. }
  9908. }
  9909. if (kwargs != NULL) {
  9910. Py_ssize_t pos, i;
  9911. kwtuple = PyTuple_New(2 * nk);
  9912. if (kwtuple == NULL) {
  9913. result = NULL;
  9914. goto done;
  9915. }
  9916. k = &PyTuple_GET_ITEM(kwtuple, 0);
  9917. pos = i = 0;
  9918. while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) {
  9919. Py_INCREF(k[i]);
  9920. Py_INCREF(k[i+1]);
  9921. i += 2;
  9922. }
  9923. nk = i / 2;
  9924. }
  9925. else {
  9926. kwtuple = NULL;
  9927. k = NULL;
  9928. }
  9929. closure = PyFunction_GET_CLOSURE(func);
  9930. #if PY_MAJOR_VERSION >= 3
  9931. kwdefs = PyFunction_GET_KW_DEFAULTS(func);
  9932. #endif
  9933. if (argdefs != NULL) {
  9934. d = &PyTuple_GET_ITEM(argdefs, 0);
  9935. nd = Py_SIZE(argdefs);
  9936. }
  9937. else {
  9938. d = NULL;
  9939. nd = 0;
  9940. }
  9941. #if PY_MAJOR_VERSION >= 3
  9942. result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL,
  9943. args, nargs,
  9944. k, (int)nk,
  9945. d, (int)nd, kwdefs, closure);
  9946. #else
  9947. result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL,
  9948. args, nargs,
  9949. k, (int)nk,
  9950. d, (int)nd, closure);
  9951. #endif
  9952. Py_XDECREF(kwtuple);
  9953. done:
  9954. Py_LeaveRecursiveCall();
  9955. return result;
  9956. }
  9957. #endif
  9958. #endif
  9959. /* PyObjectCallMethO */
  9960. #if CYTHON_COMPILING_IN_CPYTHON
  9961. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) {
  9962. PyObject *self, *result;
  9963. PyCFunction cfunc;
  9964. cfunc = PyCFunction_GET_FUNCTION(func);
  9965. self = PyCFunction_GET_SELF(func);
  9966. if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
  9967. return NULL;
  9968. result = cfunc(self, arg);
  9969. Py_LeaveRecursiveCall();
  9970. if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
  9971. PyErr_SetString(
  9972. PyExc_SystemError,
  9973. "NULL result without error in PyObject_Call");
  9974. }
  9975. return result;
  9976. }
  9977. #endif
  9978. /* PyObjectCallOneArg */
  9979. #if CYTHON_COMPILING_IN_CPYTHON
  9980. static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) {
  9981. PyObject *result;
  9982. PyObject *args = PyTuple_New(1);
  9983. if (unlikely(!args)) return NULL;
  9984. Py_INCREF(arg);
  9985. PyTuple_SET_ITEM(args, 0, arg);
  9986. result = __Pyx_PyObject_Call(func, args, NULL);
  9987. Py_DECREF(args);
  9988. return result;
  9989. }
  9990. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) {
  9991. #if CYTHON_FAST_PYCALL
  9992. if (PyFunction_Check(func)) {
  9993. return __Pyx_PyFunction_FastCall(func, &arg, 1);
  9994. }
  9995. #endif
  9996. if (likely(PyCFunction_Check(func))) {
  9997. if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) {
  9998. return __Pyx_PyObject_CallMethO(func, arg);
  9999. #if CYTHON_FAST_PYCCALL
  10000. } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) {
  10001. return __Pyx_PyCFunction_FastCall(func, &arg, 1);
  10002. #endif
  10003. }
  10004. }
  10005. return __Pyx__PyObject_CallOneArg(func, arg);
  10006. }
  10007. #else
  10008. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) {
  10009. PyObject *result;
  10010. PyObject *args = PyTuple_Pack(1, arg);
  10011. if (unlikely(!args)) return NULL;
  10012. result = __Pyx_PyObject_Call(func, args, NULL);
  10013. Py_DECREF(args);
  10014. return result;
  10015. }
  10016. #endif
  10017. /* PyObjectCallNoArg */
  10018. #if CYTHON_COMPILING_IN_CPYTHON
  10019. static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) {
  10020. #if CYTHON_FAST_PYCALL
  10021. if (PyFunction_Check(func)) {
  10022. return __Pyx_PyFunction_FastCall(func, NULL, 0);
  10023. }
  10024. #endif
  10025. #ifdef __Pyx_CyFunction_USED
  10026. if (likely(PyCFunction_Check(func) || __Pyx_TypeCheck(func, __pyx_CyFunctionType))) {
  10027. #else
  10028. if (likely(PyCFunction_Check(func))) {
  10029. #endif
  10030. if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) {
  10031. return __Pyx_PyObject_CallMethO(func, NULL);
  10032. }
  10033. }
  10034. return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL);
  10035. }
  10036. #endif
  10037. /* RaiseException */
  10038. #if PY_MAJOR_VERSION < 3
  10039. static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb,
  10040. CYTHON_UNUSED PyObject *cause) {
  10041. __Pyx_PyThreadState_declare
  10042. Py_XINCREF(type);
  10043. if (!value || value == Py_None)
  10044. value = NULL;
  10045. else
  10046. Py_INCREF(value);
  10047. if (!tb || tb == Py_None)
  10048. tb = NULL;
  10049. else {
  10050. Py_INCREF(tb);
  10051. if (!PyTraceBack_Check(tb)) {
  10052. PyErr_SetString(PyExc_TypeError,
  10053. "raise: arg 3 must be a traceback or None");
  10054. goto raise_error;
  10055. }
  10056. }
  10057. if (PyType_Check(type)) {
  10058. #if CYTHON_COMPILING_IN_PYPY
  10059. if (!value) {
  10060. Py_INCREF(Py_None);
  10061. value = Py_None;
  10062. }
  10063. #endif
  10064. PyErr_NormalizeException(&type, &value, &tb);
  10065. } else {
  10066. if (value) {
  10067. PyErr_SetString(PyExc_TypeError,
  10068. "instance exception may not have a separate value");
  10069. goto raise_error;
  10070. }
  10071. value = type;
  10072. type = (PyObject*) Py_TYPE(type);
  10073. Py_INCREF(type);
  10074. if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) {
  10075. PyErr_SetString(PyExc_TypeError,
  10076. "raise: exception class must be a subclass of BaseException");
  10077. goto raise_error;
  10078. }
  10079. }
  10080. __Pyx_PyThreadState_assign
  10081. __Pyx_ErrRestore(type, value, tb);
  10082. return;
  10083. raise_error:
  10084. Py_XDECREF(value);
  10085. Py_XDECREF(type);
  10086. Py_XDECREF(tb);
  10087. return;
  10088. }
  10089. #else
  10090. static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) {
  10091. PyObject* owned_instance = NULL;
  10092. if (tb == Py_None) {
  10093. tb = 0;
  10094. } else if (tb && !PyTraceBack_Check(tb)) {
  10095. PyErr_SetString(PyExc_TypeError,
  10096. "raise: arg 3 must be a traceback or None");
  10097. goto bad;
  10098. }
  10099. if (value == Py_None)
  10100. value = 0;
  10101. if (PyExceptionInstance_Check(type)) {
  10102. if (value) {
  10103. PyErr_SetString(PyExc_TypeError,
  10104. "instance exception may not have a separate value");
  10105. goto bad;
  10106. }
  10107. value = type;
  10108. type = (PyObject*) Py_TYPE(value);
  10109. } else if (PyExceptionClass_Check(type)) {
  10110. PyObject *instance_class = NULL;
  10111. if (value && PyExceptionInstance_Check(value)) {
  10112. instance_class = (PyObject*) Py_TYPE(value);
  10113. if (instance_class != type) {
  10114. int is_subclass = PyObject_IsSubclass(instance_class, type);
  10115. if (!is_subclass) {
  10116. instance_class = NULL;
  10117. } else if (unlikely(is_subclass == -1)) {
  10118. goto bad;
  10119. } else {
  10120. type = instance_class;
  10121. }
  10122. }
  10123. }
  10124. if (!instance_class) {
  10125. PyObject *args;
  10126. if (!value)
  10127. args = PyTuple_New(0);
  10128. else if (PyTuple_Check(value)) {
  10129. Py_INCREF(value);
  10130. args = value;
  10131. } else
  10132. args = PyTuple_Pack(1, value);
  10133. if (!args)
  10134. goto bad;
  10135. owned_instance = PyObject_Call(type, args, NULL);
  10136. Py_DECREF(args);
  10137. if (!owned_instance)
  10138. goto bad;
  10139. value = owned_instance;
  10140. if (!PyExceptionInstance_Check(value)) {
  10141. PyErr_Format(PyExc_TypeError,
  10142. "calling %R should have returned an instance of "
  10143. "BaseException, not %R",
  10144. type, Py_TYPE(value));
  10145. goto bad;
  10146. }
  10147. }
  10148. } else {
  10149. PyErr_SetString(PyExc_TypeError,
  10150. "raise: exception class must be a subclass of BaseException");
  10151. goto bad;
  10152. }
  10153. if (cause) {
  10154. PyObject *fixed_cause;
  10155. if (cause == Py_None) {
  10156. fixed_cause = NULL;
  10157. } else if (PyExceptionClass_Check(cause)) {
  10158. fixed_cause = PyObject_CallObject(cause, NULL);
  10159. if (fixed_cause == NULL)
  10160. goto bad;
  10161. } else if (PyExceptionInstance_Check(cause)) {
  10162. fixed_cause = cause;
  10163. Py_INCREF(fixed_cause);
  10164. } else {
  10165. PyErr_SetString(PyExc_TypeError,
  10166. "exception causes must derive from "
  10167. "BaseException");
  10168. goto bad;
  10169. }
  10170. PyException_SetCause(value, fixed_cause);
  10171. }
  10172. PyErr_SetObject(type, value);
  10173. if (tb) {
  10174. #if CYTHON_COMPILING_IN_PYPY
  10175. PyObject *tmp_type, *tmp_value, *tmp_tb;
  10176. PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb);
  10177. Py_INCREF(tb);
  10178. PyErr_Restore(tmp_type, tmp_value, tb);
  10179. Py_XDECREF(tmp_tb);
  10180. #else
  10181. PyThreadState *tstate = __Pyx_PyThreadState_Current;
  10182. PyObject* tmp_tb = tstate->curexc_traceback;
  10183. if (tb != tmp_tb) {
  10184. Py_INCREF(tb);
  10185. tstate->curexc_traceback = tb;
  10186. Py_XDECREF(tmp_tb);
  10187. }
  10188. #endif
  10189. }
  10190. bad:
  10191. Py_XDECREF(owned_instance);
  10192. return;
  10193. }
  10194. #endif
  10195. /* RaiseTooManyValuesToUnpack */
  10196. static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) {
  10197. PyErr_Format(PyExc_ValueError,
  10198. "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected);
  10199. }
  10200. /* RaiseNeedMoreValuesToUnpack */
  10201. static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
  10202. PyErr_Format(PyExc_ValueError,
  10203. "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack",
  10204. index, (index == 1) ? "" : "s");
  10205. }
  10206. /* RaiseNoneIterError */
  10207. static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) {
  10208. PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable");
  10209. }
  10210. /* SaveResetException */
  10211. #if CYTHON_FAST_THREAD_STATE
  10212. static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {
  10213. #if PY_VERSION_HEX >= 0x030700A2
  10214. *type = tstate->exc_state.exc_type;
  10215. *value = tstate->exc_state.exc_value;
  10216. *tb = tstate->exc_state.exc_traceback;
  10217. #else
  10218. *type = tstate->exc_type;
  10219. *value = tstate->exc_value;
  10220. *tb = tstate->exc_traceback;
  10221. #endif
  10222. Py_XINCREF(*type);
  10223. Py_XINCREF(*value);
  10224. Py_XINCREF(*tb);
  10225. }
  10226. static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) {
  10227. PyObject *tmp_type, *tmp_value, *tmp_tb;
  10228. #if PY_VERSION_HEX >= 0x030700A2
  10229. tmp_type = tstate->exc_state.exc_type;
  10230. tmp_value = tstate->exc_state.exc_value;
  10231. tmp_tb = tstate->exc_state.exc_traceback;
  10232. tstate->exc_state.exc_type = type;
  10233. tstate->exc_state.exc_value = value;
  10234. tstate->exc_state.exc_traceback = tb;
  10235. #else
  10236. tmp_type = tstate->exc_type;
  10237. tmp_value = tstate->exc_value;
  10238. tmp_tb = tstate->exc_traceback;
  10239. tstate->exc_type = type;
  10240. tstate->exc_value = value;
  10241. tstate->exc_traceback = tb;
  10242. #endif
  10243. Py_XDECREF(tmp_type);
  10244. Py_XDECREF(tmp_value);
  10245. Py_XDECREF(tmp_tb);
  10246. }
  10247. #endif
  10248. /* PyErrExceptionMatches */
  10249. #if CYTHON_FAST_THREAD_STATE
  10250. static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) {
  10251. Py_ssize_t i, n;
  10252. n = PyTuple_GET_SIZE(tuple);
  10253. #if PY_MAJOR_VERSION >= 3
  10254. for (i=0; i<n; i++) {
  10255. if (exc_type == PyTuple_GET_ITEM(tuple, i)) return 1;
  10256. }
  10257. #endif
  10258. for (i=0; i<n; i++) {
  10259. if (__Pyx_PyErr_GivenExceptionMatches(exc_type, PyTuple_GET_ITEM(tuple, i))) return 1;
  10260. }
  10261. return 0;
  10262. }
  10263. static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err) {
  10264. PyObject *exc_type = tstate->curexc_type;
  10265. if (exc_type == err) return 1;
  10266. if (unlikely(!exc_type)) return 0;
  10267. if (unlikely(PyTuple_Check(err)))
  10268. return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err);
  10269. return __Pyx_PyErr_GivenExceptionMatches(exc_type, err);
  10270. }
  10271. #endif
  10272. /* GetException */
  10273. #if CYTHON_FAST_THREAD_STATE
  10274. static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {
  10275. #else
  10276. static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) {
  10277. #endif
  10278. PyObject *local_type, *local_value, *local_tb;
  10279. #if CYTHON_FAST_THREAD_STATE
  10280. PyObject *tmp_type, *tmp_value, *tmp_tb;
  10281. local_type = tstate->curexc_type;
  10282. local_value = tstate->curexc_value;
  10283. local_tb = tstate->curexc_traceback;
  10284. tstate->curexc_type = 0;
  10285. tstate->curexc_value = 0;
  10286. tstate->curexc_traceback = 0;
  10287. #else
  10288. PyErr_Fetch(&local_type, &local_value, &local_tb);
  10289. #endif
  10290. PyErr_NormalizeException(&local_type, &local_value, &local_tb);
  10291. #if CYTHON_FAST_THREAD_STATE
  10292. if (unlikely(tstate->curexc_type))
  10293. #else
  10294. if (unlikely(PyErr_Occurred()))
  10295. #endif
  10296. goto bad;
  10297. #if PY_MAJOR_VERSION >= 3
  10298. if (local_tb) {
  10299. if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0))
  10300. goto bad;
  10301. }
  10302. #endif
  10303. Py_XINCREF(local_tb);
  10304. Py_XINCREF(local_type);
  10305. Py_XINCREF(local_value);
  10306. *type = local_type;
  10307. *value = local_value;
  10308. *tb = local_tb;
  10309. #if CYTHON_FAST_THREAD_STATE
  10310. #if PY_VERSION_HEX >= 0x030700A2
  10311. tmp_type = tstate->exc_state.exc_type;
  10312. tmp_value = tstate->exc_state.exc_value;
  10313. tmp_tb = tstate->exc_state.exc_traceback;
  10314. tstate->exc_state.exc_type = local_type;
  10315. tstate->exc_state.exc_value = local_value;
  10316. tstate->exc_state.exc_traceback = local_tb;
  10317. #else
  10318. tmp_type = tstate->exc_type;
  10319. tmp_value = tstate->exc_value;
  10320. tmp_tb = tstate->exc_traceback;
  10321. tstate->exc_type = local_type;
  10322. tstate->exc_value = local_value;
  10323. tstate->exc_traceback = local_tb;
  10324. #endif
  10325. Py_XDECREF(tmp_type);
  10326. Py_XDECREF(tmp_value);
  10327. Py_XDECREF(tmp_tb);
  10328. #else
  10329. PyErr_SetExcInfo(local_type, local_value, local_tb);
  10330. #endif
  10331. return 0;
  10332. bad:
  10333. *type = 0;
  10334. *value = 0;
  10335. *tb = 0;
  10336. Py_XDECREF(local_type);
  10337. Py_XDECREF(local_value);
  10338. Py_XDECREF(local_tb);
  10339. return -1;
  10340. }
  10341. /* Import */
  10342. static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
  10343. PyObject *empty_list = 0;
  10344. PyObject *module = 0;
  10345. PyObject *global_dict = 0;
  10346. PyObject *empty_dict = 0;
  10347. PyObject *list;
  10348. #if PY_MAJOR_VERSION < 3
  10349. PyObject *py_import;
  10350. py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import);
  10351. if (!py_import)
  10352. goto bad;
  10353. #endif
  10354. if (from_list)
  10355. list = from_list;
  10356. else {
  10357. empty_list = PyList_New(0);
  10358. if (!empty_list)
  10359. goto bad;
  10360. list = empty_list;
  10361. }
  10362. global_dict = PyModule_GetDict(__pyx_m);
  10363. if (!global_dict)
  10364. goto bad;
  10365. empty_dict = PyDict_New();
  10366. if (!empty_dict)
  10367. goto bad;
  10368. {
  10369. #if PY_MAJOR_VERSION >= 3
  10370. if (level == -1) {
  10371. if (strchr(__Pyx_MODULE_NAME, '.')) {
  10372. module = PyImport_ImportModuleLevelObject(
  10373. name, global_dict, empty_dict, list, 1);
  10374. if (!module) {
  10375. if (!PyErr_ExceptionMatches(PyExc_ImportError))
  10376. goto bad;
  10377. PyErr_Clear();
  10378. }
  10379. }
  10380. level = 0;
  10381. }
  10382. #endif
  10383. if (!module) {
  10384. #if PY_MAJOR_VERSION < 3
  10385. PyObject *py_level = PyInt_FromLong(level);
  10386. if (!py_level)
  10387. goto bad;
  10388. module = PyObject_CallFunctionObjArgs(py_import,
  10389. name, global_dict, empty_dict, list, py_level, NULL);
  10390. Py_DECREF(py_level);
  10391. #else
  10392. module = PyImport_ImportModuleLevelObject(
  10393. name, global_dict, empty_dict, list, level);
  10394. #endif
  10395. }
  10396. }
  10397. bad:
  10398. #if PY_MAJOR_VERSION < 3
  10399. Py_XDECREF(py_import);
  10400. #endif
  10401. Py_XDECREF(empty_list);
  10402. Py_XDECREF(empty_dict);
  10403. return module;
  10404. }
  10405. /* CLineInTraceback */
  10406. #ifndef CYTHON_CLINE_IN_TRACEBACK
  10407. static int __Pyx_CLineForTraceback(CYTHON_UNUSED PyThreadState *tstate, int c_line) {
  10408. PyObject *use_cline;
  10409. PyObject *ptype, *pvalue, *ptraceback;
  10410. #if CYTHON_COMPILING_IN_CPYTHON
  10411. PyObject **cython_runtime_dict;
  10412. #endif
  10413. __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback);
  10414. #if CYTHON_COMPILING_IN_CPYTHON
  10415. cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime);
  10416. if (likely(cython_runtime_dict)) {
  10417. use_cline = PyDict_GetItem(*cython_runtime_dict, __pyx_n_s_cline_in_traceback);
  10418. } else
  10419. #endif
  10420. {
  10421. PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback);
  10422. if (use_cline_obj) {
  10423. use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True;
  10424. Py_DECREF(use_cline_obj);
  10425. } else {
  10426. PyErr_Clear();
  10427. use_cline = NULL;
  10428. }
  10429. }
  10430. if (!use_cline) {
  10431. c_line = 0;
  10432. PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False);
  10433. }
  10434. else if (PyObject_Not(use_cline) != 0) {
  10435. c_line = 0;
  10436. }
  10437. __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback);
  10438. return c_line;
  10439. }
  10440. #endif
  10441. /* CodeObjectCache */
  10442. static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) {
  10443. int start = 0, mid = 0, end = count - 1;
  10444. if (end >= 0 && code_line > entries[end].code_line) {
  10445. return count;
  10446. }
  10447. while (start < end) {
  10448. mid = start + (end - start) / 2;
  10449. if (code_line < entries[mid].code_line) {
  10450. end = mid;
  10451. } else if (code_line > entries[mid].code_line) {
  10452. start = mid + 1;
  10453. } else {
  10454. return mid;
  10455. }
  10456. }
  10457. if (code_line <= entries[mid].code_line) {
  10458. return mid;
  10459. } else {
  10460. return mid + 1;
  10461. }
  10462. }
  10463. static PyCodeObject *__pyx_find_code_object(int code_line) {
  10464. PyCodeObject* code_object;
  10465. int pos;
  10466. if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) {
  10467. return NULL;
  10468. }
  10469. pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line);
  10470. if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) {
  10471. return NULL;
  10472. }
  10473. code_object = __pyx_code_cache.entries[pos].code_object;
  10474. Py_INCREF(code_object);
  10475. return code_object;
  10476. }
  10477. static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) {
  10478. int pos, i;
  10479. __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries;
  10480. if (unlikely(!code_line)) {
  10481. return;
  10482. }
  10483. if (unlikely(!entries)) {
  10484. entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry));
  10485. if (likely(entries)) {
  10486. __pyx_code_cache.entries = entries;
  10487. __pyx_code_cache.max_count = 64;
  10488. __pyx_code_cache.count = 1;
  10489. entries[0].code_line = code_line;
  10490. entries[0].code_object = code_object;
  10491. Py_INCREF(code_object);
  10492. }
  10493. return;
  10494. }
  10495. pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line);
  10496. if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) {
  10497. PyCodeObject* tmp = entries[pos].code_object;
  10498. entries[pos].code_object = code_object;
  10499. Py_DECREF(tmp);
  10500. return;
  10501. }
  10502. if (__pyx_code_cache.count == __pyx_code_cache.max_count) {
  10503. int new_max = __pyx_code_cache.max_count + 64;
  10504. entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc(
  10505. __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry));
  10506. if (unlikely(!entries)) {
  10507. return;
  10508. }
  10509. __pyx_code_cache.entries = entries;
  10510. __pyx_code_cache.max_count = new_max;
  10511. }
  10512. for (i=__pyx_code_cache.count; i>pos; i--) {
  10513. entries[i] = entries[i-1];
  10514. }
  10515. entries[pos].code_line = code_line;
  10516. entries[pos].code_object = code_object;
  10517. __pyx_code_cache.count++;
  10518. Py_INCREF(code_object);
  10519. }
  10520. /* AddTraceback */
  10521. #include "compile.h"
  10522. #include "frameobject.h"
  10523. #include "traceback.h"
  10524. static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
  10525. const char *funcname, int c_line,
  10526. int py_line, const char *filename) {
  10527. PyCodeObject *py_code = 0;
  10528. PyObject *py_srcfile = 0;
  10529. PyObject *py_funcname = 0;
  10530. #if PY_MAJOR_VERSION < 3
  10531. py_srcfile = PyString_FromString(filename);
  10532. #else
  10533. py_srcfile = PyUnicode_FromString(filename);
  10534. #endif
  10535. if (!py_srcfile) goto bad;
  10536. if (c_line) {
  10537. #if PY_MAJOR_VERSION < 3
  10538. py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line);
  10539. #else
  10540. py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line);
  10541. #endif
  10542. }
  10543. else {
  10544. #if PY_MAJOR_VERSION < 3
  10545. py_funcname = PyString_FromString(funcname);
  10546. #else
  10547. py_funcname = PyUnicode_FromString(funcname);
  10548. #endif
  10549. }
  10550. if (!py_funcname) goto bad;
  10551. py_code = __Pyx_PyCode_New(
  10552. 0,
  10553. 0,
  10554. 0,
  10555. 0,
  10556. 0,
  10557. __pyx_empty_bytes, /*PyObject *code,*/
  10558. __pyx_empty_tuple, /*PyObject *consts,*/
  10559. __pyx_empty_tuple, /*PyObject *names,*/
  10560. __pyx_empty_tuple, /*PyObject *varnames,*/
  10561. __pyx_empty_tuple, /*PyObject *freevars,*/
  10562. __pyx_empty_tuple, /*PyObject *cellvars,*/
  10563. py_srcfile, /*PyObject *filename,*/
  10564. py_funcname, /*PyObject *name,*/
  10565. py_line,
  10566. __pyx_empty_bytes /*PyObject *lnotab*/
  10567. );
  10568. Py_DECREF(py_srcfile);
  10569. Py_DECREF(py_funcname);
  10570. return py_code;
  10571. bad:
  10572. Py_XDECREF(py_srcfile);
  10573. Py_XDECREF(py_funcname);
  10574. return NULL;
  10575. }
  10576. static void __Pyx_AddTraceback(const char *funcname, int c_line,
  10577. int py_line, const char *filename) {
  10578. PyCodeObject *py_code = 0;
  10579. PyFrameObject *py_frame = 0;
  10580. PyThreadState *tstate = __Pyx_PyThreadState_Current;
  10581. if (c_line) {
  10582. c_line = __Pyx_CLineForTraceback(tstate, c_line);
  10583. }
  10584. py_code = __pyx_find_code_object(c_line ? -c_line : py_line);
  10585. if (!py_code) {
  10586. py_code = __Pyx_CreateCodeObjectForTraceback(
  10587. funcname, c_line, py_line, filename);
  10588. if (!py_code) goto bad;
  10589. __pyx_insert_code_object(c_line ? -c_line : py_line, py_code);
  10590. }
  10591. py_frame = PyFrame_New(
  10592. tstate, /*PyThreadState *tstate,*/
  10593. py_code, /*PyCodeObject *code,*/
  10594. __pyx_d, /*PyObject *globals,*/
  10595. 0 /*PyObject *locals*/
  10596. );
  10597. if (!py_frame) goto bad;
  10598. __Pyx_PyFrame_SetLineNumber(py_frame, py_line);
  10599. PyTraceBack_Here(py_frame);
  10600. bad:
  10601. Py_XDECREF(py_code);
  10602. Py_XDECREF(py_frame);
  10603. }
  10604. #if PY_MAJOR_VERSION < 3
  10605. static int __Pyx_GetBuffer(PyObject *obj, Py_buffer *view, int flags) {
  10606. if (PyObject_CheckBuffer(obj)) return PyObject_GetBuffer(obj, view, flags);
  10607. if (__Pyx_TypeCheck(obj, __pyx_ptype_5numpy_ndarray)) return __pyx_pw_5numpy_7ndarray_1__getbuffer__(obj, view, flags);
  10608. PyErr_Format(PyExc_TypeError, "'%.200s' does not have the buffer interface", Py_TYPE(obj)->tp_name);
  10609. return -1;
  10610. }
  10611. static void __Pyx_ReleaseBuffer(Py_buffer *view) {
  10612. PyObject *obj = view->obj;
  10613. if (!obj) return;
  10614. if (PyObject_CheckBuffer(obj)) {
  10615. PyBuffer_Release(view);
  10616. return;
  10617. }
  10618. if ((0)) {}
  10619. else if (__Pyx_TypeCheck(obj, __pyx_ptype_5numpy_ndarray)) __pyx_pw_5numpy_7ndarray_3__releasebuffer__(obj, view);
  10620. view->obj = NULL;
  10621. Py_DECREF(obj);
  10622. }
  10623. #endif
  10624. /* CIntFromPyVerify */
  10625. #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\
  10626. __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0)
  10627. #define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\
  10628. __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1)
  10629. #define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\
  10630. {\
  10631. func_type value = func_value;\
  10632. if (sizeof(target_type) < sizeof(func_type)) {\
  10633. if (unlikely(value != (func_type) (target_type) value)) {\
  10634. func_type zero = 0;\
  10635. if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\
  10636. return (target_type) -1;\
  10637. if (is_unsigned && unlikely(value < zero))\
  10638. goto raise_neg_overflow;\
  10639. else\
  10640. goto raise_overflow;\
  10641. }\
  10642. }\
  10643. return (target_type) value;\
  10644. }
  10645. /* CIntToPy */
  10646. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_Py_intptr_t(Py_intptr_t value) {
  10647. const Py_intptr_t neg_one = (Py_intptr_t) -1, const_zero = (Py_intptr_t) 0;
  10648. const int is_unsigned = neg_one > const_zero;
  10649. if (is_unsigned) {
  10650. if (sizeof(Py_intptr_t) < sizeof(long)) {
  10651. return PyInt_FromLong((long) value);
  10652. } else if (sizeof(Py_intptr_t) <= sizeof(unsigned long)) {
  10653. return PyLong_FromUnsignedLong((unsigned long) value);
  10654. #ifdef HAVE_LONG_LONG
  10655. } else if (sizeof(Py_intptr_t) <= sizeof(unsigned PY_LONG_LONG)) {
  10656. return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
  10657. #endif
  10658. }
  10659. } else {
  10660. if (sizeof(Py_intptr_t) <= sizeof(long)) {
  10661. return PyInt_FromLong((long) value);
  10662. #ifdef HAVE_LONG_LONG
  10663. } else if (sizeof(Py_intptr_t) <= sizeof(PY_LONG_LONG)) {
  10664. return PyLong_FromLongLong((PY_LONG_LONG) value);
  10665. #endif
  10666. }
  10667. }
  10668. {
  10669. int one = 1; int little = (int)*(unsigned char *)&one;
  10670. unsigned char *bytes = (unsigned char *)&value;
  10671. return _PyLong_FromByteArray(bytes, sizeof(Py_intptr_t),
  10672. little, !is_unsigned);
  10673. }
  10674. }
  10675. /* CIntToPy */
  10676. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_npy_long(npy_long value) {
  10677. const npy_long neg_one = (npy_long) -1, const_zero = (npy_long) 0;
  10678. const int is_unsigned = neg_one > const_zero;
  10679. if (is_unsigned) {
  10680. if (sizeof(npy_long) < sizeof(long)) {
  10681. return PyInt_FromLong((long) value);
  10682. } else if (sizeof(npy_long) <= sizeof(unsigned long)) {
  10683. return PyLong_FromUnsignedLong((unsigned long) value);
  10684. #ifdef HAVE_LONG_LONG
  10685. } else if (sizeof(npy_long) <= sizeof(unsigned PY_LONG_LONG)) {
  10686. return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
  10687. #endif
  10688. }
  10689. } else {
  10690. if (sizeof(npy_long) <= sizeof(long)) {
  10691. return PyInt_FromLong((long) value);
  10692. #ifdef HAVE_LONG_LONG
  10693. } else if (sizeof(npy_long) <= sizeof(PY_LONG_LONG)) {
  10694. return PyLong_FromLongLong((PY_LONG_LONG) value);
  10695. #endif
  10696. }
  10697. }
  10698. {
  10699. int one = 1; int little = (int)*(unsigned char *)&one;
  10700. unsigned char *bytes = (unsigned char *)&value;
  10701. return _PyLong_FromByteArray(bytes, sizeof(npy_long),
  10702. little, !is_unsigned);
  10703. }
  10704. }
  10705. /* FromPy */
  10706. static __pyx_t_double_complex __Pyx_PyComplex_As___pyx_t_double_complex(PyObject* o) {
  10707. Py_complex cval;
  10708. #if !CYTHON_COMPILING_IN_PYPY
  10709. if (PyComplex_CheckExact(o))
  10710. cval = ((PyComplexObject *)o)->cval;
  10711. else
  10712. #endif
  10713. cval = PyComplex_AsCComplex(o);
  10714. return __pyx_t_double_complex_from_parts(
  10715. (double)cval.real,
  10716. (double)cval.imag);
  10717. }
  10718. /* Declarations */
  10719. #if CYTHON_CCOMPLEX
  10720. #ifdef __cplusplus
  10721. static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
  10722. return ::std::complex< double >(x, y);
  10723. }
  10724. #else
  10725. static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
  10726. return x + y*(__pyx_t_double_complex)_Complex_I;
  10727. }
  10728. #endif
  10729. #else
  10730. static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {
  10731. __pyx_t_double_complex z;
  10732. z.real = x;
  10733. z.imag = y;
  10734. return z;
  10735. }
  10736. #endif
  10737. /* Arithmetic */
  10738. #if CYTHON_CCOMPLEX
  10739. #else
  10740. static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10741. return (a.real == b.real) && (a.imag == b.imag);
  10742. }
  10743. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10744. __pyx_t_double_complex z;
  10745. z.real = a.real + b.real;
  10746. z.imag = a.imag + b.imag;
  10747. return z;
  10748. }
  10749. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10750. __pyx_t_double_complex z;
  10751. z.real = a.real - b.real;
  10752. z.imag = a.imag - b.imag;
  10753. return z;
  10754. }
  10755. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10756. __pyx_t_double_complex z;
  10757. z.real = a.real * b.real - a.imag * b.imag;
  10758. z.imag = a.real * b.imag + a.imag * b.real;
  10759. return z;
  10760. }
  10761. #if 1
  10762. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10763. if (b.imag == 0) {
  10764. return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real);
  10765. } else if (fabs(b.real) >= fabs(b.imag)) {
  10766. if (b.real == 0 && b.imag == 0) {
  10767. return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.imag);
  10768. } else {
  10769. double r = b.imag / b.real;
  10770. double s = 1.0 / (b.real + b.imag * r);
  10771. return __pyx_t_double_complex_from_parts(
  10772. (a.real + a.imag * r) * s, (a.imag - a.real * r) * s);
  10773. }
  10774. } else {
  10775. double r = b.real / b.imag;
  10776. double s = 1.0 / (b.imag + b.real * r);
  10777. return __pyx_t_double_complex_from_parts(
  10778. (a.real * r + a.imag) * s, (a.imag * r - a.real) * s);
  10779. }
  10780. }
  10781. #else
  10782. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10783. if (b.imag == 0) {
  10784. return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real);
  10785. } else {
  10786. double denom = b.real * b.real + b.imag * b.imag;
  10787. return __pyx_t_double_complex_from_parts(
  10788. (a.real * b.real + a.imag * b.imag) / denom,
  10789. (a.imag * b.real - a.real * b.imag) / denom);
  10790. }
  10791. }
  10792. #endif
  10793. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex a) {
  10794. __pyx_t_double_complex z;
  10795. z.real = -a.real;
  10796. z.imag = -a.imag;
  10797. return z;
  10798. }
  10799. static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex a) {
  10800. return (a.real == 0) && (a.imag == 0);
  10801. }
  10802. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex a) {
  10803. __pyx_t_double_complex z;
  10804. z.real = a.real;
  10805. z.imag = -a.imag;
  10806. return z;
  10807. }
  10808. #if 1
  10809. static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex z) {
  10810. #if !defined(HAVE_HYPOT) || defined(_MSC_VER)
  10811. return sqrt(z.real*z.real + z.imag*z.imag);
  10812. #else
  10813. return hypot(z.real, z.imag);
  10814. #endif
  10815. }
  10816. static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {
  10817. __pyx_t_double_complex z;
  10818. double r, lnr, theta, z_r, z_theta;
  10819. if (b.imag == 0 && b.real == (int)b.real) {
  10820. if (b.real < 0) {
  10821. double denom = a.real * a.real + a.imag * a.imag;
  10822. a.real = a.real / denom;
  10823. a.imag = -a.imag / denom;
  10824. b.real = -b.real;
  10825. }
  10826. switch ((int)b.real) {
  10827. case 0:
  10828. z.real = 1;
  10829. z.imag = 0;
  10830. return z;
  10831. case 1:
  10832. return a;
  10833. case 2:
  10834. z = __Pyx_c_prod_double(a, a);
  10835. return __Pyx_c_prod_double(a, a);
  10836. case 3:
  10837. z = __Pyx_c_prod_double(a, a);
  10838. return __Pyx_c_prod_double(z, a);
  10839. case 4:
  10840. z = __Pyx_c_prod_double(a, a);
  10841. return __Pyx_c_prod_double(z, z);
  10842. }
  10843. }
  10844. if (a.imag == 0) {
  10845. if (a.real == 0) {
  10846. return a;
  10847. } else if (b.imag == 0) {
  10848. z.real = pow(a.real, b.real);
  10849. z.imag = 0;
  10850. return z;
  10851. } else if (a.real > 0) {
  10852. r = a.real;
  10853. theta = 0;
  10854. } else {
  10855. r = -a.real;
  10856. theta = atan2(0, -1);
  10857. }
  10858. } else {
  10859. r = __Pyx_c_abs_double(a);
  10860. theta = atan2(a.imag, a.real);
  10861. }
  10862. lnr = log(r);
  10863. z_r = exp(lnr * b.real - theta * b.imag);
  10864. z_theta = theta * b.real + lnr * b.imag;
  10865. z.real = z_r * cos(z_theta);
  10866. z.imag = z_r * sin(z_theta);
  10867. return z;
  10868. }
  10869. #endif
  10870. #endif
  10871. /* Declarations */
  10872. #if CYTHON_CCOMPLEX
  10873. #ifdef __cplusplus
  10874. static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
  10875. return ::std::complex< float >(x, y);
  10876. }
  10877. #else
  10878. static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
  10879. return x + y*(__pyx_t_float_complex)_Complex_I;
  10880. }
  10881. #endif
  10882. #else
  10883. static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {
  10884. __pyx_t_float_complex z;
  10885. z.real = x;
  10886. z.imag = y;
  10887. return z;
  10888. }
  10889. #endif
  10890. /* Arithmetic */
  10891. #if CYTHON_CCOMPLEX
  10892. #else
  10893. static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10894. return (a.real == b.real) && (a.imag == b.imag);
  10895. }
  10896. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10897. __pyx_t_float_complex z;
  10898. z.real = a.real + b.real;
  10899. z.imag = a.imag + b.imag;
  10900. return z;
  10901. }
  10902. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10903. __pyx_t_float_complex z;
  10904. z.real = a.real - b.real;
  10905. z.imag = a.imag - b.imag;
  10906. return z;
  10907. }
  10908. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10909. __pyx_t_float_complex z;
  10910. z.real = a.real * b.real - a.imag * b.imag;
  10911. z.imag = a.real * b.imag + a.imag * b.real;
  10912. return z;
  10913. }
  10914. #if 1
  10915. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10916. if (b.imag == 0) {
  10917. return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real);
  10918. } else if (fabsf(b.real) >= fabsf(b.imag)) {
  10919. if (b.real == 0 && b.imag == 0) {
  10920. return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.imag);
  10921. } else {
  10922. float r = b.imag / b.real;
  10923. float s = 1.0 / (b.real + b.imag * r);
  10924. return __pyx_t_float_complex_from_parts(
  10925. (a.real + a.imag * r) * s, (a.imag - a.real * r) * s);
  10926. }
  10927. } else {
  10928. float r = b.real / b.imag;
  10929. float s = 1.0 / (b.imag + b.real * r);
  10930. return __pyx_t_float_complex_from_parts(
  10931. (a.real * r + a.imag) * s, (a.imag * r - a.real) * s);
  10932. }
  10933. }
  10934. #else
  10935. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10936. if (b.imag == 0) {
  10937. return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real);
  10938. } else {
  10939. float denom = b.real * b.real + b.imag * b.imag;
  10940. return __pyx_t_float_complex_from_parts(
  10941. (a.real * b.real + a.imag * b.imag) / denom,
  10942. (a.imag * b.real - a.real * b.imag) / denom);
  10943. }
  10944. }
  10945. #endif
  10946. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex a) {
  10947. __pyx_t_float_complex z;
  10948. z.real = -a.real;
  10949. z.imag = -a.imag;
  10950. return z;
  10951. }
  10952. static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex a) {
  10953. return (a.real == 0) && (a.imag == 0);
  10954. }
  10955. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex a) {
  10956. __pyx_t_float_complex z;
  10957. z.real = a.real;
  10958. z.imag = -a.imag;
  10959. return z;
  10960. }
  10961. #if 1
  10962. static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex z) {
  10963. #if !defined(HAVE_HYPOT) || defined(_MSC_VER)
  10964. return sqrtf(z.real*z.real + z.imag*z.imag);
  10965. #else
  10966. return hypotf(z.real, z.imag);
  10967. #endif
  10968. }
  10969. static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {
  10970. __pyx_t_float_complex z;
  10971. float r, lnr, theta, z_r, z_theta;
  10972. if (b.imag == 0 && b.real == (int)b.real) {
  10973. if (b.real < 0) {
  10974. float denom = a.real * a.real + a.imag * a.imag;
  10975. a.real = a.real / denom;
  10976. a.imag = -a.imag / denom;
  10977. b.real = -b.real;
  10978. }
  10979. switch ((int)b.real) {
  10980. case 0:
  10981. z.real = 1;
  10982. z.imag = 0;
  10983. return z;
  10984. case 1:
  10985. return a;
  10986. case 2:
  10987. z = __Pyx_c_prod_float(a, a);
  10988. return __Pyx_c_prod_float(a, a);
  10989. case 3:
  10990. z = __Pyx_c_prod_float(a, a);
  10991. return __Pyx_c_prod_float(z, a);
  10992. case 4:
  10993. z = __Pyx_c_prod_float(a, a);
  10994. return __Pyx_c_prod_float(z, z);
  10995. }
  10996. }
  10997. if (a.imag == 0) {
  10998. if (a.real == 0) {
  10999. return a;
  11000. } else if (b.imag == 0) {
  11001. z.real = powf(a.real, b.real);
  11002. z.imag = 0;
  11003. return z;
  11004. } else if (a.real > 0) {
  11005. r = a.real;
  11006. theta = 0;
  11007. } else {
  11008. r = -a.real;
  11009. theta = atan2f(0, -1);
  11010. }
  11011. } else {
  11012. r = __Pyx_c_abs_float(a);
  11013. theta = atan2f(a.imag, a.real);
  11014. }
  11015. lnr = logf(r);
  11016. z_r = expf(lnr * b.real - theta * b.imag);
  11017. z_theta = theta * b.real + lnr * b.imag;
  11018. z.real = z_r * cosf(z_theta);
  11019. z.imag = z_r * sinf(z_theta);
  11020. return z;
  11021. }
  11022. #endif
  11023. #endif
  11024. /* CIntToPy */
  11025. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) {
  11026. const int neg_one = (int) -1, const_zero = (int) 0;
  11027. const int is_unsigned = neg_one > const_zero;
  11028. if (is_unsigned) {
  11029. if (sizeof(int) < sizeof(long)) {
  11030. return PyInt_FromLong((long) value);
  11031. } else if (sizeof(int) <= sizeof(unsigned long)) {
  11032. return PyLong_FromUnsignedLong((unsigned long) value);
  11033. #ifdef HAVE_LONG_LONG
  11034. } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) {
  11035. return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
  11036. #endif
  11037. }
  11038. } else {
  11039. if (sizeof(int) <= sizeof(long)) {
  11040. return PyInt_FromLong((long) value);
  11041. #ifdef HAVE_LONG_LONG
  11042. } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) {
  11043. return PyLong_FromLongLong((PY_LONG_LONG) value);
  11044. #endif
  11045. }
  11046. }
  11047. {
  11048. int one = 1; int little = (int)*(unsigned char *)&one;
  11049. unsigned char *bytes = (unsigned char *)&value;
  11050. return _PyLong_FromByteArray(bytes, sizeof(int),
  11051. little, !is_unsigned);
  11052. }
  11053. }
  11054. /* CIntToPy */
  11055. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value) {
  11056. const enum NPY_TYPES neg_one = (enum NPY_TYPES) -1, const_zero = (enum NPY_TYPES) 0;
  11057. const int is_unsigned = neg_one > const_zero;
  11058. if (is_unsigned) {
  11059. if (sizeof(enum NPY_TYPES) < sizeof(long)) {
  11060. return PyInt_FromLong((long) value);
  11061. } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned long)) {
  11062. return PyLong_FromUnsignedLong((unsigned long) value);
  11063. #ifdef HAVE_LONG_LONG
  11064. } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned PY_LONG_LONG)) {
  11065. return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
  11066. #endif
  11067. }
  11068. } else {
  11069. if (sizeof(enum NPY_TYPES) <= sizeof(long)) {
  11070. return PyInt_FromLong((long) value);
  11071. #ifdef HAVE_LONG_LONG
  11072. } else if (sizeof(enum NPY_TYPES) <= sizeof(PY_LONG_LONG)) {
  11073. return PyLong_FromLongLong((PY_LONG_LONG) value);
  11074. #endif
  11075. }
  11076. }
  11077. {
  11078. int one = 1; int little = (int)*(unsigned char *)&one;
  11079. unsigned char *bytes = (unsigned char *)&value;
  11080. return _PyLong_FromByteArray(bytes, sizeof(enum NPY_TYPES),
  11081. little, !is_unsigned);
  11082. }
  11083. }
  11084. /* CIntFromPy */
  11085. static CYTHON_INLINE npy_long __Pyx_PyInt_As_npy_long(PyObject *x) {
  11086. const npy_long neg_one = (npy_long) -1, const_zero = (npy_long) 0;
  11087. const int is_unsigned = neg_one > const_zero;
  11088. #if PY_MAJOR_VERSION < 3
  11089. if (likely(PyInt_Check(x))) {
  11090. if (sizeof(npy_long) < sizeof(long)) {
  11091. __PYX_VERIFY_RETURN_INT(npy_long, long, PyInt_AS_LONG(x))
  11092. } else {
  11093. long val = PyInt_AS_LONG(x);
  11094. if (is_unsigned && unlikely(val < 0)) {
  11095. goto raise_neg_overflow;
  11096. }
  11097. return (npy_long) val;
  11098. }
  11099. } else
  11100. #endif
  11101. if (likely(PyLong_Check(x))) {
  11102. if (is_unsigned) {
  11103. #if CYTHON_USE_PYLONG_INTERNALS
  11104. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11105. switch (Py_SIZE(x)) {
  11106. case 0: return (npy_long) 0;
  11107. case 1: __PYX_VERIFY_RETURN_INT(npy_long, digit, digits[0])
  11108. case 2:
  11109. if (8 * sizeof(npy_long) > 1 * PyLong_SHIFT) {
  11110. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11111. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11112. } else if (8 * sizeof(npy_long) >= 2 * PyLong_SHIFT) {
  11113. return (npy_long) (((((npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0]));
  11114. }
  11115. }
  11116. break;
  11117. case 3:
  11118. if (8 * sizeof(npy_long) > 2 * PyLong_SHIFT) {
  11119. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11120. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11121. } else if (8 * sizeof(npy_long) >= 3 * PyLong_SHIFT) {
  11122. return (npy_long) (((((((npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0]));
  11123. }
  11124. }
  11125. break;
  11126. case 4:
  11127. if (8 * sizeof(npy_long) > 3 * PyLong_SHIFT) {
  11128. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11129. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11130. } else if (8 * sizeof(npy_long) >= 4 * PyLong_SHIFT) {
  11131. return (npy_long) (((((((((npy_long)digits[3]) << PyLong_SHIFT) | (npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0]));
  11132. }
  11133. }
  11134. break;
  11135. }
  11136. #endif
  11137. #if CYTHON_COMPILING_IN_CPYTHON
  11138. if (unlikely(Py_SIZE(x) < 0)) {
  11139. goto raise_neg_overflow;
  11140. }
  11141. #else
  11142. {
  11143. int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
  11144. if (unlikely(result < 0))
  11145. return (npy_long) -1;
  11146. if (unlikely(result == 1))
  11147. goto raise_neg_overflow;
  11148. }
  11149. #endif
  11150. if (sizeof(npy_long) <= sizeof(unsigned long)) {
  11151. __PYX_VERIFY_RETURN_INT_EXC(npy_long, unsigned long, PyLong_AsUnsignedLong(x))
  11152. #ifdef HAVE_LONG_LONG
  11153. } else if (sizeof(npy_long) <= sizeof(unsigned PY_LONG_LONG)) {
  11154. __PYX_VERIFY_RETURN_INT_EXC(npy_long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
  11155. #endif
  11156. }
  11157. } else {
  11158. #if CYTHON_USE_PYLONG_INTERNALS
  11159. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11160. switch (Py_SIZE(x)) {
  11161. case 0: return (npy_long) 0;
  11162. case -1: __PYX_VERIFY_RETURN_INT(npy_long, sdigit, (sdigit) (-(sdigit)digits[0]))
  11163. case 1: __PYX_VERIFY_RETURN_INT(npy_long, digit, +digits[0])
  11164. case -2:
  11165. if (8 * sizeof(npy_long) - 1 > 1 * PyLong_SHIFT) {
  11166. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11167. __PYX_VERIFY_RETURN_INT(npy_long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11168. } else if (8 * sizeof(npy_long) - 1 > 2 * PyLong_SHIFT) {
  11169. return (npy_long) (((npy_long)-1)*(((((npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11170. }
  11171. }
  11172. break;
  11173. case 2:
  11174. if (8 * sizeof(npy_long) > 1 * PyLong_SHIFT) {
  11175. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11176. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11177. } else if (8 * sizeof(npy_long) - 1 > 2 * PyLong_SHIFT) {
  11178. return (npy_long) ((((((npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11179. }
  11180. }
  11181. break;
  11182. case -3:
  11183. if (8 * sizeof(npy_long) - 1 > 2 * PyLong_SHIFT) {
  11184. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11185. __PYX_VERIFY_RETURN_INT(npy_long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11186. } else if (8 * sizeof(npy_long) - 1 > 3 * PyLong_SHIFT) {
  11187. return (npy_long) (((npy_long)-1)*(((((((npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11188. }
  11189. }
  11190. break;
  11191. case 3:
  11192. if (8 * sizeof(npy_long) > 2 * PyLong_SHIFT) {
  11193. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11194. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11195. } else if (8 * sizeof(npy_long) - 1 > 3 * PyLong_SHIFT) {
  11196. return (npy_long) ((((((((npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11197. }
  11198. }
  11199. break;
  11200. case -4:
  11201. if (8 * sizeof(npy_long) - 1 > 3 * PyLong_SHIFT) {
  11202. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11203. __PYX_VERIFY_RETURN_INT(npy_long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11204. } else if (8 * sizeof(npy_long) - 1 > 4 * PyLong_SHIFT) {
  11205. return (npy_long) (((npy_long)-1)*(((((((((npy_long)digits[3]) << PyLong_SHIFT) | (npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11206. }
  11207. }
  11208. break;
  11209. case 4:
  11210. if (8 * sizeof(npy_long) > 3 * PyLong_SHIFT) {
  11211. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11212. __PYX_VERIFY_RETURN_INT(npy_long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11213. } else if (8 * sizeof(npy_long) - 1 > 4 * PyLong_SHIFT) {
  11214. return (npy_long) ((((((((((npy_long)digits[3]) << PyLong_SHIFT) | (npy_long)digits[2]) << PyLong_SHIFT) | (npy_long)digits[1]) << PyLong_SHIFT) | (npy_long)digits[0])));
  11215. }
  11216. }
  11217. break;
  11218. }
  11219. #endif
  11220. if (sizeof(npy_long) <= sizeof(long)) {
  11221. __PYX_VERIFY_RETURN_INT_EXC(npy_long, long, PyLong_AsLong(x))
  11222. #ifdef HAVE_LONG_LONG
  11223. } else if (sizeof(npy_long) <= sizeof(PY_LONG_LONG)) {
  11224. __PYX_VERIFY_RETURN_INT_EXC(npy_long, PY_LONG_LONG, PyLong_AsLongLong(x))
  11225. #endif
  11226. }
  11227. }
  11228. {
  11229. #if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
  11230. PyErr_SetString(PyExc_RuntimeError,
  11231. "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
  11232. #else
  11233. npy_long val;
  11234. PyObject *v = __Pyx_PyNumber_IntOrLong(x);
  11235. #if PY_MAJOR_VERSION < 3
  11236. if (likely(v) && !PyLong_Check(v)) {
  11237. PyObject *tmp = v;
  11238. v = PyNumber_Long(tmp);
  11239. Py_DECREF(tmp);
  11240. }
  11241. #endif
  11242. if (likely(v)) {
  11243. int one = 1; int is_little = (int)*(unsigned char *)&one;
  11244. unsigned char *bytes = (unsigned char *)&val;
  11245. int ret = _PyLong_AsByteArray((PyLongObject *)v,
  11246. bytes, sizeof(val),
  11247. is_little, !is_unsigned);
  11248. Py_DECREF(v);
  11249. if (likely(!ret))
  11250. return val;
  11251. }
  11252. #endif
  11253. return (npy_long) -1;
  11254. }
  11255. } else {
  11256. npy_long val;
  11257. PyObject *tmp = __Pyx_PyNumber_IntOrLong(x);
  11258. if (!tmp) return (npy_long) -1;
  11259. val = __Pyx_PyInt_As_npy_long(tmp);
  11260. Py_DECREF(tmp);
  11261. return val;
  11262. }
  11263. raise_overflow:
  11264. PyErr_SetString(PyExc_OverflowError,
  11265. "value too large to convert to npy_long");
  11266. return (npy_long) -1;
  11267. raise_neg_overflow:
  11268. PyErr_SetString(PyExc_OverflowError,
  11269. "can't convert negative value to npy_long");
  11270. return (npy_long) -1;
  11271. }
  11272. /* CIntFromPy */
  11273. static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) {
  11274. const int neg_one = (int) -1, const_zero = (int) 0;
  11275. const int is_unsigned = neg_one > const_zero;
  11276. #if PY_MAJOR_VERSION < 3
  11277. if (likely(PyInt_Check(x))) {
  11278. if (sizeof(int) < sizeof(long)) {
  11279. __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x))
  11280. } else {
  11281. long val = PyInt_AS_LONG(x);
  11282. if (is_unsigned && unlikely(val < 0)) {
  11283. goto raise_neg_overflow;
  11284. }
  11285. return (int) val;
  11286. }
  11287. } else
  11288. #endif
  11289. if (likely(PyLong_Check(x))) {
  11290. if (is_unsigned) {
  11291. #if CYTHON_USE_PYLONG_INTERNALS
  11292. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11293. switch (Py_SIZE(x)) {
  11294. case 0: return (int) 0;
  11295. case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0])
  11296. case 2:
  11297. if (8 * sizeof(int) > 1 * PyLong_SHIFT) {
  11298. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11299. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11300. } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) {
  11301. return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
  11302. }
  11303. }
  11304. break;
  11305. case 3:
  11306. if (8 * sizeof(int) > 2 * PyLong_SHIFT) {
  11307. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11308. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11309. } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) {
  11310. return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
  11311. }
  11312. }
  11313. break;
  11314. case 4:
  11315. if (8 * sizeof(int) > 3 * PyLong_SHIFT) {
  11316. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11317. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11318. } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) {
  11319. return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]));
  11320. }
  11321. }
  11322. break;
  11323. }
  11324. #endif
  11325. #if CYTHON_COMPILING_IN_CPYTHON
  11326. if (unlikely(Py_SIZE(x) < 0)) {
  11327. goto raise_neg_overflow;
  11328. }
  11329. #else
  11330. {
  11331. int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
  11332. if (unlikely(result < 0))
  11333. return (int) -1;
  11334. if (unlikely(result == 1))
  11335. goto raise_neg_overflow;
  11336. }
  11337. #endif
  11338. if (sizeof(int) <= sizeof(unsigned long)) {
  11339. __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x))
  11340. #ifdef HAVE_LONG_LONG
  11341. } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) {
  11342. __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
  11343. #endif
  11344. }
  11345. } else {
  11346. #if CYTHON_USE_PYLONG_INTERNALS
  11347. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11348. switch (Py_SIZE(x)) {
  11349. case 0: return (int) 0;
  11350. case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0]))
  11351. case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0])
  11352. case -2:
  11353. if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) {
  11354. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11355. __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11356. } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
  11357. return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11358. }
  11359. }
  11360. break;
  11361. case 2:
  11362. if (8 * sizeof(int) > 1 * PyLong_SHIFT) {
  11363. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11364. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11365. } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
  11366. return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11367. }
  11368. }
  11369. break;
  11370. case -3:
  11371. if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) {
  11372. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11373. __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11374. } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
  11375. return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11376. }
  11377. }
  11378. break;
  11379. case 3:
  11380. if (8 * sizeof(int) > 2 * PyLong_SHIFT) {
  11381. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11382. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11383. } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
  11384. return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11385. }
  11386. }
  11387. break;
  11388. case -4:
  11389. if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) {
  11390. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11391. __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11392. } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) {
  11393. return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11394. }
  11395. }
  11396. break;
  11397. case 4:
  11398. if (8 * sizeof(int) > 3 * PyLong_SHIFT) {
  11399. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11400. __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11401. } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) {
  11402. return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])));
  11403. }
  11404. }
  11405. break;
  11406. }
  11407. #endif
  11408. if (sizeof(int) <= sizeof(long)) {
  11409. __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x))
  11410. #ifdef HAVE_LONG_LONG
  11411. } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) {
  11412. __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x))
  11413. #endif
  11414. }
  11415. }
  11416. {
  11417. #if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
  11418. PyErr_SetString(PyExc_RuntimeError,
  11419. "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
  11420. #else
  11421. int val;
  11422. PyObject *v = __Pyx_PyNumber_IntOrLong(x);
  11423. #if PY_MAJOR_VERSION < 3
  11424. if (likely(v) && !PyLong_Check(v)) {
  11425. PyObject *tmp = v;
  11426. v = PyNumber_Long(tmp);
  11427. Py_DECREF(tmp);
  11428. }
  11429. #endif
  11430. if (likely(v)) {
  11431. int one = 1; int is_little = (int)*(unsigned char *)&one;
  11432. unsigned char *bytes = (unsigned char *)&val;
  11433. int ret = _PyLong_AsByteArray((PyLongObject *)v,
  11434. bytes, sizeof(val),
  11435. is_little, !is_unsigned);
  11436. Py_DECREF(v);
  11437. if (likely(!ret))
  11438. return val;
  11439. }
  11440. #endif
  11441. return (int) -1;
  11442. }
  11443. } else {
  11444. int val;
  11445. PyObject *tmp = __Pyx_PyNumber_IntOrLong(x);
  11446. if (!tmp) return (int) -1;
  11447. val = __Pyx_PyInt_As_int(tmp);
  11448. Py_DECREF(tmp);
  11449. return val;
  11450. }
  11451. raise_overflow:
  11452. PyErr_SetString(PyExc_OverflowError,
  11453. "value too large to convert to int");
  11454. return (int) -1;
  11455. raise_neg_overflow:
  11456. PyErr_SetString(PyExc_OverflowError,
  11457. "can't convert negative value to int");
  11458. return (int) -1;
  11459. }
  11460. /* CIntToPy */
  11461. static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) {
  11462. const long neg_one = (long) -1, const_zero = (long) 0;
  11463. const int is_unsigned = neg_one > const_zero;
  11464. if (is_unsigned) {
  11465. if (sizeof(long) < sizeof(long)) {
  11466. return PyInt_FromLong((long) value);
  11467. } else if (sizeof(long) <= sizeof(unsigned long)) {
  11468. return PyLong_FromUnsignedLong((unsigned long) value);
  11469. #ifdef HAVE_LONG_LONG
  11470. } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) {
  11471. return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
  11472. #endif
  11473. }
  11474. } else {
  11475. if (sizeof(long) <= sizeof(long)) {
  11476. return PyInt_FromLong((long) value);
  11477. #ifdef HAVE_LONG_LONG
  11478. } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) {
  11479. return PyLong_FromLongLong((PY_LONG_LONG) value);
  11480. #endif
  11481. }
  11482. }
  11483. {
  11484. int one = 1; int little = (int)*(unsigned char *)&one;
  11485. unsigned char *bytes = (unsigned char *)&value;
  11486. return _PyLong_FromByteArray(bytes, sizeof(long),
  11487. little, !is_unsigned);
  11488. }
  11489. }
  11490. /* CIntFromPy */
  11491. static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) {
  11492. const long neg_one = (long) -1, const_zero = (long) 0;
  11493. const int is_unsigned = neg_one > const_zero;
  11494. #if PY_MAJOR_VERSION < 3
  11495. if (likely(PyInt_Check(x))) {
  11496. if (sizeof(long) < sizeof(long)) {
  11497. __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x))
  11498. } else {
  11499. long val = PyInt_AS_LONG(x);
  11500. if (is_unsigned && unlikely(val < 0)) {
  11501. goto raise_neg_overflow;
  11502. }
  11503. return (long) val;
  11504. }
  11505. } else
  11506. #endif
  11507. if (likely(PyLong_Check(x))) {
  11508. if (is_unsigned) {
  11509. #if CYTHON_USE_PYLONG_INTERNALS
  11510. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11511. switch (Py_SIZE(x)) {
  11512. case 0: return (long) 0;
  11513. case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0])
  11514. case 2:
  11515. if (8 * sizeof(long) > 1 * PyLong_SHIFT) {
  11516. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11517. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11518. } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) {
  11519. return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
  11520. }
  11521. }
  11522. break;
  11523. case 3:
  11524. if (8 * sizeof(long) > 2 * PyLong_SHIFT) {
  11525. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11526. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11527. } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) {
  11528. return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
  11529. }
  11530. }
  11531. break;
  11532. case 4:
  11533. if (8 * sizeof(long) > 3 * PyLong_SHIFT) {
  11534. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11535. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11536. } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) {
  11537. return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]));
  11538. }
  11539. }
  11540. break;
  11541. }
  11542. #endif
  11543. #if CYTHON_COMPILING_IN_CPYTHON
  11544. if (unlikely(Py_SIZE(x) < 0)) {
  11545. goto raise_neg_overflow;
  11546. }
  11547. #else
  11548. {
  11549. int result = PyObject_RichCompareBool(x, Py_False, Py_LT);
  11550. if (unlikely(result < 0))
  11551. return (long) -1;
  11552. if (unlikely(result == 1))
  11553. goto raise_neg_overflow;
  11554. }
  11555. #endif
  11556. if (sizeof(long) <= sizeof(unsigned long)) {
  11557. __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x))
  11558. #ifdef HAVE_LONG_LONG
  11559. } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) {
  11560. __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x))
  11561. #endif
  11562. }
  11563. } else {
  11564. #if CYTHON_USE_PYLONG_INTERNALS
  11565. const digit* digits = ((PyLongObject*)x)->ob_digit;
  11566. switch (Py_SIZE(x)) {
  11567. case 0: return (long) 0;
  11568. case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0]))
  11569. case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0])
  11570. case -2:
  11571. if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) {
  11572. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11573. __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11574. } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
  11575. return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11576. }
  11577. }
  11578. break;
  11579. case 2:
  11580. if (8 * sizeof(long) > 1 * PyLong_SHIFT) {
  11581. if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) {
  11582. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11583. } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
  11584. return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11585. }
  11586. }
  11587. break;
  11588. case -3:
  11589. if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) {
  11590. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11591. __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11592. } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
  11593. return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11594. }
  11595. }
  11596. break;
  11597. case 3:
  11598. if (8 * sizeof(long) > 2 * PyLong_SHIFT) {
  11599. if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) {
  11600. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11601. } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
  11602. return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11603. }
  11604. }
  11605. break;
  11606. case -4:
  11607. if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) {
  11608. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11609. __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11610. } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
  11611. return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11612. }
  11613. }
  11614. break;
  11615. case 4:
  11616. if (8 * sizeof(long) > 3 * PyLong_SHIFT) {
  11617. if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) {
  11618. __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0])))
  11619. } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) {
  11620. return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])));
  11621. }
  11622. }
  11623. break;
  11624. }
  11625. #endif
  11626. if (sizeof(long) <= sizeof(long)) {
  11627. __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x))
  11628. #ifdef HAVE_LONG_LONG
  11629. } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) {
  11630. __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x))
  11631. #endif
  11632. }
  11633. }
  11634. {
  11635. #if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray)
  11636. PyErr_SetString(PyExc_RuntimeError,
  11637. "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers");
  11638. #else
  11639. long val;
  11640. PyObject *v = __Pyx_PyNumber_IntOrLong(x);
  11641. #if PY_MAJOR_VERSION < 3
  11642. if (likely(v) && !PyLong_Check(v)) {
  11643. PyObject *tmp = v;
  11644. v = PyNumber_Long(tmp);
  11645. Py_DECREF(tmp);
  11646. }
  11647. #endif
  11648. if (likely(v)) {
  11649. int one = 1; int is_little = (int)*(unsigned char *)&one;
  11650. unsigned char *bytes = (unsigned char *)&val;
  11651. int ret = _PyLong_AsByteArray((PyLongObject *)v,
  11652. bytes, sizeof(val),
  11653. is_little, !is_unsigned);
  11654. Py_DECREF(v);
  11655. if (likely(!ret))
  11656. return val;
  11657. }
  11658. #endif
  11659. return (long) -1;
  11660. }
  11661. } else {
  11662. long val;
  11663. PyObject *tmp = __Pyx_PyNumber_IntOrLong(x);
  11664. if (!tmp) return (long) -1;
  11665. val = __Pyx_PyInt_As_long(tmp);
  11666. Py_DECREF(tmp);
  11667. return val;
  11668. }
  11669. raise_overflow:
  11670. PyErr_SetString(PyExc_OverflowError,
  11671. "value too large to convert to long");
  11672. return (long) -1;
  11673. raise_neg_overflow:
  11674. PyErr_SetString(PyExc_OverflowError,
  11675. "can't convert negative value to long");
  11676. return (long) -1;
  11677. }
  11678. /* FastTypeChecks */
  11679. #if CYTHON_COMPILING_IN_CPYTHON
  11680. static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) {
  11681. while (a) {
  11682. a = a->tp_base;
  11683. if (a == b)
  11684. return 1;
  11685. }
  11686. return b == &PyBaseObject_Type;
  11687. }
  11688. static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) {
  11689. PyObject *mro;
  11690. if (a == b) return 1;
  11691. mro = a->tp_mro;
  11692. if (likely(mro)) {
  11693. Py_ssize_t i, n;
  11694. n = PyTuple_GET_SIZE(mro);
  11695. for (i = 0; i < n; i++) {
  11696. if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b)
  11697. return 1;
  11698. }
  11699. return 0;
  11700. }
  11701. return __Pyx_InBases(a, b);
  11702. }
  11703. #if PY_MAJOR_VERSION == 2
  11704. static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) {
  11705. PyObject *exception, *value, *tb;
  11706. int res;
  11707. __Pyx_PyThreadState_declare
  11708. __Pyx_PyThreadState_assign
  11709. __Pyx_ErrFetch(&exception, &value, &tb);
  11710. res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0;
  11711. if (unlikely(res == -1)) {
  11712. PyErr_WriteUnraisable(err);
  11713. res = 0;
  11714. }
  11715. if (!res) {
  11716. res = PyObject_IsSubclass(err, exc_type2);
  11717. if (unlikely(res == -1)) {
  11718. PyErr_WriteUnraisable(err);
  11719. res = 0;
  11720. }
  11721. }
  11722. __Pyx_ErrRestore(exception, value, tb);
  11723. return res;
  11724. }
  11725. #else
  11726. static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) {
  11727. int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0;
  11728. if (!res) {
  11729. res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2);
  11730. }
  11731. return res;
  11732. }
  11733. #endif
  11734. static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject* exc_type) {
  11735. if (likely(err == exc_type)) return 1;
  11736. if (likely(PyExceptionClass_Check(err))) {
  11737. return __Pyx_inner_PyErr_GivenExceptionMatches2(err, NULL, exc_type);
  11738. }
  11739. return PyErr_GivenExceptionMatches(err, exc_type);
  11740. }
  11741. static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *exc_type1, PyObject *exc_type2) {
  11742. if (likely(err == exc_type1 || err == exc_type2)) return 1;
  11743. if (likely(PyExceptionClass_Check(err))) {
  11744. return __Pyx_inner_PyErr_GivenExceptionMatches2(err, exc_type1, exc_type2);
  11745. }
  11746. return (PyErr_GivenExceptionMatches(err, exc_type1) || PyErr_GivenExceptionMatches(err, exc_type2));
  11747. }
  11748. #endif
  11749. /* CheckBinaryVersion */
  11750. static int __Pyx_check_binary_version(void) {
  11751. char ctversion[4], rtversion[4];
  11752. PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION);
  11753. PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion());
  11754. if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) {
  11755. char message[200];
  11756. PyOS_snprintf(message, sizeof(message),
  11757. "compiletime version %s of module '%.100s' "
  11758. "does not match runtime version %s",
  11759. ctversion, __Pyx_MODULE_NAME, rtversion);
  11760. return PyErr_WarnEx(NULL, message, 1);
  11761. }
  11762. return 0;
  11763. }
  11764. /* ModuleImport */
  11765. #ifndef __PYX_HAVE_RT_ImportModule
  11766. #define __PYX_HAVE_RT_ImportModule
  11767. static PyObject *__Pyx_ImportModule(const char *name) {
  11768. PyObject *py_name = 0;
  11769. PyObject *py_module = 0;
  11770. py_name = __Pyx_PyIdentifier_FromString(name);
  11771. if (!py_name)
  11772. goto bad;
  11773. py_module = PyImport_Import(py_name);
  11774. Py_DECREF(py_name);
  11775. return py_module;
  11776. bad:
  11777. Py_XDECREF(py_name);
  11778. return 0;
  11779. }
  11780. #endif
  11781. /* TypeImport */
  11782. #ifndef __PYX_HAVE_RT_ImportType
  11783. #define __PYX_HAVE_RT_ImportType
  11784. static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name,
  11785. size_t size, int strict)
  11786. {
  11787. PyObject *py_module = 0;
  11788. PyObject *result = 0;
  11789. PyObject *py_name = 0;
  11790. char warning[200];
  11791. Py_ssize_t basicsize;
  11792. #ifdef Py_LIMITED_API
  11793. PyObject *py_basicsize;
  11794. #endif
  11795. py_module = __Pyx_ImportModule(module_name);
  11796. if (!py_module)
  11797. goto bad;
  11798. py_name = __Pyx_PyIdentifier_FromString(class_name);
  11799. if (!py_name)
  11800. goto bad;
  11801. result = PyObject_GetAttr(py_module, py_name);
  11802. Py_DECREF(py_name);
  11803. py_name = 0;
  11804. Py_DECREF(py_module);
  11805. py_module = 0;
  11806. if (!result)
  11807. goto bad;
  11808. if (!PyType_Check(result)) {
  11809. PyErr_Format(PyExc_TypeError,
  11810. "%.200s.%.200s is not a type object",
  11811. module_name, class_name);
  11812. goto bad;
  11813. }
  11814. #ifndef Py_LIMITED_API
  11815. basicsize = ((PyTypeObject *)result)->tp_basicsize;
  11816. #else
  11817. py_basicsize = PyObject_GetAttrString(result, "__basicsize__");
  11818. if (!py_basicsize)
  11819. goto bad;
  11820. basicsize = PyLong_AsSsize_t(py_basicsize);
  11821. Py_DECREF(py_basicsize);
  11822. py_basicsize = 0;
  11823. if (basicsize == (Py_ssize_t)-1 && PyErr_Occurred())
  11824. goto bad;
  11825. #endif
  11826. if (!strict && (size_t)basicsize > size) {
  11827. PyOS_snprintf(warning, sizeof(warning),
  11828. "%s.%s size changed, may indicate binary incompatibility. Expected %zd, got %zd",
  11829. module_name, class_name, basicsize, size);
  11830. if (PyErr_WarnEx(NULL, warning, 0) < 0) goto bad;
  11831. }
  11832. else if ((size_t)basicsize != size) {
  11833. PyErr_Format(PyExc_ValueError,
  11834. "%.200s.%.200s has the wrong size, try recompiling. Expected %zd, got %zd",
  11835. module_name, class_name, basicsize, size);
  11836. goto bad;
  11837. }
  11838. return (PyTypeObject *)result;
  11839. bad:
  11840. Py_XDECREF(py_module);
  11841. Py_XDECREF(result);
  11842. return NULL;
  11843. }
  11844. #endif
  11845. /* InitStrings */
  11846. static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {
  11847. while (t->p) {
  11848. #if PY_MAJOR_VERSION < 3
  11849. if (t->is_unicode) {
  11850. *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL);
  11851. } else if (t->intern) {
  11852. *t->p = PyString_InternFromString(t->s);
  11853. } else {
  11854. *t->p = PyString_FromStringAndSize(t->s, t->n - 1);
  11855. }
  11856. #else
  11857. if (t->is_unicode | t->is_str) {
  11858. if (t->intern) {
  11859. *t->p = PyUnicode_InternFromString(t->s);
  11860. } else if (t->encoding) {
  11861. *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL);
  11862. } else {
  11863. *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1);
  11864. }
  11865. } else {
  11866. *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1);
  11867. }
  11868. #endif
  11869. if (!*t->p)
  11870. return -1;
  11871. if (PyObject_Hash(*t->p) == -1)
  11872. PyErr_Clear();
  11873. ++t;
  11874. }
  11875. return 0;
  11876. }
  11877. static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) {
  11878. return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str));
  11879. }
  11880. static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) {
  11881. Py_ssize_t ignore;
  11882. return __Pyx_PyObject_AsStringAndSize(o, &ignore);
  11883. }
  11884. #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT
  11885. #if !CYTHON_PEP393_ENABLED
  11886. static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) {
  11887. char* defenc_c;
  11888. PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL);
  11889. if (!defenc) return NULL;
  11890. defenc_c = PyBytes_AS_STRING(defenc);
  11891. #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
  11892. {
  11893. char* end = defenc_c + PyBytes_GET_SIZE(defenc);
  11894. char* c;
  11895. for (c = defenc_c; c < end; c++) {
  11896. if ((unsigned char) (*c) >= 128) {
  11897. PyUnicode_AsASCIIString(o);
  11898. return NULL;
  11899. }
  11900. }
  11901. }
  11902. #endif
  11903. *length = PyBytes_GET_SIZE(defenc);
  11904. return defenc_c;
  11905. }
  11906. #else
  11907. static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) {
  11908. if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL;
  11909. #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
  11910. if (likely(PyUnicode_IS_ASCII(o))) {
  11911. *length = PyUnicode_GET_LENGTH(o);
  11912. return PyUnicode_AsUTF8(o);
  11913. } else {
  11914. PyUnicode_AsASCIIString(o);
  11915. return NULL;
  11916. }
  11917. #else
  11918. return PyUnicode_AsUTF8AndSize(o, length);
  11919. #endif
  11920. }
  11921. #endif
  11922. #endif
  11923. static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) {
  11924. #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT
  11925. if (
  11926. #if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
  11927. __Pyx_sys_getdefaultencoding_not_ascii &&
  11928. #endif
  11929. PyUnicode_Check(o)) {
  11930. return __Pyx_PyUnicode_AsStringAndSize(o, length);
  11931. } else
  11932. #endif
  11933. #if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE))
  11934. if (PyByteArray_Check(o)) {
  11935. *length = PyByteArray_GET_SIZE(o);
  11936. return PyByteArray_AS_STRING(o);
  11937. } else
  11938. #endif
  11939. {
  11940. char* result;
  11941. int r = PyBytes_AsStringAndSize(o, &result, length);
  11942. if (unlikely(r < 0)) {
  11943. return NULL;
  11944. } else {
  11945. return result;
  11946. }
  11947. }
  11948. }
  11949. static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) {
  11950. int is_true = x == Py_True;
  11951. if (is_true | (x == Py_False) | (x == Py_None)) return is_true;
  11952. else return PyObject_IsTrue(x);
  11953. }
  11954. static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) {
  11955. #if PY_MAJOR_VERSION >= 3
  11956. if (PyLong_Check(result)) {
  11957. if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1,
  11958. "__int__ returned non-int (type %.200s). "
  11959. "The ability to return an instance of a strict subclass of int "
  11960. "is deprecated, and may be removed in a future version of Python.",
  11961. Py_TYPE(result)->tp_name)) {
  11962. Py_DECREF(result);
  11963. return NULL;
  11964. }
  11965. return result;
  11966. }
  11967. #endif
  11968. PyErr_Format(PyExc_TypeError,
  11969. "__%.4s__ returned non-%.4s (type %.200s)",
  11970. type_name, type_name, Py_TYPE(result)->tp_name);
  11971. Py_DECREF(result);
  11972. return NULL;
  11973. }
  11974. static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) {
  11975. #if CYTHON_USE_TYPE_SLOTS
  11976. PyNumberMethods *m;
  11977. #endif
  11978. const char *name = NULL;
  11979. PyObject *res = NULL;
  11980. #if PY_MAJOR_VERSION < 3
  11981. if (likely(PyInt_Check(x) || PyLong_Check(x)))
  11982. #else
  11983. if (likely(PyLong_Check(x)))
  11984. #endif
  11985. return __Pyx_NewRef(x);
  11986. #if CYTHON_USE_TYPE_SLOTS
  11987. m = Py_TYPE(x)->tp_as_number;
  11988. #if PY_MAJOR_VERSION < 3
  11989. if (m && m->nb_int) {
  11990. name = "int";
  11991. res = m->nb_int(x);
  11992. }
  11993. else if (m && m->nb_long) {
  11994. name = "long";
  11995. res = m->nb_long(x);
  11996. }
  11997. #else
  11998. if (likely(m && m->nb_int)) {
  11999. name = "int";
  12000. res = m->nb_int(x);
  12001. }
  12002. #endif
  12003. #else
  12004. if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) {
  12005. res = PyNumber_Int(x);
  12006. }
  12007. #endif
  12008. if (likely(res)) {
  12009. #if PY_MAJOR_VERSION < 3
  12010. if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) {
  12011. #else
  12012. if (unlikely(!PyLong_CheckExact(res))) {
  12013. #endif
  12014. return __Pyx_PyNumber_IntOrLongWrongResultType(res, name);
  12015. }
  12016. }
  12017. else if (!PyErr_Occurred()) {
  12018. PyErr_SetString(PyExc_TypeError,
  12019. "an integer is required");
  12020. }
  12021. return res;
  12022. }
  12023. static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
  12024. Py_ssize_t ival;
  12025. PyObject *x;
  12026. #if PY_MAJOR_VERSION < 3
  12027. if (likely(PyInt_CheckExact(b))) {
  12028. if (sizeof(Py_ssize_t) >= sizeof(long))
  12029. return PyInt_AS_LONG(b);
  12030. else
  12031. return PyInt_AsSsize_t(x);
  12032. }
  12033. #endif
  12034. if (likely(PyLong_CheckExact(b))) {
  12035. #if CYTHON_USE_PYLONG_INTERNALS
  12036. const digit* digits = ((PyLongObject*)b)->ob_digit;
  12037. const Py_ssize_t size = Py_SIZE(b);
  12038. if (likely(__Pyx_sst_abs(size) <= 1)) {
  12039. ival = likely(size) ? digits[0] : 0;
  12040. if (size == -1) ival = -ival;
  12041. return ival;
  12042. } else {
  12043. switch (size) {
  12044. case 2:
  12045. if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) {
  12046. return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12047. }
  12048. break;
  12049. case -2:
  12050. if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) {
  12051. return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12052. }
  12053. break;
  12054. case 3:
  12055. if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) {
  12056. return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12057. }
  12058. break;
  12059. case -3:
  12060. if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) {
  12061. return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12062. }
  12063. break;
  12064. case 4:
  12065. if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) {
  12066. return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12067. }
  12068. break;
  12069. case -4:
  12070. if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) {
  12071. return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]));
  12072. }
  12073. break;
  12074. }
  12075. }
  12076. #endif
  12077. return PyLong_AsSsize_t(b);
  12078. }
  12079. x = PyNumber_Index(b);
  12080. if (!x) return -1;
  12081. ival = PyInt_AsSsize_t(x);
  12082. Py_DECREF(x);
  12083. return ival;
  12084. }
  12085. static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
  12086. return PyInt_FromSize_t(ival);
  12087. }
  12088. #endif /* Py_PYTHON_H */